{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "accelerator": "GPU", "colab": { "name": "starter_notebook.ipynb", "provenance": [], "collapsed_sections": [], "toc_visible": true, "include_colab_link": true }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.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": "faf9450a-ce03-4aca-bb6c-ddb9fe381c23", "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 = \"en\"\n", "target_language = \"ig\" \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", "os.environ[\"gdrive_path\"] = \"/content/drive/My Drive/masakhane/%s-%s-%s\" % (source_language, target_language, tag)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "kBSgJHEw7Nvx", "outputId": "8c3e83d3-e58c-4763-e418-647f69fb1d93", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "!echo $gdrive_path" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "/content/drive/My Drive/masakhane/en-ig-baseline\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "gA75Fs9ys8Y9", "outputId": "373d5a27-514d-4051-a527-572e8610dabf", "colab": { "base_uri": "https://localhost:8080/", "height": 122 } }, "source": [ "# 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 28.1MB/s eta 0:00:01\r\u001b[K |████████ | 20kB 3.3MB/s eta 0:00:01\r\u001b[K |████████████▏ | 30kB 4.7MB/s eta 0:00:01\r\u001b[K |████████████████▏ | 40kB 3.1MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 51kB 3.8MB/s eta 0:00:01\r\u001b[K |████████████████████████▎ | 61kB 4.5MB/s eta 0:00:01\r\u001b[K |████████████████████████████▎ | 71kB 5.2MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 81kB 4.3MB/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": "13dd867b-35a3-4d90-ccca-f887805b5072", "colab": { "base_uri": "https://localhost:8080/", "height": 204 } }, "source": [ "# 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/en-ig.xml.gz not found. The following files are available for downloading:\n", "\n", " 4 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/en-ig.xml.gz\n", " 263 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/en.zip\n", " 54 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/ig.zip\n", "\n", " 321 MB Total size\n", "./JW300_latest_xml_en-ig.xml.gz ... 100% of 4 MB\n", "./JW300_latest_xml_en.zip ... 100% of 263 MB\n", "./JW300_latest_xml_ig.zip ... 100% of 54 MB\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "n48GDRnP8y2G", "colab_type": "code", "outputId": "20e4d330-3a53-4441-abb0-47441f6ea03c", "colab": { "base_uri": "https://localhost:8080/", "height": 578 } }, "source": [ "# 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-01-12 07:57:39-- 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.03s \n", "\n", "2020-01-12 07:57:39 (9.27 MB/s) - ‘test.en-any.en’ saved [277791/277791]\n", "\n", "--2020-01-12 07:57:40-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-ig.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: 205323 (201K) [text/plain]\n", "Saving to: ‘test.en-ig.en’\n", "\n", "test.en-ig.en 100%[===================>] 200.51K --.-KB/s in 0.02s \n", "\n", "2020-01-12 07:57:40 (9.04 MB/s) - ‘test.en-ig.en’ saved [205323/205323]\n", "\n", "--2020-01-12 07:57:41-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-ig.ig\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: 259911 (254K) [text/plain]\n", "Saving to: ‘test.en-ig.ig’\n", "\n", "test.en-ig.ig 100%[===================>] 253.82K --.-KB/s in 0.03s \n", "\n", "2020-01-12 07:57:42 (8.37 MB/s) - ‘test.en-ig.ig’ saved [259911/259911]\n", "\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "NqDG-CI28y2L", "colab_type": "code", "outputId": "2d5cab60-02e9-4ffd-a28a-235c4ae3533c", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "# 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": "e0645d93-e1d2-4436-ecdb-c2f4f61b8f51", "colab": { "base_uri": "https://localhost:8080/", "height": 159 } }, "source": [ "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(3)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "Loaded data and skipped 6326/475205 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
0Using Ladders — Do You Make These Safety Checks ?Iji Ubube Eme Ihe — Ị̀ Na - eme Nnyocha Ndị A ...
1By Awake !Site n’aka onye nta akụkọ Teta !
2correspondent in Irelandna Ireland
\n", "
" ], "text/plain": [ " source_sentence target_sentence\n", "0 Using Ladders — Do You Make These Safety Checks ? Iji Ubube Eme Ihe — Ị̀ Na - eme Nnyocha Ndị A ...\n", "1 By Awake ! Site n’aka onye nta akụkọ Teta !\n", "2 correspondent in Ireland na Ireland" ] }, "metadata": { "tags": [] }, "execution_count": 10 } ] }, { "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": "9f234528-b661-4c88-b3f8-105bba7ce6ec", "colab": { "base_uri": "https://localhost:8080/", "height": 187 } }, "source": [ "# 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: http://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: http://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": "791b9ff9-fc3c-4ec6-f3ad-a6738edb5217", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "# 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/d8/f1/5a267addb30ab7eaa1beab2b9323073815da4551076554ecc890a3595ec9/fuzzywuzzy-0.17.0-py2.py3-none-any.whl\n", "Installing collected packages: fuzzywuzzy\n", "Successfully installed fuzzywuzzy-0.17.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 2.7MB/s \n", "\u001b[?25hRequirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from python-Levenshtein) (42.0.2)\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=144679 sha256=4863c3de1bedaa5001dd58d9106a4d97cde13ce9c1f9f51c8ed649178c814bde\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.14 0.00 percent complete\n", "00:00:19.80 0.24 percent complete\n", "00:00:38.56 0.48 percent complete\n", "00:00:57.39 0.72 percent complete\n", "00:01:16.48 0.96 percent complete\n", "00:01:34.80 1.20 percent complete\n", "00:01:53.09 1.44 percent complete\n", "00:02:11.90 1.68 percent complete\n", "00:02:30.37 1.92 percent complete\n", "00:02:49.36 2.16 percent complete\n", "00:03:08.57 2.40 percent complete\n", "00:03:26.94 2.63 percent complete\n", "00:03:46.23 2.87 percent complete\n", "00:04:04.79 3.11 percent complete\n", "00:04:23.68 3.35 percent complete\n", "00:04:41.95 3.59 percent complete\n", "00:05:01.28 3.83 percent complete\n", "00:05:20.04 4.07 percent complete\n", "00:05:39.56 4.31 percent complete\n", "00:05:58.38 4.55 percent complete\n", "00:06:16.55 4.79 percent complete\n", "00:06:34.61 5.03 percent complete\n", "00:06:53.53 5.27 percent complete\n", "00:07:12.51 5.51 percent complete\n", "00:07:32.03 5.75 percent complete\n", "00:07:50.81 5.99 percent complete\n", "00:08:09.96 6.23 percent complete\n", "00:08:28.38 6.47 percent complete\n", "00:08:46.95 6.71 percent complete\n", "00:09:07.16 6.95 percent complete\n", "00:09:27.12 7.19 percent complete\n", "00:09:46.63 7.43 percent complete\n", "00:10:06.41 7.66 percent complete\n", "00:10:25.54 7.90 percent complete\n", "00:10:46.10 8.14 percent complete\n", "00:11:05.52 8.38 percent complete\n", "00:11:24.69 8.62 percent complete\n", "00:11:44.32 8.86 percent complete\n", "00:12:03.75 9.10 percent complete\n", "00:12:23.57 9.34 percent complete\n", "00:12:44.08 9.58 percent complete\n", "00:13:03.46 9.82 percent complete\n", "00:13:23.42 10.06 percent complete\n", "00:13:42.70 10.30 percent complete\n", "00:14:01.19 10.54 percent complete\n", "00:14:20.43 10.78 percent complete\n", "00:14:39.47 11.02 percent complete\n", "00:14:59.24 11.26 percent complete\n", "00:15:17.81 11.50 percent complete\n", "00:15:37.19 11.74 percent complete\n", "00:15:57.64 11.98 percent complete\n", "00:16:17.08 12.22 percent complete\n", "00:16:36.61 12.46 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:16:55.79 12.69 percent complete\n", "00:17:15.13 12.93 percent complete\n", "00:17:35.19 13.17 percent complete\n", "00:17:54.04 13.41 percent complete\n", "00:18:13.27 13.65 percent complete\n", "00:18:33.75 13.89 percent complete\n", "00:18:53.24 14.13 percent complete\n", "00:19:12.60 14.37 percent complete\n", "00:19:32.36 14.61 percent complete\n", "00:19:51.97 14.85 percent complete\n", "00:20:11.70 15.09 percent complete\n", "00:20:32.01 15.33 percent complete\n", "00:20:51.44 15.57 percent complete\n", "00:21:12.28 15.81 percent complete\n", "00:21:32.13 16.05 percent complete\n", "00:21:52.41 16.29 percent complete\n", "00:22:11.89 16.53 percent complete\n", "00:22:31.66 16.77 percent complete\n", "00:22:51.52 17.01 percent complete\n", "00:23:11.14 17.25 percent complete\n", "00:23:30.33 17.49 percent complete\n", "00:23:51.44 17.72 percent complete\n", "00:24:11.74 17.96 percent complete\n", "00:24:31.87 18.20 percent complete\n", "00:24:52.43 18.44 percent complete\n", "00:25:11.94 18.68 percent complete\n", "00:25:31.81 18.92 percent complete\n", "00:25:51.83 19.16 percent complete\n", "00:26:11.69 19.40 percent complete\n", "00:26:32.22 19.64 percent complete\n", "00:26:52.87 19.88 percent complete\n", "00:27:12.97 20.12 percent complete\n", "00:27:32.92 20.36 percent complete\n", "00:27:52.46 20.60 percent complete\n", "00:28:12.15 20.84 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:31.73 21.08 percent complete\n", "00:28:51.20 21.32 percent complete\n", "00:29:12.49 21.56 percent complete\n", "00:29:32.67 21.80 percent complete\n", "00:29:52.59 22.04 percent complete\n", "00:30:12.49 22.28 percent complete\n", "00:30:32.56 22.52 percent complete\n", "00:30:52.20 22.75 percent complete\n", "00:31:12.62 22.99 percent complete\n", "00:31:32.41 23.23 percent complete\n", "00:31:53.43 23.47 percent complete\n", "00:32:13.44 23.71 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:32:33.70 23.95 percent complete\n", "00:32:54.36 24.19 percent complete\n", "00:33:13.93 24.43 percent complete\n", "00:33:32.54 24.67 percent complete\n", "00:33:51.89 24.91 percent complete\n", "00:34:11.30 25.15 percent complete\n", "00:34:32.24 25.39 percent complete\n", "00:34:52.03 25.63 percent complete\n", "00:35:11.04 25.87 percent complete\n", "00:35:30.22 26.11 percent complete\n", "00:35:49.74 26.35 percent complete\n", "00:36:09.10 26.59 percent complete\n", "00:36:29.03 26.83 percent complete\n", "00:36:48.44 27.07 percent complete\n", "00:37:08.19 27.31 percent complete\n", "00:37:27.47 27.55 percent complete\n", "00:37:46.58 27.78 percent complete\n", "00:38:05.66 28.02 percent complete\n", "00:38:24.86 28.26 percent complete\n", "00:38:43.80 28.50 percent complete\n", "00:39:03.46 28.74 percent complete\n", "00:39:22.21 28.98 percent complete\n", "00:39:42.99 29.22 percent complete\n", "00:40:02.72 29.46 percent complete\n", "00:40:22.64 29.70 percent complete\n", "00:40:42.11 29.94 percent complete\n", "00:41:01.16 30.18 percent complete\n", "00:41:20.42 30.42 percent complete\n", "00:41:39.90 30.66 percent complete\n", "00:41:58.99 30.90 percent complete\n", "00:42:18.74 31.14 percent complete\n", "00:42:37.92 31.38 percent complete\n", "00:42:57.10 31.62 percent complete\n", "00:43:16.82 31.86 percent complete\n", "00:43:35.71 32.10 percent complete\n", "00:43:54.50 32.34 percent complete\n", "00:44:14.45 32.58 percent complete\n", "00:44:33.63 32.81 percent complete\n", "00:44:53.10 33.05 percent complete\n", "00:45:11.81 33.29 percent complete\n", "00:45:30.61 33.53 percent complete\n", "00:45:49.80 33.77 percent complete\n", "00:46:08.43 34.01 percent complete\n", "00:46:27.35 34.25 percent complete\n", "00:46:46.55 34.49 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:47:06.10 34.73 percent complete\n", "00:47:25.26 34.97 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:47:44.45 35.21 percent complete\n", "00:48:03.63 35.45 percent complete\n", "00:48:22.95 35.69 percent complete\n", "00:48:41.82 35.93 percent complete\n", "00:49:01.17 36.17 percent complete\n", "00:49:19.66 36.41 percent complete\n", "00:49:38.41 36.65 percent complete\n", "00:49:57.64 36.89 percent complete\n", "00:50:18.10 37.13 percent complete\n", "00:50:37.61 37.37 percent complete\n", "00:50:56.85 37.60 percent complete\n", "00:51:16.51 37.84 percent complete\n", "00:51:35.04 38.08 percent complete\n", "00:51:53.93 38.32 percent complete\n", "00:52:13.06 38.56 percent complete\n", "00:52:31.54 38.80 percent complete\n", "00:52:51.43 39.04 percent complete\n", "00:53:10.38 39.28 percent complete\n", "00:53:29.93 39.52 percent complete\n", "00:53:48.81 39.76 percent complete\n", "00:54:07.26 40.00 percent complete\n", "00:54:25.98 40.24 percent complete\n", "00:54:45.14 40.48 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:55:04.58 40.72 percent complete\n", "00:55:25.29 40.96 percent complete\n", "00:55:44.85 41.20 percent complete\n", "00:56:04.07 41.44 percent complete\n", "00:56:23.04 41.68 percent complete\n", "00:56:41.71 41.92 percent complete\n", "00:57:00.39 42.16 percent complete\n", "00:57:19.45 42.40 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:57:38.68 42.63 percent complete\n", "00:57:59.36 42.87 percent complete\n", "00:58:18.11 43.11 percent complete\n", "00:58:37.26 43.35 percent complete\n", "00:58:56.11 43.59 percent complete\n", "00:59:14.59 43.83 percent complete\n", "00:59:33.38 44.07 percent complete\n", "00:59:52.08 44.31 percent complete\n", "01:00:10.80 44.55 percent complete\n", "01:00:30.07 44.79 percent complete\n", "01:00:48.46 45.03 percent complete\n", "01:01:07.40 45.27 percent complete\n", "01:01:26.43 45.51 percent complete\n", "01:01:45.89 45.75 percent complete\n", "01:02:04.95 45.99 percent complete\n", "01:02:23.39 46.23 percent complete\n", "01:02:42.16 46.47 percent complete\n", "01:03:02.49 46.71 percent complete\n", "01:03:20.98 46.95 percent complete\n", "01:03:40.04 47.19 percent complete\n", "01:03:58.78 47.43 percent complete\n", "01:04:17.32 47.66 percent complete\n", "01:04:36.12 47.90 percent complete\n", "01:04:55.29 48.14 percent complete\n", "01:05:14.33 48.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": [ "01:05:34.40 48.62 percent complete\n", "01:05:54.03 48.86 percent complete\n", "01:06:13.37 49.10 percent complete\n", "01:06:32.37 49.34 percent complete\n", "01:06:51.58 49.58 percent complete\n", "01:07:10.84 49.82 percent complete\n", "01:07:29.60 50.06 percent complete\n", "01:07:48.45 50.30 percent complete\n", "01:08:08.55 50.54 percent complete\n", "01:08:27.04 50.78 percent complete\n", "01:08:45.81 51.02 percent complete\n", "01:09:05.49 51.26 percent complete\n", "01:09:24.29 51.50 percent complete\n", "01:09:42.92 51.74 percent complete\n", "01:10:02.63 51.98 percent complete\n", "01:10:21.14 52.22 percent complete\n", "01:10:41.09 52.46 percent complete\n", "01:11:00.58 52.69 percent complete\n", "01:11:19.68 52.93 percent complete\n", "01:11:39.00 53.17 percent complete\n", "01:11:58.38 53.41 percent complete\n", "01:12:17.27 53.65 percent complete\n", "01:12:36.38 53.89 percent complete\n", "01:12:55.11 54.13 percent complete\n", "01:13:15.35 54.37 percent complete\n", "01:13:34.80 54.61 percent complete\n", "01:13:53.70 54.85 percent complete\n", "01:14:13.63 55.09 percent complete\n", "01:14:32.97 55.33 percent complete\n", "01:14:51.97 55.57 percent complete\n", "01:15:11.39 55.81 percent complete\n", "01:15:29.87 56.05 percent complete\n", "01:15:49.07 56.29 percent complete\n", "01:16:09.68 56.53 percent complete\n", "01:16:29.05 56.77 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", "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:16:48.34 57.01 percent complete\n", "01:17:07.32 57.25 percent complete\n", "01:17:25.63 57.49 percent complete\n", "01:17:44.34 57.72 percent complete\n", "01:18:03.40 57.96 percent complete\n", "01:18:22.29 58.20 percent complete\n", "01:18:41.97 58.44 percent complete\n", "01:19:01.16 58.68 percent complete\n", "01:19:20.34 58.92 percent complete\n", "01:19:39.60 59.16 percent complete\n", "01:19:58.34 59.40 percent complete\n", "01:20:17.67 59.64 percent complete\n", "01:20:36.73 59.88 percent complete\n", "01:20:55.99 60.12 percent complete\n", "01:21:16.64 60.36 percent complete\n", "01:21:35.86 60.60 percent complete\n", "01:21:54.99 60.84 percent complete\n", "01:22:14.43 61.08 percent complete\n", "01:22:33.62 61.32 percent complete\n", "01:22:52.35 61.56 percent complete\n", "01:23:10.78 61.80 percent complete\n", "01:23:30.56 62.04 percent complete\n", "01:23:51.13 62.28 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:24:10.17 62.52 percent complete\n", "01:24:29.11 62.75 percent complete\n", "01:24:48.15 62.99 percent complete\n", "01:25:06.76 63.23 percent complete\n", "01:25:25.51 63.47 percent complete\n", "01:25:44.58 63.71 percent complete\n", "01:26:03.27 63.95 percent complete\n", "01:26:23.73 64.19 percent complete\n", "01:26:42.75 64.43 percent complete\n", "01:27:02.08 64.67 percent complete\n", "01:27:21.14 64.91 percent complete\n", "01:27:39.64 65.15 percent complete\n", "01:27:59.19 65.39 percent complete\n", "01:28:17.89 65.63 percent complete\n", "01:28:37.12 65.87 percent complete\n", "01:28:57.86 66.11 percent complete\n", "01:29:16.61 66.35 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:35.52 66.59 percent complete\n", "01:29:54.49 66.83 percent complete\n", "01:30:13.45 67.07 percent complete\n", "01:30:32.51 67.31 percent complete\n", "01:30:52.07 67.55 percent complete\n", "01:31:11.10 67.78 percent complete\n", "01:31:31.33 68.02 percent complete\n", "01:31:50.77 68.26 percent complete\n", "01:32:10.19 68.50 percent complete\n", "01:32:29.09 68.74 percent complete\n", "01:32:47.90 68.98 percent complete\n", "01:33:06.82 69.22 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:33:25.52 69.46 percent complete\n", "01:33:43.82 69.70 percent complete\n", "01:34:03.28 69.94 percent complete\n", "01:34:22.70 70.18 percent complete\n", "01:34:41.51 70.42 percent complete\n", "01:34:59.91 70.66 percent complete\n", "01:35:18.57 70.90 percent complete\n", "01:35:37.40 71.14 percent complete\n", "01:35:56.31 71.38 percent complete\n", "01:36:15.95 71.62 percent complete\n", "01:36:36.38 71.86 percent complete\n", "01:36:55.64 72.10 percent complete\n", "01:37:14.12 72.34 percent complete\n", "01:37:33.07 72.58 percent complete\n", "01:37:51.54 72.81 percent complete\n", "01:38:10.87 73.05 percent complete\n", "01:38:29.71 73.29 percent complete\n", "01:38:48.13 73.53 percent complete\n", "01:39:07.77 73.77 percent complete\n", "01:39:27.19 74.01 percent complete\n", "01:39:45.80 74.25 percent complete\n", "01:40:04.64 74.49 percent complete\n", "01:40:23.15 74.73 percent complete\n", "01:40:42.33 74.97 percent complete\n", "01:41:01.79 75.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:41:21.05 75.45 percent complete\n", "01:41:40.17 75.69 percent complete\n", "01:42:00.23 75.93 percent complete\n", "01:42:19.04 76.17 percent complete\n", "01:42:37.97 76.41 percent complete\n", "01:42:56.58 76.65 percent complete\n", "01:43:15.17 76.89 percent complete\n", "01:43:34.31 77.13 percent complete\n", "01:43:52.81 77.37 percent complete\n", "01:44:12.11 77.61 percent complete\n", "01:44:32.91 77.84 percent complete\n", "01:44:52.22 78.08 percent complete\n", "01:45:10.86 78.32 percent complete\n", "01:45:30.09 78.56 percent complete\n", "01:45:49.03 78.80 percent complete\n", "01:46:08.09 79.04 percent complete\n", "01:46:27.50 79.28 percent complete\n", "01:46:46.15 79.52 percent complete\n", "01:47:06.15 79.76 percent complete\n", "01:47:25.74 80.00 percent complete\n", "01:47:44.91 80.24 percent complete\n", "01:48:03.97 80.48 percent complete\n", "01:48:21.95 80.72 percent complete\n", "01:48:41.51 80.96 percent complete\n", "01:49:00.14 81.20 percent complete\n", "01:49:18.60 81.44 percent complete\n", "01:49:38.36 81.68 percent complete\n", "01:49:57.60 81.92 percent complete\n", "01:50:16.57 82.16 percent complete\n", "01:50:35.61 82.40 percent complete\n", "01:50:53.93 82.64 percent complete\n", "01:51:12.99 82.87 percent complete\n", "01:51:31.83 83.11 percent complete\n", "01:51:50.63 83.35 percent complete\n", "01:52:10.97 83.59 percent complete\n", "01:52:30.11 83.83 percent complete\n", "01:52:49.59 84.07 percent complete\n", "01:53:08.21 84.31 percent complete\n", "01:53:27.33 84.55 percent complete\n", "01:53:46.12 84.79 percent complete\n", "01:54:05.15 85.03 percent complete\n", "01:54:24.17 85.27 percent complete\n", "01:54:44.24 85.51 percent complete\n", "01:55:03.50 85.75 percent complete\n", "01:55:22.98 85.99 percent complete\n", "01:55:43.60 86.23 percent complete\n", "01:56:02.79 86.47 percent complete\n", "01:56:22.69 86.71 percent complete\n", "01:56:41.59 86.95 percent complete\n", "01:57:00.96 87.19 percent complete\n", "01:57:21.16 87.43 percent complete\n", "01:57:40.86 87.67 percent complete\n", "01:58:00.47 87.90 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:58:19.63 88.14 percent complete\n", "01:58:38.07 88.38 percent complete\n", "01:58:57.10 88.62 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:16.90 88.86 percent complete\n", "01:59:37.19 89.10 percent complete\n", "01:59:57.69 89.34 percent complete\n", "02:00:16.97 89.58 percent complete\n", "02:00:35.82 89.82 percent complete\n", "02:00:54.60 90.06 percent complete\n", "02:01:14.32 90.30 percent complete\n", "02:01:34.50 90.54 percent complete\n", "02:01:54.07 90.78 percent complete\n", "02:02:13.59 91.02 percent complete\n", "02:02:33.10 91.26 percent complete\n", "02:02:51.51 91.50 percent complete\n", "02:03:11.79 91.74 percent complete\n", "02:03:30.93 91.98 percent complete\n", "02:03:49.60 92.22 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": [ "02:04:08.83 92.46 percent complete\n", "02:04:27.47 92.70 percent complete\n", "02:04:46.64 92.93 percent complete\n", "02:05:06.11 93.17 percent complete\n", "02:05:25.67 93.41 percent complete\n", "02:05:43.84 93.65 percent complete\n", "02:06:02.80 93.89 percent complete\n", "02:06:21.93 94.13 percent complete\n", "02:06:40.96 94.37 percent complete\n", "02:06:59.60 94.61 percent complete\n", "02:07:18.53 94.85 percent complete\n", "02:07:38.08 95.09 percent complete\n", "02:07:57.28 95.33 percent complete\n", "02:08:16.07 95.57 percent complete\n", "02:08:34.73 95.81 percent complete\n", "02:08:53.66 96.05 percent complete\n", "02:09:12.34 96.29 percent complete\n", "02:09:31.67 96.53 percent complete\n", "02:09:50.88 96.77 percent complete\n", "02:10:10.40 97.01 percent complete\n", "02:10:30.20 97.25 percent complete\n", "02:10:48.18 97.49 percent complete\n", "02:11:06.85 97.73 percent complete\n", "02:11:25.74 97.96 percent complete\n", "02:11:45.60 98.20 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": [ "02:12:04.37 98.44 percent complete\n", "02:12:23.27 98.68 percent complete\n", "02:12:42.66 98.92 percent complete\n", "02:13:02.28 99.16 percent complete\n", "02:13:21.16 99.40 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": [ "02:13:40.29 99.64 percent complete\n", "02:13:59.55 99.88 percent complete\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "hxxBOCA-xXhy", "outputId": "509966df-78fb-4eab-e944-eaf90ef72704", "colab": { "base_uri": "https://localhost:8080/", "height": 819 } }, "source": [ "# 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.en <==\n", "“ Whatever we ask we receive from him , ” wrote the apostle John , “ because we are observing his commandments and are doing the things that are pleasing in his eyes . ”\n", "Did Leah conspire to deceive Jacob ?\n", "While the one under demon attack should pray fervently for relief , other true Christians may also pray in behalf of the individual who deeply desires to serve Jehovah and who is earnestly trying to resist wicked forces .\n", "The articles on pages 5 to 9 of this issue discuss what that Kingdom is and when it will come .\n", "It answers the following questions : What factors presently prevent diplomacy from producing peace ?\n", "Are these mammoth sea monsters slow and clumsy in the water ?\n", "A good counselor shows empathy , respect , and kindness\n", "Jehovah raises up the horns of his people , causing them to be exalted , whereas he ‘ cuts down the horns of the wicked ones . ’\n", "And it came about at the closing of the gate by dark that the men went out . ”\n", "For instance , an angel was asked by Manoah , the father of Samson : “ What is your name , that when your word comes true we shall certainly do you honor ? ”\n", "\n", "==> train.ig <==\n", "“ Anyị na - anatakwa ihe ọ bụla anyị rịọrọ n’aka ya , ” ka Jọn onyeozi dere , “ n’ihi na anyị na - edebe ihe ndị o nyere n’iwu , na - emekwa ihe ndị dị mma n’anya ya . ”\n", "Ọ̀ bụ Lia kpara nkata a ka a ghọgbuo Jekọb ?\n", "Ọ bụ ezie na onye ahụ ndị mmụọ ọjọọ na - enye nsogbu kwesịrị ikpesi ekpere ike iji nwere onwe ya , ezi Ndị Kraịst ndị ọzọ pụkwara ikpere onye ahụ ji obi ya nile chọọ ijere Jehova ozi ma na - agbalịsi ike iguzogide ndị mmụọ ọjọọ ekpere .\n", "Isiokwu ndị dị na peeji nke ise ruo na nke itoolu na magazin a i ji n’aka kwuru ihe Alaeze ahụ bụ na mgbe ọ ga - abịa .\n", "Ọ na - aza ajụjụ ndị na - esonụ : N’agbanyeghị mgbalị ndị a na - eme n’oge a ịhụ na mba na mba dị ná mma , olee ihe ndị mere na udo adịbeghị ?\n", "Nnukwu anụ mmiri ndị a hà na - aga nwayọọ nwayọọ n’ime mmiri ?\n", "Ezi onye ndụmọdụ na - enwe ọmịiko n’ahụ́ onye ọ na - adụ ọdụ , na - akwanyere ya ùgwù ma jiri obiọma na - emeso ya ihe\n", "Jehova na - ebuli mpi nile nke ndị ya elu , na - eme ka ha dị elu , ebe ọ ‘ na - ebipụ mpi nile nke ndị na - emebi iwu . ’\n", "O wee ruo na mgbe chi jiwere , mgbe a chọrọ imechi ọnụ ụzọ ámá , ndị ikom ahụ pụrụ . ”\n", "A kpọghị aha ndị ọzọ . Dị ka ihe atụ , mgbe nna Samsịn aha ya bụ Manoa jụrụ otu mmụọ ozi , sị : “ Gịnị bụ aha gị , ka ọ ga - abụ mgbe okwu gị mezuru , anyị ga - asọpụrụ gị ? ”\n", "==> dev.en <==\n", "Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "That is the second step toward gaining God’s forgiveness .\n", "The teacher was amazed that someone actually had something to say on the subject , since most of the students were having a difficult time understanding it .\n", "The Bible tells us : “ God opposes the haughty ones , but he gives undeserved kindness to the humble ones . ”\n", "Indeed , mildness and self - control were listed together by the apostle Paul when he outlined “ the fruitage of the spirit . ”\n", "God will bring those young men back to life , and they will have the opportunity to learn the truth about him .\n", "Still , applying the Bible’s advice , we worked out our differences and enjoyed success as pioneer partners .\n", "Use the time well to reach others with the good news of the Kingdom , ” urged Brother Pierce .\n", "\n", "==> dev.ig <==\n", "Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "O juru onye nkụzi ahụ anya na e nwere n’ezie onye nwere ihe ọ ga - ekwu n’isiokwu ahụ , ebe ọ bụ na o siiri ọnụ ọgụgụ ka ukwuu nke ụmụ akwụkwọ ahụ ike ịghọta ya .\n", "Bible na - agwa anyị , sị : “ Chineke na - emegide ndị mpako , ma ọ na - enye ndị dị umeala n’obi obiọma na - erughịrị mmadụ . ”\n", "N’ezie , Pọl onyeozi denyere ịdị nwayọọ na njide onwe onye mgbe o depụtara “ mkpụrụ nke mmụọ nsọ . ”\n", "Chineke ga - akpọlite ụmụ okorobịa ndị ahụ n’ọnwụ , a kụziere ha eziokwu banyere ya .\n", "Ma , ime ihe ndị anyị na - amụta na Baịbụl mere ka anyị dozie ihe niile , meekwa ka anyị jiri obi ụtọ na - eje ozi anyị .\n", "Jiri oge ahụ mee ihe nke ọma site n’iwegara ndị ọzọ ozi ọma Alaeze ahụ , ” ka Nwanna Pierce gbara ume .\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": "b0bbf7b4-4c71-4fe5-f225-71d1c0425841", "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": 3, "outputs": [ { "output_type": "stream", "text": [ "Cloning into 'joeynmt'...\n", "remote: Enumerating objects: 15, done.\u001b[K\n", "remote: Counting objects: 100% (15/15), done.\u001b[K\n", "remote: Compressing objects: 100% (12/12), done.\u001b[K\n", "remote: Total 2199 (delta 4), reused 5 (delta 3), pack-reused 2184\u001b[K\n", "Receiving objects: 100% (2199/2199), 2.61 MiB | 4.87 MiB/s, done.\n", "Resolving deltas: 100% (1525/1525), 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) (6.2.2)\n", "Requirement already satisfied: numpy<2.0,>=1.14.5 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.17.5)\n", "Requirement already satisfied: setuptools>=41.0.0 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (42.0.2)\n", "Requirement already satisfied: torch>=1.1 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.3.1)\n", "Requirement already satisfied: tensorflow>=1.14 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.15.0)\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", " Downloading https://files.pythonhosted.org/packages/45/31/1a135b964c169984b27fb2f7a50280fa7f8e6d9d404d8a9e596180487fd1/sacrebleu-1.4.3-py3-none-any.whl\n", "Collecting 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.1.2)\n", "Requirement already satisfied: seaborn in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (0.9.0)\n", "Collecting pyyaml>=5.1\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/3d/d9/ea9816aea31beeadccd03f1f8b625ecf8f645bd66744484d162d84803ce5/PyYAML-5.3.tar.gz (268kB)\n", "\u001b[K |████████████████████████████████| 276kB 20.8MB/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 64.2MB/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", "Requirement already satisfied: keras-applications>=1.0.8 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.0.8)\n", "Requirement already satisfied: google-pasta>=0.1.6 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.1.8)\n", "Requirement already satisfied: tensorboard<1.16.0,>=1.15.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.15.0)\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: wrapt>=1.11.1 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.11.2)\n", "Requirement already satisfied: astor>=0.6.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.8.1)\n", "Requirement already satisfied: keras-preprocessing>=1.0.5 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.1.0)\n", "Requirement already satisfied: protobuf>=3.6.1 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (3.10.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.1.0)\n", "Requirement already satisfied: wheel>=0.26 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.33.6)\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: gast==0.2.2 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.2.2)\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.15.0)\n", "Requirement already satisfied: tensorflow-estimator==1.15.1 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.15.1)\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.28.1)\n", "Collecting portalocker\n", " Downloading https://files.pythonhosted.org/packages/91/db/7bc703c0760df726839e0699b7f78a4d8217fdc9c7fcb1b51b39c5a22a4e/portalocker-1.5.2-py2.py3-none-any.whl\n", "Requirement already satisfied: typing in /usr/local/lib/python3.6/dist-packages (from sacrebleu>=1.3.6->joeynmt==0.0.1) (3.6.6)\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: 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: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (1.1.0)\n", "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (2.6.1)\n", "Requirement already satisfied: pandas>=0.15.2 in /usr/local/lib/python3.6/dist-packages (from seaborn->joeynmt==0.0.1) (0.25.3)\n", "Requirement already satisfied: scipy>=0.14.0 in /usr/local/lib/python3.6/dist-packages (from seaborn->joeynmt==0.0.1) (1.4.1)\n", "Collecting 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 58.5MB/s \n", "\u001b[?25hCollecting 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 7.9MB/s \n", "\u001b[?25hRequirement already satisfied: h5py in /usr/local/lib/python3.6/dist-packages (from keras-applications>=1.0.8->tensorflow>=1.14->joeynmt==0.0.1) (2.8.0)\n", "Requirement already satisfied: markdown>=2.6.8 in /usr/local/lib/python3.6/dist-packages (from tensorboard<1.16.0,>=1.15.0->tensorflow>=1.14->joeynmt==0.0.1) (3.1.1)\n", "Requirement already satisfied: werkzeug>=0.11.15 in /usr/local/lib/python3.6/dist-packages (from tensorboard<1.16.0,>=1.15.0->tensorflow>=1.14->joeynmt==0.0.1) (0.16.0)\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: 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: 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: 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: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.15.2->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.2MB/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 9.9MB/s \n", "\u001b[?25hBuilding wheels for collected packages: joeynmt, pyyaml\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=72136 sha256=0637bbbc5c3939c70256f471218cf65cb7a7292004f9104e524c4aadc68f9c67\n", " Stored in directory: /tmp/pip-ephem-wheel-cache-u3xlqj8s/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-cp36-cp36m-linux_x86_64.whl size=44229 sha256=5dc11acf97b27525fb6ba79f800d04f224cfbbbcaec24ecdebd9e62e70efcb12\n", " Stored in directory: /root/.cache/pip/wheels/e4/76/4d/a95b8dd7b452b69e8ed4f68b69e1b55e12c9c9624dd962b191\n", "Successfully built joeynmt pyyaml\n", "Installing collected packages: portalocker, sacrebleu, subword-nmt, pyyaml, mccabe, typed-ast, lazy-object-proxy, astroid, isort, pylint, joeynmt\n", " Found existing installation: PyYAML 3.13\n", " Uninstalling PyYAML-3.13:\n", " Successfully uninstalled PyYAML-3.13\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 portalocker-1.5.2 pylint-2.4.4 pyyaml-5.3 sacrebleu-1.4.3 subword-nmt-0.3.7 typed-ast-1.4.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": "9cd40ef0-100e-4d1c-b2c5-739035ca4205", "colab": { "base_uri": "https://localhost:8080/", "height": 408 } }, "source": [ "# 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 joeynmt/data/$src$tgt/vocab.txt\n", "\n", "# Some output\n", "! echo \"BPE Igbo Sentences\"\n", "! tail -n 5 test.bpe.$tgt\n", "! echo \"Combined BPE Vocab\"\n", "! tail -n 10 joeynmt/data/$src$tgt/vocab.txt # Herman\n", "! cp joeynmt/data/$src$tgt/vocab.txt \"$gdrive_path\"" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "bpe.codes.4000\tdev.en\t test.bpe.ig test.ig\t train.en\n", "dev.bpe.en\tdev.ig\t test.en\t train.bpe.en train.ig\n", "dev.bpe.ig\ttest.bpe.en test.en-any.en train.bpe.ig\n", "bpe.codes.4000\tdev.en\t test.bpe.ig test.ig\t train.en\n", "dev.bpe.en\tdev.ig\t test.en\t train.bpe.en train.ig\n", "dev.bpe.ig\ttest.bpe.en test.en-any.en train.bpe.ig\n", "BPE Igbo Sentences\n", "Gịnị mere H@@ us@@ ha@@ ị ji kwesị inwe obi ike ka o nwee ike ịkw@@ ado Chineke ?\n", "Gịnị mere anyị ji kwesị inwe obi ike ka anyị nwee ike ịna - akwado Jehova ?\n", "M kpere ekpere ka Jehova nye m obi ike ime ihe m kpebiri .\n", "I@@ we ha ad@@ aj@@ ụ@@ ọla ugbu a . M na - ag@@ azi ahụ ha mgbe niile . ” — Gụọ Ilu 29 : 25 .\n", "[ 1 ] ( par@@ ag@@ ra@@ f nke 7 ) A@@ ha a kpọrọ ụfọdụ ndị n’isiokwu a abụghị ezigbo aha ha .\n", "Combined BPE Vocab\n", "ạ@@\n", "ô\n", "ọgar@@\n", "̇\n", "ş\n", "ů@@\n", "◀\n", "eazụ\n", "ʺ\n", "×\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "IlMitUHR8Qy-", "outputId": "951dce57-1198-4d00-ed95-3a9fcde69a44", "colab": { "base_uri": "https://localhost:8080/", "height": 68 } }, "source": [ "# 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\"" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "bpe.codes.4000\tdev.en\t test.bpe.ig test.ig\t train.en\n", "dev.bpe.en\tdev.ig\t test.en\t train.bpe.en train.ig\n", "dev.bpe.ig\ttest.bpe.en test.en-any.en train.bpe.ig vocab.txt\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": { "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/10000.ckpt\" # if uncommented, load a pre-trained model from this 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: 30 # 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: \"{gdrive_path}/models/{name}_transformer\"\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)\n", "with open(\"joeynmt/configs/transformer_{name}.yaml\".format(name=name),'w') as f:\n", " f.write(config)\n", "\n", "! cp joeynmt/configs/transformer_$src$tgt.yaml \"$gdrive_path\"" ], "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": "cb110453-7417-40c7-b46a-4ecb89cab9fe", "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\n", "!python3 -m joeynmt train \"$gdrive_path/transformer_$src$tgt.yaml\"" ], "execution_count": 27, "outputs": [ { "output_type": "stream", "text": [ "2020-01-13 06:51:52,658 Hello! This is Joey-NMT.\n", "2020-01-13 06:51:53,854 Total params: 12188928\n", "2020-01-13 06:51:53,855 Trainable parameters: ['decoder.layer_norm.bias', 'decoder.layer_norm.weight', 'decoder.layers.0.dec_layer_norm.bias', 'decoder.layers.0.dec_layer_norm.weight', 'decoder.layers.0.feed_forward.layer_norm.bias', 'decoder.layers.0.feed_forward.layer_norm.weight', 'decoder.layers.0.feed_forward.pwff_layer.0.bias', 'decoder.layers.0.feed_forward.pwff_layer.0.weight', 'decoder.layers.0.feed_forward.pwff_layer.3.bias', 'decoder.layers.0.feed_forward.pwff_layer.3.weight', 'decoder.layers.0.src_trg_att.k_layer.bias', 'decoder.layers.0.src_trg_att.k_layer.weight', 'decoder.layers.0.src_trg_att.output_layer.bias', 'decoder.layers.0.src_trg_att.output_layer.weight', 'decoder.layers.0.src_trg_att.q_layer.bias', 'decoder.layers.0.src_trg_att.q_layer.weight', 'decoder.layers.0.src_trg_att.v_layer.bias', 'decoder.layers.0.src_trg_att.v_layer.weight', 'decoder.layers.0.trg_trg_att.k_layer.bias', 'decoder.layers.0.trg_trg_att.k_layer.weight', 'decoder.layers.0.trg_trg_att.output_layer.bias', 'decoder.layers.0.trg_trg_att.output_layer.weight', 'decoder.layers.0.trg_trg_att.q_layer.bias', 'decoder.layers.0.trg_trg_att.q_layer.weight', 'decoder.layers.0.trg_trg_att.v_layer.bias', 'decoder.layers.0.trg_trg_att.v_layer.weight', 'decoder.layers.0.x_layer_norm.bias', 'decoder.layers.0.x_layer_norm.weight', 'decoder.layers.1.dec_layer_norm.bias', 'decoder.layers.1.dec_layer_norm.weight', 'decoder.layers.1.feed_forward.layer_norm.bias', 'decoder.layers.1.feed_forward.layer_norm.weight', 'decoder.layers.1.feed_forward.pwff_layer.0.bias', 'decoder.layers.1.feed_forward.pwff_layer.0.weight', 'decoder.layers.1.feed_forward.pwff_layer.3.bias', 'decoder.layers.1.feed_forward.pwff_layer.3.weight', 'decoder.layers.1.src_trg_att.k_layer.bias', 'decoder.layers.1.src_trg_att.k_layer.weight', 'decoder.layers.1.src_trg_att.output_layer.bias', 'decoder.layers.1.src_trg_att.output_layer.weight', 'decoder.layers.1.src_trg_att.q_layer.bias', 'decoder.layers.1.src_trg_att.q_layer.weight', 'decoder.layers.1.src_trg_att.v_layer.bias', 'decoder.layers.1.src_trg_att.v_layer.weight', 'decoder.layers.1.trg_trg_att.k_layer.bias', 'decoder.layers.1.trg_trg_att.k_layer.weight', 'decoder.layers.1.trg_trg_att.output_layer.bias', 'decoder.layers.1.trg_trg_att.output_layer.weight', 'decoder.layers.1.trg_trg_att.q_layer.bias', 'decoder.layers.1.trg_trg_att.q_layer.weight', 'decoder.layers.1.trg_trg_att.v_layer.bias', 'decoder.layers.1.trg_trg_att.v_layer.weight', 'decoder.layers.1.x_layer_norm.bias', 'decoder.layers.1.x_layer_norm.weight', 'decoder.layers.2.dec_layer_norm.bias', 'decoder.layers.2.dec_layer_norm.weight', 'decoder.layers.2.feed_forward.layer_norm.bias', 'decoder.layers.2.feed_forward.layer_norm.weight', 'decoder.layers.2.feed_forward.pwff_layer.0.bias', 'decoder.layers.2.feed_forward.pwff_layer.0.weight', 'decoder.layers.2.feed_forward.pwff_layer.3.bias', 'decoder.layers.2.feed_forward.pwff_layer.3.weight', 'decoder.layers.2.src_trg_att.k_layer.bias', 'decoder.layers.2.src_trg_att.k_layer.weight', 'decoder.layers.2.src_trg_att.output_layer.bias', 'decoder.layers.2.src_trg_att.output_layer.weight', 'decoder.layers.2.src_trg_att.q_layer.bias', 'decoder.layers.2.src_trg_att.q_layer.weight', 'decoder.layers.2.src_trg_att.v_layer.bias', 'decoder.layers.2.src_trg_att.v_layer.weight', 'decoder.layers.2.trg_trg_att.k_layer.bias', 'decoder.layers.2.trg_trg_att.k_layer.weight', 'decoder.layers.2.trg_trg_att.output_layer.bias', 'decoder.layers.2.trg_trg_att.output_layer.weight', 'decoder.layers.2.trg_trg_att.q_layer.bias', 'decoder.layers.2.trg_trg_att.q_layer.weight', 'decoder.layers.2.trg_trg_att.v_layer.bias', 'decoder.layers.2.trg_trg_att.v_layer.weight', 'decoder.layers.2.x_layer_norm.bias', 'decoder.layers.2.x_layer_norm.weight', 'decoder.layers.3.dec_layer_norm.bias', 'decoder.layers.3.dec_layer_norm.weight', 'decoder.layers.3.feed_forward.layer_norm.bias', 'decoder.layers.3.feed_forward.layer_norm.weight', 'decoder.layers.3.feed_forward.pwff_layer.0.bias', 'decoder.layers.3.feed_forward.pwff_layer.0.weight', 'decoder.layers.3.feed_forward.pwff_layer.3.bias', 'decoder.layers.3.feed_forward.pwff_layer.3.weight', 'decoder.layers.3.src_trg_att.k_layer.bias', 'decoder.layers.3.src_trg_att.k_layer.weight', 'decoder.layers.3.src_trg_att.output_layer.bias', 'decoder.layers.3.src_trg_att.output_layer.weight', 'decoder.layers.3.src_trg_att.q_layer.bias', 'decoder.layers.3.src_trg_att.q_layer.weight', 'decoder.layers.3.src_trg_att.v_layer.bias', 'decoder.layers.3.src_trg_att.v_layer.weight', 'decoder.layers.3.trg_trg_att.k_layer.bias', 'decoder.layers.3.trg_trg_att.k_layer.weight', 'decoder.layers.3.trg_trg_att.output_layer.bias', 'decoder.layers.3.trg_trg_att.output_layer.weight', 'decoder.layers.3.trg_trg_att.q_layer.bias', 'decoder.layers.3.trg_trg_att.q_layer.weight', 'decoder.layers.3.trg_trg_att.v_layer.bias', 'decoder.layers.3.trg_trg_att.v_layer.weight', 'decoder.layers.3.x_layer_norm.bias', 'decoder.layers.3.x_layer_norm.weight', 'decoder.layers.4.dec_layer_norm.bias', 'decoder.layers.4.dec_layer_norm.weight', 'decoder.layers.4.feed_forward.layer_norm.bias', 'decoder.layers.4.feed_forward.layer_norm.weight', 'decoder.layers.4.feed_forward.pwff_layer.0.bias', 'decoder.layers.4.feed_forward.pwff_layer.0.weight', 'decoder.layers.4.feed_forward.pwff_layer.3.bias', 'decoder.layers.4.feed_forward.pwff_layer.3.weight', 'decoder.layers.4.src_trg_att.k_layer.bias', 'decoder.layers.4.src_trg_att.k_layer.weight', 'decoder.layers.4.src_trg_att.output_layer.bias', 'decoder.layers.4.src_trg_att.output_layer.weight', 'decoder.layers.4.src_trg_att.q_layer.bias', 'decoder.layers.4.src_trg_att.q_layer.weight', 'decoder.layers.4.src_trg_att.v_layer.bias', 'decoder.layers.4.src_trg_att.v_layer.weight', 'decoder.layers.4.trg_trg_att.k_layer.bias', 'decoder.layers.4.trg_trg_att.k_layer.weight', 'decoder.layers.4.trg_trg_att.output_layer.bias', 'decoder.layers.4.trg_trg_att.output_layer.weight', 'decoder.layers.4.trg_trg_att.q_layer.bias', 'decoder.layers.4.trg_trg_att.q_layer.weight', 'decoder.layers.4.trg_trg_att.v_layer.bias', 'decoder.layers.4.trg_trg_att.v_layer.weight', 'decoder.layers.4.x_layer_norm.bias', 'decoder.layers.4.x_layer_norm.weight', 'decoder.layers.5.dec_layer_norm.bias', 'decoder.layers.5.dec_layer_norm.weight', 'decoder.layers.5.feed_forward.layer_norm.bias', 'decoder.layers.5.feed_forward.layer_norm.weight', 'decoder.layers.5.feed_forward.pwff_layer.0.bias', 'decoder.layers.5.feed_forward.pwff_layer.0.weight', 'decoder.layers.5.feed_forward.pwff_layer.3.bias', 'decoder.layers.5.feed_forward.pwff_layer.3.weight', 'decoder.layers.5.src_trg_att.k_layer.bias', 'decoder.layers.5.src_trg_att.k_layer.weight', 'decoder.layers.5.src_trg_att.output_layer.bias', 'decoder.layers.5.src_trg_att.output_layer.weight', 'decoder.layers.5.src_trg_att.q_layer.bias', 'decoder.layers.5.src_trg_att.q_layer.weight', 'decoder.layers.5.src_trg_att.v_layer.bias', 'decoder.layers.5.src_trg_att.v_layer.weight', 'decoder.layers.5.trg_trg_att.k_layer.bias', 'decoder.layers.5.trg_trg_att.k_layer.weight', 'decoder.layers.5.trg_trg_att.output_layer.bias', 'decoder.layers.5.trg_trg_att.output_layer.weight', 'decoder.layers.5.trg_trg_att.q_layer.bias', 'decoder.layers.5.trg_trg_att.q_layer.weight', 'decoder.layers.5.trg_trg_att.v_layer.bias', 'decoder.layers.5.trg_trg_att.v_layer.weight', 'decoder.layers.5.x_layer_norm.bias', 'decoder.layers.5.x_layer_norm.weight', 'encoder.layer_norm.bias', 'encoder.layer_norm.weight', 'encoder.layers.0.feed_forward.layer_norm.bias', 'encoder.layers.0.feed_forward.layer_norm.weight', 'encoder.layers.0.feed_forward.pwff_layer.0.bias', 'encoder.layers.0.feed_forward.pwff_layer.0.weight', 'encoder.layers.0.feed_forward.pwff_layer.3.bias', 'encoder.layers.0.feed_forward.pwff_layer.3.weight', 'encoder.layers.0.layer_norm.bias', 'encoder.layers.0.layer_norm.weight', 'encoder.layers.0.src_src_att.k_layer.bias', 'encoder.layers.0.src_src_att.k_layer.weight', 'encoder.layers.0.src_src_att.output_layer.bias', 'encoder.layers.0.src_src_att.output_layer.weight', 'encoder.layers.0.src_src_att.q_layer.bias', 'encoder.layers.0.src_src_att.q_layer.weight', 'encoder.layers.0.src_src_att.v_layer.bias', 'encoder.layers.0.src_src_att.v_layer.weight', 'encoder.layers.1.feed_forward.layer_norm.bias', 'encoder.layers.1.feed_forward.layer_norm.weight', 'encoder.layers.1.feed_forward.pwff_layer.0.bias', 'encoder.layers.1.feed_forward.pwff_layer.0.weight', 'encoder.layers.1.feed_forward.pwff_layer.3.bias', 'encoder.layers.1.feed_forward.pwff_layer.3.weight', 'encoder.layers.1.layer_norm.bias', 'encoder.layers.1.layer_norm.weight', 'encoder.layers.1.src_src_att.k_layer.bias', 'encoder.layers.1.src_src_att.k_layer.weight', 'encoder.layers.1.src_src_att.output_layer.bias', 'encoder.layers.1.src_src_att.output_layer.weight', 'encoder.layers.1.src_src_att.q_layer.bias', 'encoder.layers.1.src_src_att.q_layer.weight', 'encoder.layers.1.src_src_att.v_layer.bias', 'encoder.layers.1.src_src_att.v_layer.weight', 'encoder.layers.2.feed_forward.layer_norm.bias', 'encoder.layers.2.feed_forward.layer_norm.weight', 'encoder.layers.2.feed_forward.pwff_layer.0.bias', 'encoder.layers.2.feed_forward.pwff_layer.0.weight', 'encoder.layers.2.feed_forward.pwff_layer.3.bias', 'encoder.layers.2.feed_forward.pwff_layer.3.weight', 'encoder.layers.2.layer_norm.bias', 'encoder.layers.2.layer_norm.weight', 'encoder.layers.2.src_src_att.k_layer.bias', 'encoder.layers.2.src_src_att.k_layer.weight', 'encoder.layers.2.src_src_att.output_layer.bias', 'encoder.layers.2.src_src_att.output_layer.weight', 'encoder.layers.2.src_src_att.q_layer.bias', 'encoder.layers.2.src_src_att.q_layer.weight', 'encoder.layers.2.src_src_att.v_layer.bias', 'encoder.layers.2.src_src_att.v_layer.weight', 'encoder.layers.3.feed_forward.layer_norm.bias', 'encoder.layers.3.feed_forward.layer_norm.weight', 'encoder.layers.3.feed_forward.pwff_layer.0.bias', 'encoder.layers.3.feed_forward.pwff_layer.0.weight', 'encoder.layers.3.feed_forward.pwff_layer.3.bias', 'encoder.layers.3.feed_forward.pwff_layer.3.weight', 'encoder.layers.3.layer_norm.bias', 'encoder.layers.3.layer_norm.weight', 'encoder.layers.3.src_src_att.k_layer.bias', 'encoder.layers.3.src_src_att.k_layer.weight', 'encoder.layers.3.src_src_att.output_layer.bias', 'encoder.layers.3.src_src_att.output_layer.weight', 'encoder.layers.3.src_src_att.q_layer.bias', 'encoder.layers.3.src_src_att.q_layer.weight', 'encoder.layers.3.src_src_att.v_layer.bias', 'encoder.layers.3.src_src_att.v_layer.weight', 'encoder.layers.4.feed_forward.layer_norm.bias', 'encoder.layers.4.feed_forward.layer_norm.weight', 'encoder.layers.4.feed_forward.pwff_layer.0.bias', 'encoder.layers.4.feed_forward.pwff_layer.0.weight', 'encoder.layers.4.feed_forward.pwff_layer.3.bias', 'encoder.layers.4.feed_forward.pwff_layer.3.weight', 'encoder.layers.4.layer_norm.bias', 'encoder.layers.4.layer_norm.weight', 'encoder.layers.4.src_src_att.k_layer.bias', 'encoder.layers.4.src_src_att.k_layer.weight', 'encoder.layers.4.src_src_att.output_layer.bias', 'encoder.layers.4.src_src_att.output_layer.weight', 'encoder.layers.4.src_src_att.q_layer.bias', 'encoder.layers.4.src_src_att.q_layer.weight', 'encoder.layers.4.src_src_att.v_layer.bias', 'encoder.layers.4.src_src_att.v_layer.weight', 'encoder.layers.5.feed_forward.layer_norm.bias', 'encoder.layers.5.feed_forward.layer_norm.weight', 'encoder.layers.5.feed_forward.pwff_layer.0.bias', 'encoder.layers.5.feed_forward.pwff_layer.0.weight', 'encoder.layers.5.feed_forward.pwff_layer.3.bias', 'encoder.layers.5.feed_forward.pwff_layer.3.weight', 'encoder.layers.5.layer_norm.bias', 'encoder.layers.5.layer_norm.weight', 'encoder.layers.5.src_src_att.k_layer.bias', 'encoder.layers.5.src_src_att.k_layer.weight', 'encoder.layers.5.src_src_att.output_layer.bias', 'encoder.layers.5.src_src_att.output_layer.weight', 'encoder.layers.5.src_src_att.q_layer.bias', 'encoder.layers.5.src_src_att.q_layer.weight', 'encoder.layers.5.src_src_att.v_layer.bias', 'encoder.layers.5.src_src_att.v_layer.weight', 'src_embed.lut.weight']\n", "2020-01-13 06:51:57,038 cfg.name : enig_transformer\n", "2020-01-13 06:51:57,038 cfg.data.src : en\n", "2020-01-13 06:51:57,039 cfg.data.trg : ig\n", "2020-01-13 06:51:57,039 cfg.data.train : /content/drive/My Drive/masakhane/en-ig-baseline/train.bpe\n", "2020-01-13 06:51:57,039 cfg.data.dev : /content/drive/My Drive/masakhane/en-ig-baseline/dev.bpe\n", "2020-01-13 06:51:57,039 cfg.data.test : /content/drive/My Drive/masakhane/en-ig-baseline/test.bpe\n", "2020-01-13 06:51:57,039 cfg.data.level : bpe\n", "2020-01-13 06:51:57,039 cfg.data.lowercase : False\n", "2020-01-13 06:51:57,040 cfg.data.max_sent_length : 100\n", "2020-01-13 06:51:57,040 cfg.data.src_vocab : /content/drive/My Drive/masakhane/en-ig-baseline/vocab.txt\n", "2020-01-13 06:51:57,040 cfg.data.trg_vocab : /content/drive/My Drive/masakhane/en-ig-baseline/vocab.txt\n", "2020-01-13 06:51:57,040 cfg.testing.beam_size : 5\n", "2020-01-13 06:51:57,040 cfg.testing.alpha : 1.0\n", "2020-01-13 06:51:57,040 cfg.training.random_seed : 42\n", "2020-01-13 06:51:57,040 cfg.training.optimizer : adam\n", "2020-01-13 06:51:57,041 cfg.training.normalization : tokens\n", "2020-01-13 06:51:57,041 cfg.training.adam_betas : [0.9, 0.999]\n", "2020-01-13 06:51:57,041 cfg.training.scheduling : plateau\n", "2020-01-13 06:51:57,041 cfg.training.patience : 5\n", "2020-01-13 06:51:57,041 cfg.training.learning_rate_factor : 0.5\n", "2020-01-13 06:51:57,041 cfg.training.learning_rate_warmup : 1000\n", "2020-01-13 06:51:57,041 cfg.training.decrease_factor : 0.7\n", "2020-01-13 06:51:57,042 cfg.training.loss : crossentropy\n", "2020-01-13 06:51:57,042 cfg.training.learning_rate : 0.0003\n", "2020-01-13 06:51:57,042 cfg.training.learning_rate_min : 1e-08\n", "2020-01-13 06:51:57,042 cfg.training.weight_decay : 0.0\n", "2020-01-13 06:51:57,042 cfg.training.label_smoothing : 0.1\n", "2020-01-13 06:51:57,042 cfg.training.batch_size : 4096\n", "2020-01-13 06:51:57,042 cfg.training.batch_type : token\n", "2020-01-13 06:51:57,043 cfg.training.eval_batch_size : 3600\n", "2020-01-13 06:51:57,043 cfg.training.eval_batch_type : token\n", "2020-01-13 06:51:57,043 cfg.training.batch_multiplier : 1\n", "2020-01-13 06:51:57,043 cfg.training.early_stopping_metric : ppl\n", "2020-01-13 06:51:57,043 cfg.training.epochs : 30\n", "2020-01-13 06:51:57,043 cfg.training.validation_freq : 1000\n", "2020-01-13 06:51:57,043 cfg.training.logging_freq : 100\n", "2020-01-13 06:51:57,044 cfg.training.eval_metric : bleu\n", "2020-01-13 06:51:57,044 cfg.training.model_dir : /content/drive/My Drive/masakhane/en-ig-baseline/models/enig_transformer\n", "2020-01-13 06:51:57,044 cfg.training.overwrite : True\n", "2020-01-13 06:51:57,044 cfg.training.shuffle : True\n", "2020-01-13 06:51:57,044 cfg.training.use_cuda : True\n", "2020-01-13 06:51:57,044 cfg.training.max_output_length : 100\n", "2020-01-13 06:51:57,045 cfg.training.print_valid_sents : [0, 1, 2, 3]\n", "2020-01-13 06:51:57,045 cfg.training.keep_last_ckpts : 3\n", "2020-01-13 06:51:57,045 cfg.model.initializer : xavier\n", "2020-01-13 06:51:57,045 cfg.model.bias_initializer : zeros\n", "2020-01-13 06:51:57,045 cfg.model.init_gain : 1.0\n", "2020-01-13 06:51:57,045 cfg.model.embed_initializer : xavier\n", "2020-01-13 06:51:57,045 cfg.model.embed_init_gain : 1.0\n", "2020-01-13 06:51:57,046 cfg.model.tied_embeddings : True\n", "2020-01-13 06:51:57,046 cfg.model.tied_softmax : True\n", "2020-01-13 06:51:57,046 cfg.model.encoder.type : transformer\n", "2020-01-13 06:51:57,046 cfg.model.encoder.num_layers : 6\n", "2020-01-13 06:51:57,046 cfg.model.encoder.num_heads : 4\n", "2020-01-13 06:51:57,046 cfg.model.encoder.embeddings.embedding_dim : 256\n", "2020-01-13 06:51:57,046 cfg.model.encoder.embeddings.scale : True\n", "2020-01-13 06:51:57,047 cfg.model.encoder.embeddings.dropout : 0.2\n", "2020-01-13 06:51:57,047 cfg.model.encoder.hidden_size : 256\n", "2020-01-13 06:51:57,047 cfg.model.encoder.ff_size : 1024\n", "2020-01-13 06:51:57,047 cfg.model.encoder.dropout : 0.3\n", "2020-01-13 06:51:57,047 cfg.model.decoder.type : transformer\n", "2020-01-13 06:51:57,047 cfg.model.decoder.num_layers : 6\n", "2020-01-13 06:51:57,048 cfg.model.decoder.num_heads : 4\n", "2020-01-13 06:51:57,048 cfg.model.decoder.embeddings.embedding_dim : 256\n", "2020-01-13 06:51:57,048 cfg.model.decoder.embeddings.scale : True\n", "2020-01-13 06:51:57,048 cfg.model.decoder.embeddings.dropout : 0.2\n", "2020-01-13 06:51:57,048 cfg.model.decoder.hidden_size : 256\n", "2020-01-13 06:51:57,048 cfg.model.decoder.ff_size : 1024\n", "2020-01-13 06:51:57,048 cfg.model.decoder.dropout : 0.3\n", "2020-01-13 06:51:57,049 Data set sizes: \n", "\ttrain 414467,\n", "\tvalid 1000,\n", "\ttest 2700\n", "2020-01-13 06:51:57,049 First training example:\n", "\t[SRC] “ Wh@@ atever we ask we receive from him , ” wrote the apostle John , “ because we are ob@@ serving his comman@@ d@@ ments and are doing the things that are pleas@@ ing in his eyes . ”\n", "\t[TRG] “ Anyị na - an@@ at@@ akwa ihe ọ bụla anyị rị@@ ọrọ n’aka ya , ” ka Jọn onyeozi dere , “ n’ihi na anyị na - edebe ihe ndị o nyere n’iwu , na - emekwa ihe ndị dị mma n’anya ya . ”\n", "2020-01-13 06:51:57,049 First 10 words (src): (0) (1) (2) (3) (4) , (5) . (6) na (7) - (8) the (9) a\n", "2020-01-13 06:51:57,050 First 10 words (trg): (0) (1) (2) (3) (4) , (5) . (6) na (7) - (8) the (9) a\n", "2020-01-13 06:51:57,050 Number of Src words (types): 4409\n", "2020-01-13 06:51:57,050 Number of Trg words (types): 4409\n", "2020-01-13 06:51:57,051 Model(\n", "\tencoder=TransformerEncoder(num_layers=6, num_heads=4),\n", "\tdecoder=TransformerDecoder(num_layers=6, num_heads=4),\n", "\tsrc_embed=Embeddings(embedding_dim=256, vocab_size=4409),\n", "\ttrg_embed=Embeddings(embedding_dim=256, vocab_size=4409))\n", "2020-01-13 06:51:57,059 EPOCH 1\n", "2020-01-13 06:52:09,698 Epoch 1 Step: 100 Batch Loss: 5.104409 Tokens per Sec: 18211, Lr: 0.000300\n", "2020-01-13 06:52:21,582 Epoch 1 Step: 200 Batch Loss: 4.873749 Tokens per Sec: 19679, Lr: 0.000300\n", "2020-01-13 06:52:33,448 Epoch 1 Step: 300 Batch Loss: 4.687356 Tokens per Sec: 19056, Lr: 0.000300\n", "2020-01-13 06:52:45,348 Epoch 1 Step: 400 Batch Loss: 4.470982 Tokens per Sec: 19171, Lr: 0.000300\n", "2020-01-13 06:52:57,153 Epoch 1 Step: 500 Batch Loss: 4.104918 Tokens per Sec: 19329, Lr: 0.000300\n", "2020-01-13 06:53:09,066 Epoch 1 Step: 600 Batch Loss: 4.244883 Tokens per Sec: 19336, Lr: 0.000300\n", "2020-01-13 06:53:20,854 Epoch 1 Step: 700 Batch Loss: 4.276251 Tokens per Sec: 19142, Lr: 0.000300\n", "2020-01-13 06:53:32,723 Epoch 1 Step: 800 Batch Loss: 4.091719 Tokens per Sec: 19576, Lr: 0.000300\n", "2020-01-13 06:53:44,559 Epoch 1 Step: 900 Batch Loss: 3.979263 Tokens per Sec: 19138, Lr: 0.000300\n", "2020-01-13 06:53:56,402 Epoch 1 Step: 1000 Batch Loss: 3.796440 Tokens per Sec: 19813, Lr: 0.000300\n", "2020-01-13 06:54:27,163 Hooray! New best validation result [ppl]!\n", "2020-01-13 06:54:27,164 Saving new checkpoint.\n", "2020-01-13 06:54:28,277 Example #0\n", "2020-01-13 06:54:28,278 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 06:54:28,278 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 06:54:28,278 \tHypothesis: Ọ bụ na ọ bụ na - eme ka ọ na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ihe ndị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị\n", "2020-01-13 06:54:28,278 Example #1\n", "2020-01-13 06:54:28,279 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 06:54:28,279 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 06:54:28,279 \tHypothesis: Olee otú anyị si na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na\n", "2020-01-13 06:54:28,279 Example #2\n", "2020-01-13 06:54:28,280 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 06:54:28,280 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 06:54:28,280 \tHypothesis: Ọ bụ ezie na ọ bụ “ Jehova na - eme ka ọ na - eme ka ọ na - eme ka ọ na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na - eme ka ha na -\n", "2020-01-13 06:54:28,280 Example #3\n", "2020-01-13 06:54:28,281 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 06:54:28,281 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 06:54:28,281 \tHypothesis: Ọ bụ na ọ bụ na - eme ka ọ bụ na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ka anyị na - eme ihe ndị na - eme ka anyị na - eme ka anyị na - eme ihe ndị na - eme .\n", "2020-01-13 06:54:28,281 Validation result (greedy) at epoch 1, step 1000: bleu: 0.83, loss: 110403.1953, ppl: 44.3957, duration: 31.8791s\n", "2020-01-13 06:54:40,081 Epoch 1 Step: 1100 Batch Loss: 3.934394 Tokens per Sec: 19293, Lr: 0.000300\n", "2020-01-13 06:54:51,871 Epoch 1 Step: 1200 Batch Loss: 3.621706 Tokens per Sec: 19430, Lr: 0.000300\n", "2020-01-13 06:55:03,593 Epoch 1 Step: 1300 Batch Loss: 4.117544 Tokens per Sec: 19598, Lr: 0.000300\n", "2020-01-13 06:55:15,336 Epoch 1 Step: 1400 Batch Loss: 3.317157 Tokens per Sec: 19132, Lr: 0.000300\n", "2020-01-13 06:55:27,007 Epoch 1 Step: 1500 Batch Loss: 3.548676 Tokens per Sec: 19401, Lr: 0.000300\n", "2020-01-13 06:55:38,768 Epoch 1 Step: 1600 Batch Loss: 3.603503 Tokens per Sec: 19433, Lr: 0.000300\n", "2020-01-13 06:55:50,733 Epoch 1 Step: 1700 Batch Loss: 3.715034 Tokens per Sec: 19322, Lr: 0.000300\n", "2020-01-13 06:56:03,037 Epoch 1 Step: 1800 Batch Loss: 3.250293 Tokens per Sec: 18726, Lr: 0.000300\n", "2020-01-13 06:56:14,756 Epoch 1 Step: 1900 Batch Loss: 3.460816 Tokens per Sec: 19419, Lr: 0.000300\n", "2020-01-13 06:56:26,789 Epoch 1 Step: 2000 Batch Loss: 2.959790 Tokens per Sec: 18908, Lr: 0.000300\n", "2020-01-13 06:56:57,238 Hooray! New best validation result [ppl]!\n", "2020-01-13 06:56:57,238 Saving new checkpoint.\n", "2020-01-13 06:56:58,409 Example #0\n", "2020-01-13 06:56:58,410 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 06:56:58,410 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 06:56:58,410 \tHypothesis: Ọ bụ ezie na anyị na - eme ka anyị na - eme ihe ndị na - eme ka anyị nwee ike ịna - eme ka anyị nwee ike ịna - eme ihe .\n", "2020-01-13 06:56:58,410 Example #1\n", "2020-01-13 06:56:58,410 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 06:56:58,411 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 06:56:58,411 \tHypothesis: Gịnị ka ihe ndị na - eme ka ha nwee ike ime ka ha nwee ike ime mmụọ ozi ọma ?\n", "2020-01-13 06:56:58,411 Example #2\n", "2020-01-13 06:56:58,411 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 06:56:58,411 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 06:56:58,411 \tHypothesis: Ha na - eme ka ndị na - eso ụzọ ha na - eme ihe ndị a na - eme ka ha nwee ike ịna - eme ihe ndị a na - eme ka ha nwee ike ịna - eme ihe .\n", "2020-01-13 06:56:58,411 Example #3\n", "2020-01-13 06:56:58,411 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 06:56:58,411 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 06:56:58,412 \tHypothesis: Nke a bụ na ọ bụ Chineke na - eme ka Chineke nwee ike ịna - eme ihe .\n", "2020-01-13 06:56:58,412 Validation result (greedy) at epoch 1, step 2000: bleu: 4.45, loss: 92956.3047, ppl: 24.3789, duration: 31.6222s\n", "2020-01-13 06:57:10,124 Epoch 1 Step: 2100 Batch Loss: 3.264797 Tokens per Sec: 19321, Lr: 0.000300\n", "2020-01-13 06:57:22,014 Epoch 1 Step: 2200 Batch Loss: 3.049244 Tokens per Sec: 19671, Lr: 0.000300\n", "2020-01-13 06:57:33,477 Epoch 1 Step: 2300 Batch Loss: 3.175494 Tokens per Sec: 19387, Lr: 0.000300\n", "2020-01-13 06:57:45,120 Epoch 1 Step: 2400 Batch Loss: 3.347987 Tokens per Sec: 19968, Lr: 0.000300\n", "2020-01-13 06:57:56,700 Epoch 1 Step: 2500 Batch Loss: 3.326655 Tokens per Sec: 19922, Lr: 0.000300\n", "2020-01-13 06:58:08,392 Epoch 1 Step: 2600 Batch Loss: 3.057193 Tokens per Sec: 20248, Lr: 0.000300\n", "2020-01-13 06:58:19,982 Epoch 1 Step: 2700 Batch Loss: 3.004089 Tokens per Sec: 19763, Lr: 0.000300\n", "2020-01-13 06:58:31,620 Epoch 1 Step: 2800 Batch Loss: 3.054966 Tokens per Sec: 19893, Lr: 0.000300\n", "2020-01-13 06:58:43,154 Epoch 1 Step: 2900 Batch Loss: 3.352833 Tokens per Sec: 20334, Lr: 0.000300\n", "2020-01-13 06:58:54,695 Epoch 1 Step: 3000 Batch Loss: 3.285932 Tokens per Sec: 19541, Lr: 0.000300\n", "2020-01-13 06:59:24,973 Hooray! New best validation result [ppl]!\n", "2020-01-13 06:59:24,973 Saving new checkpoint.\n", "2020-01-13 06:59:26,092 Example #0\n", "2020-01-13 06:59:26,093 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 06:59:26,093 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 06:59:26,093 \tHypothesis: Ọ bụ ezie na anyị hụrụ Nna Chineke n’anya , anyị na - eme ka anyị nwee ike ịna - eme ihe ọ bụla anyị na - eme .\n", "2020-01-13 06:59:26,093 Example #1\n", "2020-01-13 06:59:26,094 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 06:59:26,094 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 06:59:26,094 \tHypothesis: Gịnị ka anyị kwesịrị ime ka ndị na - eto eto eto eto na - eme ka ha nwee ike ime ihe ndị a na - eme ?\n", "2020-01-13 06:59:26,094 Example #2\n", "2020-01-13 06:59:26,094 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 06:59:26,094 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 06:59:26,094 \tHypothesis: Ha na - eme ka ndị na - eso ụzọ ya na - eso ụzọ Jizọs , bụ́ ndị na - eso ụzọ ya “ ndị na - eso ụzọ ” ka ndị nkwusa Alaeze ahụ na - eso ụzọ ya .\n", "2020-01-13 06:59:26,094 Example #3\n", "2020-01-13 06:59:26,095 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 06:59:26,095 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 06:59:26,095 \tHypothesis: Nke mbụ bụ na e nwere ihe karịrị mmadụ iri abụọ na - eme .\n", "2020-01-13 06:59:26,095 Validation result (greedy) at epoch 1, step 3000: bleu: 6.68, loss: 83568.3672, ppl: 17.6577, duration: 31.3992s\n", "2020-01-13 06:59:38,054 Epoch 1 Step: 3100 Batch Loss: 3.089072 Tokens per Sec: 19459, Lr: 0.000300\n", "2020-01-13 06:59:49,638 Epoch 1 Step: 3200 Batch Loss: 2.827679 Tokens per Sec: 19718, Lr: 0.000300\n", "2020-01-13 07:00:01,288 Epoch 1 Step: 3300 Batch Loss: 2.766825 Tokens per Sec: 19208, Lr: 0.000300\n", "2020-01-13 07:00:13,052 Epoch 1 Step: 3400 Batch Loss: 3.079154 Tokens per Sec: 19890, Lr: 0.000300\n", "2020-01-13 07:00:24,713 Epoch 1 Step: 3500 Batch Loss: 2.725157 Tokens per Sec: 19599, Lr: 0.000300\n", "2020-01-13 07:00:36,405 Epoch 1 Step: 3600 Batch Loss: 3.270761 Tokens per Sec: 19694, Lr: 0.000300\n", "2020-01-13 07:00:48,033 Epoch 1 Step: 3700 Batch Loss: 3.187340 Tokens per Sec: 19634, Lr: 0.000300\n", "2020-01-13 07:00:59,694 Epoch 1 Step: 3800 Batch Loss: 2.761476 Tokens per Sec: 20028, Lr: 0.000300\n", "2020-01-13 07:01:11,314 Epoch 1 Step: 3900 Batch Loss: 2.561034 Tokens per Sec: 19488, Lr: 0.000300\n", "2020-01-13 07:01:22,978 Epoch 1 Step: 4000 Batch Loss: 2.938458 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 07:01:53,329 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:01:53,330 Saving new checkpoint.\n", "2020-01-13 07:01:54,443 Example #0\n", "2020-01-13 07:01:54,444 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:01:54,444 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:01:54,444 \tHypothesis: Anyị na - eme ka anyị na - eme ka Nna anyị na - achị Isi na - enwe obi ụtọ .\n", "2020-01-13 07:01:54,445 Example #1\n", "2020-01-13 07:01:54,445 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:01:54,445 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:01:54,445 \tHypothesis: Olee ihe ndị na - ekwesịghị ime ka alụmdi na nwunye na nwunye na - enwe ike ime ka ha na - enwe obi ụtọ ?\n", "2020-01-13 07:01:54,446 Example #2\n", "2020-01-13 07:01:54,446 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:01:54,446 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:01:54,446 \tHypothesis: Ha na - eso ụzọ Jizọs na - enye ndị na - eso ụzọ ya aka , ha na - eme ka ha na - ekwusa ozi ọma Alaeze ahụ .\n", "2020-01-13 07:01:54,446 Example #3\n", "2020-01-13 07:01:54,447 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:01:54,447 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:01:54,447 \tHypothesis: Nke ahụ bụ ihe atọ Chineke ụtọ bụ na ọ bụ Chineke ga - eme ka mmadụ ghara ime ihe niile .\n", "2020-01-13 07:01:54,447 Validation result (greedy) at epoch 1, step 4000: bleu: 8.67, loss: 77520.8125, ppl: 14.3449, duration: 31.4691s\n", "2020-01-13 07:02:06,423 Epoch 1 Step: 4100 Batch Loss: 2.941437 Tokens per Sec: 19373, Lr: 0.000300\n", "2020-01-13 07:02:18,207 Epoch 1 Step: 4200 Batch Loss: 2.804724 Tokens per Sec: 19507, Lr: 0.000300\n", "2020-01-13 07:02:29,967 Epoch 1 Step: 4300 Batch Loss: 2.695459 Tokens per Sec: 19443, Lr: 0.000300\n", "2020-01-13 07:02:41,658 Epoch 1 Step: 4400 Batch Loss: 2.610480 Tokens per Sec: 19330, Lr: 0.000300\n", "2020-01-13 07:02:53,366 Epoch 1 Step: 4500 Batch Loss: 2.844131 Tokens per Sec: 19475, Lr: 0.000300\n", "2020-01-13 07:03:05,058 Epoch 1 Step: 4600 Batch Loss: 2.261729 Tokens per Sec: 19498, Lr: 0.000300\n", "2020-01-13 07:03:16,691 Epoch 1 Step: 4700 Batch Loss: 2.864403 Tokens per Sec: 19409, Lr: 0.000300\n", "2020-01-13 07:03:28,359 Epoch 1 Step: 4800 Batch Loss: 2.722743 Tokens per Sec: 19794, Lr: 0.000300\n", "2020-01-13 07:03:40,054 Epoch 1 Step: 4900 Batch Loss: 2.619606 Tokens per Sec: 19542, Lr: 0.000300\n", "2020-01-13 07:03:51,840 Epoch 1 Step: 5000 Batch Loss: 2.998853 Tokens per Sec: 19997, Lr: 0.000300\n", "2020-01-13 07:04:22,421 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:04:22,422 Saving new checkpoint.\n", "2020-01-13 07:04:23,536 Example #0\n", "2020-01-13 07:04:23,537 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:04:23,537 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:04:23,537 \tHypothesis: Anyị na - eme ka Nna anyị nke eluigwe na Nna anyị nke eluigwe na ndị na - ahụ n’anya na - eme ka anyị nwee ike ime ihe dị mma .\n", "2020-01-13 07:04:23,537 Example #1\n", "2020-01-13 07:04:23,537 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:04:23,537 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:04:23,537 \tHypothesis: Gịnị ka mkpa ime iji nwee ike ime ka alụmdi na nwunye na nwunye na - eme ihe Setan kwuru ?\n", "2020-01-13 07:04:23,538 Example #2\n", "2020-01-13 07:04:23,538 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:04:23,538 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:04:23,538 \tHypothesis: Ha na - eguzosi ike n’ezi ihe , ụmụnna ndị na - efe Chineke , bụ́ ndị na - eso ụzọ Kraịst , na - ekwusa ozi ọma .\n", "2020-01-13 07:04:23,538 Example #3\n", "2020-01-13 07:04:23,539 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:04:23,539 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:04:23,539 \tHypothesis: Nke abụọ bụ ihe abụọ Chineke mere ka ọ ghara ime .\n", "2020-01-13 07:04:23,539 Validation result (greedy) at epoch 1, step 5000: bleu: 11.28, loss: 73115.9141, ppl: 12.3303, duration: 31.6983s\n", "2020-01-13 07:04:35,619 Epoch 1: total training loss 17055.82\n", "2020-01-13 07:04:35,620 EPOCH 2\n", "2020-01-13 07:04:36,284 Epoch 2 Step: 5100 Batch Loss: 2.251153 Tokens per Sec: 2564, Lr: 0.000300\n", "2020-01-13 07:04:48,026 Epoch 2 Step: 5200 Batch Loss: 2.607610 Tokens per Sec: 19508, Lr: 0.000300\n", "2020-01-13 07:04:59,759 Epoch 2 Step: 5300 Batch Loss: 3.039675 Tokens per Sec: 19386, Lr: 0.000300\n", "2020-01-13 07:05:11,605 Epoch 2 Step: 5400 Batch Loss: 2.318698 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-13 07:05:23,298 Epoch 2 Step: 5500 Batch Loss: 2.621406 Tokens per Sec: 19712, Lr: 0.000300\n", "2020-01-13 07:05:35,001 Epoch 2 Step: 5600 Batch Loss: 2.516497 Tokens per Sec: 19732, Lr: 0.000300\n", "2020-01-13 07:05:46,691 Epoch 2 Step: 5700 Batch Loss: 2.321854 Tokens per Sec: 19806, Lr: 0.000300\n", "2020-01-13 07:05:58,301 Epoch 2 Step: 5800 Batch Loss: 2.633109 Tokens per Sec: 19732, Lr: 0.000300\n", "2020-01-13 07:06:09,942 Epoch 2 Step: 5900 Batch Loss: 2.734158 Tokens per Sec: 19649, Lr: 0.000300\n", "2020-01-13 07:06:21,525 Epoch 2 Step: 6000 Batch Loss: 2.502205 Tokens per Sec: 19326, Lr: 0.000300\n", "2020-01-13 07:06:51,897 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:06:51,898 Saving new checkpoint.\n", "2020-01-13 07:06:53,103 Example #0\n", "2020-01-13 07:06:53,104 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:06:53,104 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:06:53,105 \tHypothesis: Ịhụnanya anyị nwere n’ebe Nna anyị nke eluigwe nọ na Nna anyị nke eluigwe na - ahụ n’anya , na - emekwa ka anyị nwee ike inwe mmetụta dị oké mkpa .\n", "2020-01-13 07:06:53,105 Example #1\n", "2020-01-13 07:06:53,105 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:06:53,106 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:06:53,106 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ike ime ka alụmdi na nwunye na nwunye Setan na - eme ihe ndị a na - eme ?\n", "2020-01-13 07:06:53,106 Example #2\n", "2020-01-13 07:06:53,106 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:06:53,107 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:06:53,107 \tHypothesis: Ha na - efe ndị enyi Kraịst , bụ́ ndị na - ekwesị ntụkwasị obi , na - enye aka ikwusa ozi ọma a “ alaeze ” nke alaeze a .\n", "2020-01-13 07:06:53,107 Example #3\n", "2020-01-13 07:06:53,107 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:06:53,107 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:06:53,108 \tHypothesis: Nke abụọ bụ ihe mgbaru ọsọ nke Chineke na - eme ka o nwee ike ime .\n", "2020-01-13 07:06:53,108 Validation result (greedy) at epoch 2, step 6000: bleu: 12.26, loss: 69396.6797, ppl: 10.8512, duration: 31.5826s\n", "2020-01-13 07:07:04,972 Epoch 2 Step: 6100 Batch Loss: 2.706860 Tokens per Sec: 19327, Lr: 0.000300\n", "2020-01-13 07:07:16,608 Epoch 2 Step: 6200 Batch Loss: 2.585028 Tokens per Sec: 20090, Lr: 0.000300\n", "2020-01-13 07:07:27,965 Epoch 2 Step: 6300 Batch Loss: 2.937080 Tokens per Sec: 19428, Lr: 0.000300\n", "2020-01-13 07:07:39,470 Epoch 2 Step: 6400 Batch Loss: 2.354944 Tokens per Sec: 19909, Lr: 0.000300\n", "2020-01-13 07:07:51,131 Epoch 2 Step: 6500 Batch Loss: 2.598145 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 07:08:02,660 Epoch 2 Step: 6600 Batch Loss: 2.709282 Tokens per Sec: 20043, Lr: 0.000300\n", "2020-01-13 07:08:14,320 Epoch 2 Step: 6700 Batch Loss: 2.165907 Tokens per Sec: 19596, Lr: 0.000300\n", "2020-01-13 07:08:26,036 Epoch 2 Step: 6800 Batch Loss: 2.438435 Tokens per Sec: 20211, Lr: 0.000300\n", "2020-01-13 07:08:37,635 Epoch 2 Step: 6900 Batch Loss: 2.602139 Tokens per Sec: 19616, Lr: 0.000300\n", "2020-01-13 07:08:49,268 Epoch 2 Step: 7000 Batch Loss: 2.468247 Tokens per Sec: 19695, Lr: 0.000300\n", "2020-01-13 07:09:19,680 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:09:19,680 Saving new checkpoint.\n", "2020-01-13 07:09:20,845 Example #0\n", "2020-01-13 07:09:20,845 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:09:20,846 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:09:20,846 \tHypothesis: Ịhụnanya na - egosi na anyị hụrụ Nna anyị nke eluigwe n’anya na ndị hụrụ anyị n’anya n’anya , na - emekwa ka anyị nwee mmetụta dị ukwuu .\n", "2020-01-13 07:09:20,846 Example #1\n", "2020-01-13 07:09:20,846 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:09:20,846 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:09:20,846 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ọganihu ime mkpebi ime mmụọ nke ime mmụọ nke iji mezuo nzube nke nzube nke nzube nke nzube nke nzube nke ime ihe ?\n", "2020-01-13 07:09:20,846 Example #2\n", "2020-01-13 07:09:20,847 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:09:20,847 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:09:20,847 \tHypothesis: Ha na - eguzosi ike n’ihe banyere ụmụnna Kraịst , na - enye aka iguzosi ike n’ihe ndị dị mkpa nke “ ozi ọma ” a na - ekwusa ozi ọma a .\n", "2020-01-13 07:09:20,847 Example #3\n", "2020-01-13 07:09:20,847 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:09:20,847 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:09:20,847 \tHypothesis: Nke abụọ bụ ihe abụọ Chineke mere ka o doo anya .\n", "2020-01-13 07:09:20,847 Validation result (greedy) at epoch 2, step 7000: bleu: 13.62, loss: 66300.9688, ppl: 9.7563, duration: 31.5792s\n", "2020-01-13 07:09:32,826 Epoch 2 Step: 7100 Batch Loss: 2.310264 Tokens per Sec: 19315, Lr: 0.000300\n", "2020-01-13 07:09:44,306 Epoch 2 Step: 7200 Batch Loss: 2.419443 Tokens per Sec: 19675, Lr: 0.000300\n", "2020-01-13 07:09:55,967 Epoch 2 Step: 7300 Batch Loss: 2.462052 Tokens per Sec: 19788, Lr: 0.000300\n", "2020-01-13 07:10:07,495 Epoch 2 Step: 7400 Batch Loss: 2.473745 Tokens per Sec: 19448, Lr: 0.000300\n", "2020-01-13 07:10:19,080 Epoch 2 Step: 7500 Batch Loss: 2.515406 Tokens per Sec: 19644, Lr: 0.000300\n", "2020-01-13 07:10:30,767 Epoch 2 Step: 7600 Batch Loss: 2.501818 Tokens per Sec: 19257, Lr: 0.000300\n", "2020-01-13 07:10:42,318 Epoch 2 Step: 7700 Batch Loss: 2.751098 Tokens per Sec: 19863, Lr: 0.000300\n", "2020-01-13 07:10:54,004 Epoch 2 Step: 7800 Batch Loss: 2.417836 Tokens per Sec: 19855, Lr: 0.000300\n", "2020-01-13 07:11:05,580 Epoch 2 Step: 7900 Batch Loss: 2.498677 Tokens per Sec: 19312, Lr: 0.000300\n", "2020-01-13 07:11:17,368 Epoch 2 Step: 8000 Batch Loss: 2.156312 Tokens per Sec: 19966, Lr: 0.000300\n", "2020-01-13 07:11:47,912 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:11:47,912 Saving new checkpoint.\n", "2020-01-13 07:11:49,039 Example #0\n", "2020-01-13 07:11:49,040 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:11:49,041 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:11:49,041 \tHypothesis: Ịghọta na anyị nwere Nna anyị nke eluigwe na - ahụ n’anya nakwa na anyị na - enwe mmetụta dị oké mkpa .\n", "2020-01-13 07:11:49,041 Example #1\n", "2020-01-13 07:11:49,041 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:11:49,041 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:11:49,042 \tHypothesis: Gịnị ka anyị kwesịrị ime iji mee ka alụmdi na nwunye ghara ime ihe ịga nke ọma n’ọmụmụ ihe Setan na - eme ?\n", "2020-01-13 07:11:49,042 Example #2\n", "2020-01-13 07:11:49,042 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:11:49,042 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:11:49,042 \tHypothesis: Ha na - anọgide na - eguzosi ike n’ezi ihe Kraịst , na - enye aka n’ọrụ nkwusa a “ ozi ọma ” nke alaeze a na - ekwusa ozi ọma .\n", "2020-01-13 07:11:49,042 Example #3\n", "2020-01-13 07:11:49,043 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:11:49,043 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:11:49,043 \tHypothesis: Nke ahụ bụ ihe abụọ Chineke mere ka anyị ghara ịna - eme .\n", "2020-01-13 07:11:49,043 Validation result (greedy) at epoch 2, step 8000: bleu: 15.65, loss: 63550.6367, ppl: 8.8766, duration: 31.6748s\n", "2020-01-13 07:12:01,271 Epoch 2 Step: 8100 Batch Loss: 3.044800 Tokens per Sec: 19217, Lr: 0.000300\n", "2020-01-13 07:12:12,810 Epoch 2 Step: 8200 Batch Loss: 2.256365 Tokens per Sec: 19414, Lr: 0.000300\n", "2020-01-13 07:12:24,506 Epoch 2 Step: 8300 Batch Loss: 2.505027 Tokens per Sec: 19664, Lr: 0.000300\n", "2020-01-13 07:12:36,254 Epoch 2 Step: 8400 Batch Loss: 2.459109 Tokens per Sec: 19568, Lr: 0.000300\n", "2020-01-13 07:12:47,894 Epoch 2 Step: 8500 Batch Loss: 2.335111 Tokens per Sec: 19372, Lr: 0.000300\n", "2020-01-13 07:12:59,468 Epoch 2 Step: 8600 Batch Loss: 2.222121 Tokens per Sec: 19825, Lr: 0.000300\n", "2020-01-13 07:13:11,067 Epoch 2 Step: 8700 Batch Loss: 2.372968 Tokens per Sec: 19559, Lr: 0.000300\n", "2020-01-13 07:13:22,688 Epoch 2 Step: 8800 Batch Loss: 2.112984 Tokens per Sec: 19855, Lr: 0.000300\n", "2020-01-13 07:13:34,258 Epoch 2 Step: 8900 Batch Loss: 2.337503 Tokens per Sec: 18988, Lr: 0.000300\n", "2020-01-13 07:13:45,945 Epoch 2 Step: 9000 Batch Loss: 2.567699 Tokens per Sec: 19575, Lr: 0.000300\n", "2020-01-13 07:14:16,398 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:14:16,399 Saving new checkpoint.\n", "2020-01-13 07:14:17,545 Example #0\n", "2020-01-13 07:14:17,547 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:14:17,547 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:14:17,547 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na - ahụ n’anya na - elekọta anyị dị oké mkpa ka anyị na - echegbu onwe anyị .\n", "2020-01-13 07:14:17,547 Example #1\n", "2020-01-13 07:14:17,548 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:14:17,548 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:14:17,548 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ọganihu nke alụmdi na nwunye ime ihe Setan na - eme iji mezuo nzube ya ?\n", "2020-01-13 07:14:17,548 Example #2\n", "2020-01-13 07:14:17,548 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:14:17,548 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:14:17,548 \tHypothesis: Ha na - agbalịsi ike na - eguzosi ike n’ezi ihe , na - enye ndụmọdụ ndị Kraịst na - enye aka n’ọrụ nkwusa a “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:14:17,548 Example #3\n", "2020-01-13 07:14:17,549 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:14:17,549 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:14:17,549 \tHypothesis: Nke abụọ bụ na ihe a na - eme ka anyị ghara ịna - eme ihe Chineke chọrọ .\n", "2020-01-13 07:14:17,549 Validation result (greedy) at epoch 2, step 9000: bleu: 16.99, loss: 61479.9883, ppl: 8.2671, duration: 31.6039s\n", "2020-01-13 07:14:29,524 Epoch 2 Step: 9100 Batch Loss: 2.506348 Tokens per Sec: 19288, Lr: 0.000300\n", "2020-01-13 07:14:41,168 Epoch 2 Step: 9200 Batch Loss: 2.351302 Tokens per Sec: 19640, Lr: 0.000300\n", "2020-01-13 07:14:52,704 Epoch 2 Step: 9300 Batch Loss: 2.158693 Tokens per Sec: 20143, Lr: 0.000300\n", "2020-01-13 07:15:04,307 Epoch 2 Step: 9400 Batch Loss: 2.165595 Tokens per Sec: 19522, Lr: 0.000300\n", "2020-01-13 07:15:16,125 Epoch 2 Step: 9500 Batch Loss: 2.288202 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-13 07:15:27,615 Epoch 2 Step: 9600 Batch Loss: 2.227623 Tokens per Sec: 19304, Lr: 0.000300\n", "2020-01-13 07:15:39,377 Epoch 2 Step: 9700 Batch Loss: 1.948694 Tokens per Sec: 19575, Lr: 0.000300\n", "2020-01-13 07:15:51,069 Epoch 2 Step: 9800 Batch Loss: 2.407137 Tokens per Sec: 19508, Lr: 0.000300\n", "2020-01-13 07:16:02,730 Epoch 2 Step: 9900 Batch Loss: 2.280956 Tokens per Sec: 19947, Lr: 0.000300\n", "2020-01-13 07:16:14,391 Epoch 2 Step: 10000 Batch Loss: 1.948782 Tokens per Sec: 19733, Lr: 0.000300\n", "2020-01-13 07:16:44,565 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:16:44,565 Saving new checkpoint.\n", "2020-01-13 07:16:45,727 Example #0\n", "2020-01-13 07:16:45,727 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:16:45,728 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:16:45,728 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na - ahụ n’anya na - elekọta anyị dị oké mkpa ka anyị na - echegbu onwe anyị .\n", "2020-01-13 07:16:45,728 Example #1\n", "2020-01-13 07:16:45,728 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:16:45,729 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:16:45,729 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ike ime ka alụmdi na nwunye na - enwe ọganihu ime ihe ịga nke ọma banyere mgbalị Setan na - eme ka e nwee nzube ?\n", "2020-01-13 07:16:45,729 Example #2\n", "2020-01-13 07:16:45,730 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:16:45,730 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:16:45,730 \tHypothesis: Ha na - aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a na - eme ka “ ozi ọma nke alaeze ” nke mba nile na - ekwusa ozi ọma .\n", "2020-01-13 07:16:45,730 Example #3\n", "2020-01-13 07:16:45,730 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:16:45,731 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:16:45,731 \tHypothesis: Nke abụọ bụ na anyị ga - eji aka Chineke nyere anyị aka .\n", "2020-01-13 07:16:45,731 Validation result (greedy) at epoch 2, step 10000: bleu: 17.48, loss: 60167.5156, ppl: 7.9026, duration: 31.3396s\n", "2020-01-13 07:16:57,470 Epoch 2 Step: 10100 Batch Loss: 2.185134 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 07:17:08,976 Epoch 2 Step: 10200 Batch Loss: 2.000452 Tokens per Sec: 19629, Lr: 0.000300\n", "2020-01-13 07:17:10,041 Epoch 2: total training loss 12414.82\n", "2020-01-13 07:17:10,041 EPOCH 3\n", "2020-01-13 07:17:21,095 Epoch 3 Step: 10300 Batch Loss: 2.734541 Tokens per Sec: 18915, Lr: 0.000300\n", "2020-01-13 07:17:32,490 Epoch 3 Step: 10400 Batch Loss: 2.129505 Tokens per Sec: 20111, Lr: 0.000300\n", "2020-01-13 07:17:43,979 Epoch 3 Step: 10500 Batch Loss: 2.533831 Tokens per Sec: 20115, Lr: 0.000300\n", "2020-01-13 07:17:55,468 Epoch 3 Step: 10600 Batch Loss: 2.085669 Tokens per Sec: 20091, Lr: 0.000300\n", "2020-01-13 07:18:06,990 Epoch 3 Step: 10700 Batch Loss: 2.272239 Tokens per Sec: 20189, Lr: 0.000300\n", "2020-01-13 07:18:18,578 Epoch 3 Step: 10800 Batch Loss: 2.342873 Tokens per Sec: 20123, Lr: 0.000300\n", "2020-01-13 07:18:30,072 Epoch 3 Step: 10900 Batch Loss: 2.254370 Tokens per Sec: 19625, Lr: 0.000300\n", "2020-01-13 07:18:41,559 Epoch 3 Step: 11000 Batch Loss: 2.270138 Tokens per Sec: 19496, Lr: 0.000300\n", "2020-01-13 07:19:11,882 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:19:11,883 Saving new checkpoint.\n", "2020-01-13 07:19:13,082 Example #0\n", "2020-01-13 07:19:13,083 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:19:13,083 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:19:13,083 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na ndị hụrụ anyị n’anya ma na - echebara anyị echiche dị oké mkpa .\n", "2020-01-13 07:19:13,083 Example #1\n", "2020-01-13 07:19:13,084 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:19:13,084 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:19:13,084 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ọganihu ime ihe ịga nke ọma n’alụmdi na nwunye ime mmụọ iji ghọta na e meela ndokwa ahụ ?\n", "2020-01-13 07:19:13,084 Example #2\n", "2020-01-13 07:19:13,085 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:19:13,085 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:19:13,085 \tHypothesis: Ha na - aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a na - ekwusa “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:19:13,085 Example #3\n", "2020-01-13 07:19:13,085 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:19:13,086 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:19:13,086 \tHypothesis: Nke ahụ bụ ihe abụọ na - eme ka anyị ghara ịna - eme ihe Chineke kwuru .\n", "2020-01-13 07:19:13,086 Validation result (greedy) at epoch 3, step 11000: bleu: 18.18, loss: 57920.7305, ppl: 7.3155, duration: 31.5268s\n", "2020-01-13 07:19:25,125 Epoch 3 Step: 11100 Batch Loss: 2.262573 Tokens per Sec: 19091, Lr: 0.000300\n", "2020-01-13 07:19:36,675 Epoch 3 Step: 11200 Batch Loss: 1.972786 Tokens per Sec: 20103, Lr: 0.000300\n", "2020-01-13 07:19:48,354 Epoch 3 Step: 11300 Batch Loss: 2.114699 Tokens per Sec: 19821, Lr: 0.000300\n", "2020-01-13 07:19:59,956 Epoch 3 Step: 11400 Batch Loss: 2.172360 Tokens per Sec: 19530, Lr: 0.000300\n", "2020-01-13 07:20:11,570 Epoch 3 Step: 11500 Batch Loss: 2.299949 Tokens per Sec: 19995, Lr: 0.000300\n", "2020-01-13 07:20:23,185 Epoch 3 Step: 11600 Batch Loss: 2.277059 Tokens per Sec: 19658, Lr: 0.000300\n", "2020-01-13 07:20:34,860 Epoch 3 Step: 11700 Batch Loss: 2.360464 Tokens per Sec: 20051, Lr: 0.000300\n", "2020-01-13 07:20:46,576 Epoch 3 Step: 11800 Batch Loss: 2.106323 Tokens per Sec: 19159, Lr: 0.000300\n", "2020-01-13 07:20:58,128 Epoch 3 Step: 11900 Batch Loss: 2.283911 Tokens per Sec: 19611, Lr: 0.000300\n", "2020-01-13 07:21:09,868 Epoch 3 Step: 12000 Batch Loss: 2.255131 Tokens per Sec: 20206, Lr: 0.000300\n", "2020-01-13 07:21:40,181 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:21:40,181 Saving new checkpoint.\n", "2020-01-13 07:21:41,315 Example #0\n", "2020-01-13 07:21:41,316 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:21:41,316 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:21:41,316 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na ndị hụrụ anyị n’anya na - elekọta anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 07:21:41,316 Example #1\n", "2020-01-13 07:21:41,317 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:21:41,317 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:21:41,317 \tHypothesis: Gịnị ka ọ dị mkpa ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke ime mgbalị Setan na - eme iji mezuo ndokwa ahụ ?\n", "2020-01-13 07:21:41,317 Example #2\n", "2020-01-13 07:21:41,319 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:21:41,319 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:21:41,319 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:21:41,320 Example #3\n", "2020-01-13 07:21:41,320 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:21:41,320 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:21:41,320 \tHypothesis: Nke ahụ bụ ihe abụọ na - eme ka anyị ghara ịna - agbaghara Chineke .\n", "2020-01-13 07:21:41,321 Validation result (greedy) at epoch 3, step 12000: bleu: 19.00, loss: 56567.2930, ppl: 6.9831, duration: 31.4518s\n", "2020-01-13 07:21:52,992 Epoch 3 Step: 12100 Batch Loss: 2.355387 Tokens per Sec: 18860, Lr: 0.000300\n", "2020-01-13 07:22:04,655 Epoch 3 Step: 12200 Batch Loss: 2.223334 Tokens per Sec: 19467, Lr: 0.000300\n", "2020-01-13 07:22:16,272 Epoch 3 Step: 12300 Batch Loss: 2.083096 Tokens per Sec: 19773, Lr: 0.000300\n", "2020-01-13 07:22:27,778 Epoch 3 Step: 12400 Batch Loss: 2.127220 Tokens per Sec: 20193, Lr: 0.000300\n", "2020-01-13 07:22:39,503 Epoch 3 Step: 12500 Batch Loss: 2.103256 Tokens per Sec: 19380, Lr: 0.000300\n", "2020-01-13 07:22:51,021 Epoch 3 Step: 12600 Batch Loss: 1.990649 Tokens per Sec: 19498, Lr: 0.000300\n", "2020-01-13 07:23:02,491 Epoch 3 Step: 12700 Batch Loss: 1.910628 Tokens per Sec: 19470, Lr: 0.000300\n", "2020-01-13 07:23:14,107 Epoch 3 Step: 12800 Batch Loss: 2.304687 Tokens per Sec: 20062, Lr: 0.000300\n", "2020-01-13 07:23:25,658 Epoch 3 Step: 12900 Batch Loss: 1.932665 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 07:23:37,192 Epoch 3 Step: 13000 Batch Loss: 2.265559 Tokens per Sec: 19627, Lr: 0.000300\n", "2020-01-13 07:24:07,403 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:24:07,404 Saving new checkpoint.\n", "2020-01-13 07:24:08,550 Example #0\n", "2020-01-13 07:24:08,550 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:24:08,551 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:24:08,551 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na - ahụ n’anya na ilekọta anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 07:24:08,551 Example #1\n", "2020-01-13 07:24:08,551 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:24:08,551 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:24:08,551 \tHypothesis: Gịnị ka ọ dị mkpa ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke ime mgbalị Setan na - eme iji ghọta na e mere ndokwa ahụ ?\n", "2020-01-13 07:24:08,551 Example #2\n", "2020-01-13 07:24:08,552 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:24:08,552 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:24:08,552 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a na - ekwusa “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:24:08,552 Example #3\n", "2020-01-13 07:24:08,552 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:24:08,552 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:24:08,553 \tHypothesis: Nke ahụ bụ ihe abụọ mere Chineke ji gbaghara mmehie .\n", "2020-01-13 07:24:08,553 Validation result (greedy) at epoch 3, step 13000: bleu: 19.48, loss: 55469.2539, ppl: 6.7246, duration: 31.3604s\n", "2020-01-13 07:24:20,409 Epoch 3 Step: 13100 Batch Loss: 2.071655 Tokens per Sec: 19403, Lr: 0.000300\n", "2020-01-13 07:24:32,006 Epoch 3 Step: 13200 Batch Loss: 2.067803 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 07:24:43,672 Epoch 3 Step: 13300 Batch Loss: 2.034264 Tokens per Sec: 20044, Lr: 0.000300\n", "2020-01-13 07:24:55,259 Epoch 3 Step: 13400 Batch Loss: 2.128637 Tokens per Sec: 19561, Lr: 0.000300\n", "2020-01-13 07:25:06,859 Epoch 3 Step: 13500 Batch Loss: 2.018983 Tokens per Sec: 19514, Lr: 0.000300\n", "2020-01-13 07:25:18,581 Epoch 3 Step: 13600 Batch Loss: 2.103355 Tokens per Sec: 20186, Lr: 0.000300\n", "2020-01-13 07:25:30,294 Epoch 3 Step: 13700 Batch Loss: 1.878456 Tokens per Sec: 19881, Lr: 0.000300\n", "2020-01-13 07:25:41,769 Epoch 3 Step: 13800 Batch Loss: 2.312392 Tokens per Sec: 19785, Lr: 0.000300\n", "2020-01-13 07:25:53,400 Epoch 3 Step: 13900 Batch Loss: 2.033758 Tokens per Sec: 19274, Lr: 0.000300\n", "2020-01-13 07:26:04,965 Epoch 3 Step: 14000 Batch Loss: 2.281995 Tokens per Sec: 19414, Lr: 0.000300\n", "2020-01-13 07:26:35,171 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:26:35,172 Saving new checkpoint.\n", "2020-01-13 07:26:36,336 Example #0\n", "2020-01-13 07:26:36,337 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:26:36,337 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:26:36,337 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na - ahụ n’anya na - echebara anyị echiche dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 07:26:36,337 Example #1\n", "2020-01-13 07:26:36,337 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:26:36,337 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:26:36,337 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke ime mgbalị Setan na - eme iji ghọta na e nwere ndokwa ahụ ?\n", "2020-01-13 07:26:36,338 Example #2\n", "2020-01-13 07:26:36,338 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:26:36,338 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:26:36,338 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ọrụ nkwusa a “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:26:36,338 Example #3\n", "2020-01-13 07:26:36,338 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:26:36,339 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:26:36,339 \tHypothesis: Nke ahụ bụ ihe nke abụọ na - eme ka anyị ghara ịna - agbaghara Chineke .\n", "2020-01-13 07:26:36,339 Validation result (greedy) at epoch 3, step 14000: bleu: 19.73, loss: 54584.3047, ppl: 6.5232, duration: 31.3731s\n", "2020-01-13 07:26:48,203 Epoch 3 Step: 14100 Batch Loss: 2.034391 Tokens per Sec: 19082, Lr: 0.000300\n", "2020-01-13 07:26:59,713 Epoch 3 Step: 14200 Batch Loss: 2.109257 Tokens per Sec: 19626, Lr: 0.000300\n", "2020-01-13 07:27:11,337 Epoch 3 Step: 14300 Batch Loss: 2.181047 Tokens per Sec: 19933, Lr: 0.000300\n", "2020-01-13 07:27:22,838 Epoch 3 Step: 14400 Batch Loss: 2.185199 Tokens per Sec: 19676, Lr: 0.000300\n", "2020-01-13 07:27:34,330 Epoch 3 Step: 14500 Batch Loss: 2.291471 Tokens per Sec: 20151, Lr: 0.000300\n", "2020-01-13 07:27:45,897 Epoch 3 Step: 14600 Batch Loss: 2.109737 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-13 07:27:57,403 Epoch 3 Step: 14700 Batch Loss: 2.285527 Tokens per Sec: 19555, Lr: 0.000300\n", "2020-01-13 07:28:09,034 Epoch 3 Step: 14800 Batch Loss: 2.305347 Tokens per Sec: 20018, Lr: 0.000300\n", "2020-01-13 07:28:20,597 Epoch 3 Step: 14900 Batch Loss: 2.026029 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 07:28:32,028 Epoch 3 Step: 15000 Batch Loss: 1.957808 Tokens per Sec: 19811, Lr: 0.000300\n", "2020-01-13 07:29:02,271 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:29:02,272 Saving new checkpoint.\n", "2020-01-13 07:29:03,366 Example #0\n", "2020-01-13 07:29:03,367 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:29:03,367 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:29:03,367 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe na - ahụ n’anya na - elekọta anyị dị oké mkpa n’echegbughị oge .\n", "2020-01-13 07:29:03,367 Example #1\n", "2020-01-13 07:29:03,368 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:29:03,368 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:29:03,368 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye na - eme mgbalị Setan na - eme ka e nwee ike ịghọta na ndokwa ahụ ?\n", "2020-01-13 07:29:03,368 Example #2\n", "2020-01-13 07:29:03,368 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:29:03,369 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:29:03,369 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a “ ozi ọma ” maka ndị mba nile .\n", "2020-01-13 07:29:03,369 Example #3\n", "2020-01-13 07:29:03,369 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:29:03,369 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:29:03,370 \tHypothesis: Nke ahụ bụ ihe abụọ na - eme ka anyị na - agbaghara Chineke .\n", "2020-01-13 07:29:03,370 Validation result (greedy) at epoch 3, step 15000: bleu: 21.19, loss: 53304.8477, ppl: 6.2426, duration: 31.3414s\n", "2020-01-13 07:29:15,315 Epoch 3 Step: 15100 Batch Loss: 2.528919 Tokens per Sec: 19373, Lr: 0.000300\n", "2020-01-13 07:29:26,870 Epoch 3 Step: 15200 Batch Loss: 2.161269 Tokens per Sec: 20113, Lr: 0.000300\n", "2020-01-13 07:29:38,436 Epoch 3 Step: 15300 Batch Loss: 2.819396 Tokens per Sec: 20207, Lr: 0.000300\n", "2020-01-13 07:29:40,233 Epoch 3: total training loss 10858.15\n", "2020-01-13 07:29:40,233 EPOCH 4\n", "2020-01-13 07:29:50,635 Epoch 4 Step: 15400 Batch Loss: 2.048494 Tokens per Sec: 18550, Lr: 0.000300\n", "2020-01-13 07:30:02,138 Epoch 4 Step: 15500 Batch Loss: 2.514994 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-13 07:30:13,656 Epoch 4 Step: 15600 Batch Loss: 1.827113 Tokens per Sec: 19345, Lr: 0.000300\n", "2020-01-13 07:30:25,217 Epoch 4 Step: 15700 Batch Loss: 2.287604 Tokens per Sec: 20505, Lr: 0.000300\n", "2020-01-13 07:30:36,688 Epoch 4 Step: 15800 Batch Loss: 2.325704 Tokens per Sec: 19374, Lr: 0.000300\n", "2020-01-13 07:30:48,245 Epoch 4 Step: 15900 Batch Loss: 2.011280 Tokens per Sec: 20032, Lr: 0.000300\n", "2020-01-13 07:30:59,750 Epoch 4 Step: 16000 Batch Loss: 2.016096 Tokens per Sec: 20229, Lr: 0.000300\n", "2020-01-13 07:31:30,059 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:31:30,060 Saving new checkpoint.\n", "2020-01-13 07:31:31,507 Example #0\n", "2020-01-13 07:31:31,508 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:31:31,508 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:31:31,508 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe bụ́ onye hụrụ anyị n’anya na - elekọta anyị dị oké mkpa n’echegbu onwe anyị .\n", "2020-01-13 07:31:31,508 Example #1\n", "2020-01-13 07:31:31,509 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:31:31,509 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:31:31,509 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye Setan na - eme ka e nwee ihe ịga nke ọma ?\n", "2020-01-13 07:31:31,509 Example #2\n", "2020-01-13 07:31:31,509 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:31:31,509 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:31:31,510 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ụzọ dị mma iji ịnụ ọkụ n’obi na - ekwusa ozi ọma “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 07:31:31,510 Example #3\n", "2020-01-13 07:31:31,510 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:31:31,510 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:31:31,510 \tHypothesis: Nke ahụ bụ ihe nke abụọ na - eme ka anyị ghara ịna - agbaghara Chineke .\n", "2020-01-13 07:31:31,510 Validation result (greedy) at epoch 4, step 16000: bleu: 21.92, loss: 52256.0508, ppl: 6.0217, duration: 31.7596s\n", "2020-01-13 07:31:43,258 Epoch 4 Step: 16100 Batch Loss: 2.077901 Tokens per Sec: 19535, Lr: 0.000300\n", "2020-01-13 07:31:54,954 Epoch 4 Step: 16200 Batch Loss: 1.856937 Tokens per Sec: 19396, Lr: 0.000300\n", "2020-01-13 07:32:06,548 Epoch 4 Step: 16300 Batch Loss: 2.069154 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-13 07:32:18,200 Epoch 4 Step: 16400 Batch Loss: 2.039115 Tokens per Sec: 19999, Lr: 0.000300\n", "2020-01-13 07:32:29,690 Epoch 4 Step: 16500 Batch Loss: 2.034258 Tokens per Sec: 19738, Lr: 0.000300\n", "2020-01-13 07:32:41,189 Epoch 4 Step: 16600 Batch Loss: 1.945633 Tokens per Sec: 19895, Lr: 0.000300\n", "2020-01-13 07:32:52,757 Epoch 4 Step: 16700 Batch Loss: 2.069118 Tokens per Sec: 19462, Lr: 0.000300\n", "2020-01-13 07:33:04,309 Epoch 4 Step: 16800 Batch Loss: 1.887267 Tokens per Sec: 19988, Lr: 0.000300\n", "2020-01-13 07:33:15,837 Epoch 4 Step: 16900 Batch Loss: 2.113515 Tokens per Sec: 19963, Lr: 0.000300\n", "2020-01-13 07:33:27,435 Epoch 4 Step: 17000 Batch Loss: 1.860849 Tokens per Sec: 19958, Lr: 0.000300\n", "2020-01-13 07:33:57,655 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:33:57,655 Saving new checkpoint.\n", "2020-01-13 07:33:58,758 Example #0\n", "2020-01-13 07:33:58,759 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:33:58,759 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:33:58,759 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe bụ́ onye hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa ná nchegbu .\n", "2020-01-13 07:33:58,759 Example #1\n", "2020-01-13 07:33:58,760 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:33:58,760 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:33:58,760 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma ná mgbalị Setan na - eme iji mata ndokwa ahụ ?\n", "2020-01-13 07:33:58,760 Example #2\n", "2020-01-13 07:33:58,760 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:33:58,761 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:33:58,761 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka ime ka ha nwee ike ‘ ozi ọma nke alaeze a ’ n’ihi àmà nye mba nile .\n", "2020-01-13 07:33:58,761 Example #3\n", "2020-01-13 07:33:58,761 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:33:58,761 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:33:58,762 \tHypothesis: Nke ahụ bụ ihe nke abụọ na - eme ka anyị ghara inweta agbaghara Chineke .\n", "2020-01-13 07:33:58,762 Validation result (greedy) at epoch 4, step 17000: bleu: 22.14, loss: 51747.3164, ppl: 5.9174, duration: 31.3261s\n", "2020-01-13 07:34:10,592 Epoch 4 Step: 17100 Batch Loss: 1.748478 Tokens per Sec: 18855, Lr: 0.000300\n", "2020-01-13 07:34:22,117 Epoch 4 Step: 17200 Batch Loss: 1.982343 Tokens per Sec: 19824, Lr: 0.000300\n", "2020-01-13 07:34:33,672 Epoch 4 Step: 17300 Batch Loss: 1.752995 Tokens per Sec: 19997, Lr: 0.000300\n", "2020-01-13 07:34:45,206 Epoch 4 Step: 17400 Batch Loss: 2.044719 Tokens per Sec: 19589, Lr: 0.000300\n", "2020-01-13 07:34:56,793 Epoch 4 Step: 17500 Batch Loss: 2.015209 Tokens per Sec: 19833, Lr: 0.000300\n", "2020-01-13 07:35:08,220 Epoch 4 Step: 17600 Batch Loss: 2.314336 Tokens per Sec: 19713, Lr: 0.000300\n", "2020-01-13 07:35:19,760 Epoch 4 Step: 17700 Batch Loss: 1.744091 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 07:35:31,287 Epoch 4 Step: 17800 Batch Loss: 2.245588 Tokens per Sec: 20245, Lr: 0.000300\n", "2020-01-13 07:35:42,869 Epoch 4 Step: 17900 Batch Loss: 1.792701 Tokens per Sec: 19818, Lr: 0.000300\n", "2020-01-13 07:35:54,373 Epoch 4 Step: 18000 Batch Loss: 2.272522 Tokens per Sec: 19746, Lr: 0.000300\n", "2020-01-13 07:36:24,614 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:36:24,614 Saving new checkpoint.\n", "2020-01-13 07:36:25,733 Example #0\n", "2020-01-13 07:36:25,733 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:36:25,733 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:36:25,733 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa n’echegbu onwe anyị .\n", "2020-01-13 07:36:25,734 Example #1\n", "2020-01-13 07:36:25,734 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:36:25,734 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:36:25,734 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye Setan na - eme ka anyị ghọta na e nwere ndokwa ahụ ?\n", "2020-01-13 07:36:25,734 Example #2\n", "2020-01-13 07:36:25,734 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:36:25,734 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:36:25,735 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ọrụ nkwusa “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:36:25,735 Example #3\n", "2020-01-13 07:36:25,735 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:36:25,735 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:36:25,735 \tHypothesis: Nke a bụ ihe nke abụọ na - eme ka anyị ghara ịgọzi Chineke .\n", "2020-01-13 07:36:25,735 Validation result (greedy) at epoch 4, step 18000: bleu: 22.60, loss: 50969.6133, ppl: 5.7614, duration: 31.3615s\n", "2020-01-13 07:36:37,447 Epoch 4 Step: 18100 Batch Loss: 2.047723 Tokens per Sec: 19194, Lr: 0.000300\n", "2020-01-13 07:36:49,134 Epoch 4 Step: 18200 Batch Loss: 2.173342 Tokens per Sec: 20561, Lr: 0.000300\n", "2020-01-13 07:37:00,724 Epoch 4 Step: 18300 Batch Loss: 1.948215 Tokens per Sec: 19928, Lr: 0.000300\n", "2020-01-13 07:37:12,249 Epoch 4 Step: 18400 Batch Loss: 1.880412 Tokens per Sec: 19611, Lr: 0.000300\n", "2020-01-13 07:37:23,768 Epoch 4 Step: 18500 Batch Loss: 1.938112 Tokens per Sec: 20251, Lr: 0.000300\n", "2020-01-13 07:37:35,349 Epoch 4 Step: 18600 Batch Loss: 1.403156 Tokens per Sec: 19712, Lr: 0.000300\n", "2020-01-13 07:37:46,869 Epoch 4 Step: 18700 Batch Loss: 1.573779 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-13 07:37:58,363 Epoch 4 Step: 18800 Batch Loss: 2.011973 Tokens per Sec: 19746, Lr: 0.000300\n", "2020-01-13 07:38:09,739 Epoch 4 Step: 18900 Batch Loss: 1.607401 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 07:38:21,307 Epoch 4 Step: 19000 Batch Loss: 1.760689 Tokens per Sec: 19839, Lr: 0.000300\n", "2020-01-13 07:38:51,573 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:38:51,573 Saving new checkpoint.\n", "2020-01-13 07:38:53,019 Example #0\n", "2020-01-13 07:38:53,019 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:38:53,020 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:38:53,020 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - elekọta anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 07:38:53,020 Example #1\n", "2020-01-13 07:38:53,020 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:38:53,020 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:38:53,020 \tHypothesis: Gịnị ka ọ dị mkpa ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye Setan iji ghọta na ndokwa ahụ ?\n", "2020-01-13 07:38:53,020 Example #2\n", "2020-01-13 07:38:53,020 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:38:53,021 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:38:53,021 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ dị mma iji mee ka ha nwee ike ‘ ozi ọma nke alaeze ahụ ’ maka mba nile .\n", "2020-01-13 07:38:53,021 Example #3\n", "2020-01-13 07:38:53,021 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:38:53,021 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:38:53,021 \tHypothesis: Nke abụọ bụ na ụra nke abụọ na - eme ka Chineke gbaghara anyị mmehie .\n", "2020-01-13 07:38:53,021 Validation result (greedy) at epoch 4, step 19000: bleu: 22.22, loss: 50282.2812, ppl: 5.6269, duration: 31.7132s\n", "2020-01-13 07:39:04,902 Epoch 4 Step: 19100 Batch Loss: 1.988116 Tokens per Sec: 19505, Lr: 0.000300\n", "2020-01-13 07:39:16,481 Epoch 4 Step: 19200 Batch Loss: 1.778717 Tokens per Sec: 19360, Lr: 0.000300\n", "2020-01-13 07:39:28,165 Epoch 4 Step: 19300 Batch Loss: 2.076974 Tokens per Sec: 20031, Lr: 0.000300\n", "2020-01-13 07:39:39,620 Epoch 4 Step: 19400 Batch Loss: 1.820897 Tokens per Sec: 19862, Lr: 0.000300\n", "2020-01-13 07:39:51,405 Epoch 4 Step: 19500 Batch Loss: 1.895960 Tokens per Sec: 20165, Lr: 0.000300\n", "2020-01-13 07:40:03,003 Epoch 4 Step: 19600 Batch Loss: 1.923284 Tokens per Sec: 19906, Lr: 0.000300\n", "2020-01-13 07:40:14,663 Epoch 4 Step: 19700 Batch Loss: 1.680849 Tokens per Sec: 19753, Lr: 0.000300\n", "2020-01-13 07:40:26,198 Epoch 4 Step: 19800 Batch Loss: 1.846746 Tokens per Sec: 19383, Lr: 0.000300\n", "2020-01-13 07:40:37,731 Epoch 4 Step: 19900 Batch Loss: 2.105209 Tokens per Sec: 19700, Lr: 0.000300\n", "2020-01-13 07:40:49,359 Epoch 4 Step: 20000 Batch Loss: 1.765893 Tokens per Sec: 19737, Lr: 0.000300\n", "2020-01-13 07:41:19,664 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:41:19,665 Saving new checkpoint.\n", "2020-01-13 07:41:20,809 Example #0\n", "2020-01-13 07:41:20,810 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:41:20,810 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:41:20,810 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa n’ichegbu onwe anyị .\n", "2020-01-13 07:41:20,810 Example #1\n", "2020-01-13 07:41:20,811 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:41:20,811 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:41:20,811 \tHypothesis: Gịnị dị mkpa ime ka alụmdi na nwunye na - enwe ihe ịga nke ọma n’imezu mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 07:41:20,811 Example #2\n", "2020-01-13 07:41:20,812 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:41:20,812 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:41:20,812 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye ihe ndị dị oké ọnụ ahịa n’ọrụ nkwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 07:41:20,812 Example #3\n", "2020-01-13 07:41:20,813 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:41:20,813 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:41:20,813 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ na - adabere n’ịnagide mgbaghara Chineke .\n", "2020-01-13 07:41:20,814 Validation result (greedy) at epoch 4, step 20000: bleu: 22.51, loss: 49837.3945, ppl: 5.5415, duration: 31.4541s\n", "2020-01-13 07:41:32,879 Epoch 4 Step: 20100 Batch Loss: 1.817086 Tokens per Sec: 19071, Lr: 0.000300\n", "2020-01-13 07:41:44,538 Epoch 4 Step: 20200 Batch Loss: 1.803999 Tokens per Sec: 19820, Lr: 0.000300\n", "2020-01-13 07:41:56,180 Epoch 4 Step: 20300 Batch Loss: 1.759843 Tokens per Sec: 20168, Lr: 0.000300\n", "2020-01-13 07:42:07,832 Epoch 4 Step: 20400 Batch Loss: 1.955908 Tokens per Sec: 19394, Lr: 0.000300\n", "2020-01-13 07:42:09,771 Epoch 4: total training loss 10006.28\n", "2020-01-13 07:42:09,772 EPOCH 5\n", "2020-01-13 07:42:19,941 Epoch 5 Step: 20500 Batch Loss: 1.806055 Tokens per Sec: 18553, Lr: 0.000300\n", "2020-01-13 07:42:31,531 Epoch 5 Step: 20600 Batch Loss: 1.717348 Tokens per Sec: 20198, Lr: 0.000300\n", "2020-01-13 07:42:43,231 Epoch 5 Step: 20700 Batch Loss: 1.757998 Tokens per Sec: 19525, Lr: 0.000300\n", "2020-01-13 07:42:54,829 Epoch 5 Step: 20800 Batch Loss: 1.906530 Tokens per Sec: 19944, Lr: 0.000300\n", "2020-01-13 07:43:06,336 Epoch 5 Step: 20900 Batch Loss: 1.982442 Tokens per Sec: 19706, Lr: 0.000300\n", "2020-01-13 07:43:18,010 Epoch 5 Step: 21000 Batch Loss: 1.918609 Tokens per Sec: 20012, Lr: 0.000300\n", "2020-01-13 07:43:48,194 Example #0\n", "2020-01-13 07:43:48,195 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:43:48,195 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:43:48,195 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echebara anyị echiche bụ ichegbu onwe anyị .\n", "2020-01-13 07:43:48,195 Example #1\n", "2020-01-13 07:43:48,196 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:43:48,196 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:43:48,196 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye Setan na - eme ka anyị ghọta na ndokwa ahụ bụ ihe ịga nke ọma ?\n", "2020-01-13 07:43:48,196 Example #2\n", "2020-01-13 07:43:48,197 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:43:48,197 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:43:48,197 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ọrụ nkwusa a “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 07:43:48,197 Example #3\n", "2020-01-13 07:43:48,197 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:43:48,197 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:43:48,198 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ na - adabere n’ịnakwere mgbaghara Chineke .\n", "2020-01-13 07:43:48,198 Validation result (greedy) at epoch 5, step 21000: bleu: 22.35, loss: 49994.6523, ppl: 5.5716, duration: 30.1877s\n", "2020-01-13 07:43:59,888 Epoch 5 Step: 21100 Batch Loss: 1.592234 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 07:44:11,443 Epoch 5 Step: 21200 Batch Loss: 2.027478 Tokens per Sec: 19393, Lr: 0.000300\n", "2020-01-13 07:44:22,901 Epoch 5 Step: 21300 Batch Loss: 1.836850 Tokens per Sec: 19925, Lr: 0.000300\n", "2020-01-13 07:44:34,501 Epoch 5 Step: 21400 Batch Loss: 1.840867 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-13 07:44:45,979 Epoch 5 Step: 21500 Batch Loss: 1.659735 Tokens per Sec: 19482, Lr: 0.000300\n", "2020-01-13 07:44:57,545 Epoch 5 Step: 21600 Batch Loss: 2.721128 Tokens per Sec: 19614, Lr: 0.000300\n", "2020-01-13 07:45:09,058 Epoch 5 Step: 21700 Batch Loss: 2.124238 Tokens per Sec: 19817, Lr: 0.000300\n", "2020-01-13 07:45:20,669 Epoch 5 Step: 21800 Batch Loss: 2.027617 Tokens per Sec: 20161, Lr: 0.000300\n", "2020-01-13 07:45:32,142 Epoch 5 Step: 21900 Batch Loss: 1.748344 Tokens per Sec: 19350, Lr: 0.000300\n", "2020-01-13 07:45:43,674 Epoch 5 Step: 22000 Batch Loss: 1.985504 Tokens per Sec: 20006, Lr: 0.000300\n", "2020-01-13 07:46:13,919 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:46:13,919 Saving new checkpoint.\n", "2020-01-13 07:46:15,079 Example #0\n", "2020-01-13 07:46:15,080 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:46:15,080 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:46:15,080 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - elekọta anyị dị oké mkpa n’ileghara nchegbu .\n", "2020-01-13 07:46:15,080 Example #1\n", "2020-01-13 07:46:15,080 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:46:15,080 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:46:15,081 \tHypothesis: Gịnị ka ọ dị mkpa ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye Setan iji ghọta ihe mere e ji mee ndokwa ?\n", "2020-01-13 07:46:15,081 Example #2\n", "2020-01-13 07:46:15,081 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:46:15,081 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:46:15,081 \tHypothesis: Ha aghọwo ndị enyi Kraịst , na - enye aka n’ụzọ dị oké ọnụ ahịa n’ọrụ nkwusa ‘ ozi ọma nke alaeze ahụ ’ maka àmà nye mba nile .\n", "2020-01-13 07:46:15,081 Example #3\n", "2020-01-13 07:46:15,081 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:46:15,081 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:46:15,082 \tHypothesis: Nke abụọ bụ nzọụkwụ nke ịbịa n’ịnakwere mgbaghara Chineke .\n", "2020-01-13 07:46:15,082 Validation result (greedy) at epoch 5, step 22000: bleu: 23.90, loss: 48712.2188, ppl: 5.3314, duration: 31.4074s\n", "2020-01-13 07:46:26,975 Epoch 5 Step: 22100 Batch Loss: 1.830843 Tokens per Sec: 19352, Lr: 0.000300\n", "2020-01-13 07:46:38,431 Epoch 5 Step: 22200 Batch Loss: 2.057324 Tokens per Sec: 19715, Lr: 0.000300\n", "2020-01-13 07:46:50,069 Epoch 5 Step: 22300 Batch Loss: 1.594986 Tokens per Sec: 19630, Lr: 0.000300\n", "2020-01-13 07:47:01,488 Epoch 5 Step: 22400 Batch Loss: 1.898340 Tokens per Sec: 19388, Lr: 0.000300\n", "2020-01-13 07:47:13,029 Epoch 5 Step: 22500 Batch Loss: 1.978525 Tokens per Sec: 19862, Lr: 0.000300\n", "2020-01-13 07:47:24,590 Epoch 5 Step: 22600 Batch Loss: 1.728634 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-13 07:47:36,155 Epoch 5 Step: 22700 Batch Loss: 2.062143 Tokens per Sec: 19885, Lr: 0.000300\n", "2020-01-13 07:47:47,712 Epoch 5 Step: 22800 Batch Loss: 1.672402 Tokens per Sec: 19651, Lr: 0.000300\n", "2020-01-13 07:47:59,105 Epoch 5 Step: 22900 Batch Loss: 2.005260 Tokens per Sec: 19775, Lr: 0.000300\n", "2020-01-13 07:48:10,728 Epoch 5 Step: 23000 Batch Loss: 1.940472 Tokens per Sec: 19692, Lr: 0.000300\n", "2020-01-13 07:48:40,928 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:48:40,928 Saving new checkpoint.\n", "2020-01-13 07:48:42,051 Example #0\n", "2020-01-13 07:48:42,051 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:48:42,051 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:48:42,051 \tHypothesis: Ịmata na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - elekọta anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 07:48:42,051 Example #1\n", "2020-01-13 07:48:42,052 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:48:42,052 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:48:42,052 \tHypothesis: Gịnị ka ọ dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma ná mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 07:48:42,052 Example #2\n", "2020-01-13 07:48:42,052 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:48:42,052 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:48:42,052 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 07:48:42,052 Example #3\n", "2020-01-13 07:48:42,053 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:48:42,053 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:48:42,053 \tHypothesis: Nke abụọ bụ nzọụkwụ nke ịgbaghara Chineke .\n", "2020-01-13 07:48:42,053 Validation result (greedy) at epoch 5, step 23000: bleu: 23.76, loss: 48266.2383, ppl: 5.2503, duration: 31.3243s\n", "2020-01-13 07:48:53,927 Epoch 5 Step: 23100 Batch Loss: 1.903527 Tokens per Sec: 19366, Lr: 0.000300\n", "2020-01-13 07:49:05,443 Epoch 5 Step: 23200 Batch Loss: 2.002834 Tokens per Sec: 19762, Lr: 0.000300\n", "2020-01-13 07:49:17,067 Epoch 5 Step: 23300 Batch Loss: 1.922012 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-13 07:49:28,624 Epoch 5 Step: 23400 Batch Loss: 1.928106 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-13 07:49:40,236 Epoch 5 Step: 23500 Batch Loss: 1.879993 Tokens per Sec: 19881, Lr: 0.000300\n", "2020-01-13 07:49:51,702 Epoch 5 Step: 23600 Batch Loss: 1.895546 Tokens per Sec: 19741, Lr: 0.000300\n", "2020-01-13 07:50:03,257 Epoch 5 Step: 23700 Batch Loss: 1.969533 Tokens per Sec: 20072, Lr: 0.000300\n", "2020-01-13 07:50:14,946 Epoch 5 Step: 23800 Batch Loss: 1.760230 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-13 07:50:26,398 Epoch 5 Step: 23900 Batch Loss: 1.905153 Tokens per Sec: 19587, Lr: 0.000300\n", "2020-01-13 07:50:38,069 Epoch 5 Step: 24000 Batch Loss: 1.908267 Tokens per Sec: 20200, Lr: 0.000300\n", "2020-01-13 07:51:08,277 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:51:08,278 Saving new checkpoint.\n", "2020-01-13 07:51:09,377 Example #0\n", "2020-01-13 07:51:09,379 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:51:09,379 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:51:09,379 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echekwa anyị na - echegbu onwe anyị .\n", "2020-01-13 07:51:09,379 Example #1\n", "2020-01-13 07:51:09,379 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:51:09,379 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:51:09,379 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 07:51:09,379 Example #2\n", "2020-01-13 07:51:09,380 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:51:09,380 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:51:09,380 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ dị ukwuu n’ikwusa “ ozi ọma nke alaeze ” maka mba nile .\n", "2020-01-13 07:51:09,380 Example #3\n", "2020-01-13 07:51:09,380 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:51:09,380 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:51:09,380 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - anabata mgbaghara Chineke .\n", "2020-01-13 07:51:09,381 Validation result (greedy) at epoch 5, step 24000: bleu: 23.99, loss: 47492.0195, ppl: 5.1125, duration: 31.3114s\n", "2020-01-13 07:51:21,226 Epoch 5 Step: 24100 Batch Loss: 1.824531 Tokens per Sec: 19405, Lr: 0.000300\n", "2020-01-13 07:51:32,825 Epoch 5 Step: 24200 Batch Loss: 1.733927 Tokens per Sec: 20021, Lr: 0.000300\n", "2020-01-13 07:51:44,355 Epoch 5 Step: 24300 Batch Loss: 2.076007 Tokens per Sec: 20037, Lr: 0.000300\n", "2020-01-13 07:51:56,092 Epoch 5 Step: 24400 Batch Loss: 1.668231 Tokens per Sec: 19823, Lr: 0.000300\n", "2020-01-13 07:52:07,624 Epoch 5 Step: 24500 Batch Loss: 1.742016 Tokens per Sec: 19422, Lr: 0.000300\n", "2020-01-13 07:52:19,104 Epoch 5 Step: 24600 Batch Loss: 1.864046 Tokens per Sec: 19935, Lr: 0.000300\n", "2020-01-13 07:52:30,698 Epoch 5 Step: 24700 Batch Loss: 2.192243 Tokens per Sec: 19972, Lr: 0.000300\n", "2020-01-13 07:52:42,257 Epoch 5 Step: 24800 Batch Loss: 1.808600 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-13 07:52:53,717 Epoch 5 Step: 24900 Batch Loss: 1.821770 Tokens per Sec: 19848, Lr: 0.000300\n", "2020-01-13 07:53:05,354 Epoch 5 Step: 25000 Batch Loss: 1.790987 Tokens per Sec: 20183, Lr: 0.000300\n", "2020-01-13 07:53:35,565 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:53:35,566 Saving new checkpoint.\n", "2020-01-13 07:53:36,696 Example #0\n", "2020-01-13 07:53:36,696 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:53:36,696 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:53:36,697 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echekwa anyị dị oké mkpa n’ilekọta nchegbu .\n", "2020-01-13 07:53:36,697 Example #1\n", "2020-01-13 07:53:36,697 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:53:36,697 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:53:36,698 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma ná mgbalị Setan iji mata ndokwa ahụ ?\n", "2020-01-13 07:53:36,698 Example #2\n", "2020-01-13 07:53:36,698 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:53:36,698 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:53:36,698 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 07:53:36,699 Example #3\n", "2020-01-13 07:53:36,699 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:53:36,699 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:53:36,699 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịchịkọta agbaghara Chineke .\n", "2020-01-13 07:53:36,700 Validation result (greedy) at epoch 5, step 25000: bleu: 24.36, loss: 47284.9766, ppl: 5.0763, duration: 31.3447s\n", "2020-01-13 07:53:48,482 Epoch 5 Step: 25100 Batch Loss: 1.771366 Tokens per Sec: 19371, Lr: 0.000300\n", "2020-01-13 07:54:00,210 Epoch 5 Step: 25200 Batch Loss: 1.866194 Tokens per Sec: 19336, Lr: 0.000300\n", "2020-01-13 07:54:11,805 Epoch 5 Step: 25300 Batch Loss: 1.470294 Tokens per Sec: 19892, Lr: 0.000300\n", "2020-01-13 07:54:23,432 Epoch 5 Step: 25400 Batch Loss: 1.802495 Tokens per Sec: 20083, Lr: 0.000300\n", "2020-01-13 07:54:34,914 Epoch 5 Step: 25500 Batch Loss: 1.745314 Tokens per Sec: 19579, Lr: 0.000300\n", "2020-01-13 07:54:37,553 Epoch 5: total training loss 9457.91\n", "2020-01-13 07:54:37,554 EPOCH 6\n", "2020-01-13 07:54:47,123 Epoch 6 Step: 25600 Batch Loss: 1.798699 Tokens per Sec: 18815, Lr: 0.000300\n", "2020-01-13 07:54:58,658 Epoch 6 Step: 25700 Batch Loss: 1.885198 Tokens per Sec: 19872, Lr: 0.000300\n", "2020-01-13 07:55:10,231 Epoch 6 Step: 25800 Batch Loss: 1.895166 Tokens per Sec: 19947, Lr: 0.000300\n", "2020-01-13 07:55:21,774 Epoch 6 Step: 25900 Batch Loss: 1.901738 Tokens per Sec: 19815, Lr: 0.000300\n", "2020-01-13 07:55:33,362 Epoch 6 Step: 26000 Batch Loss: 1.619136 Tokens per Sec: 19768, Lr: 0.000300\n", "2020-01-13 07:56:03,585 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:56:03,586 Saving new checkpoint.\n", "2020-01-13 07:56:04,695 Example #0\n", "2020-01-13 07:56:04,696 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:56:04,696 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:56:04,696 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa n’ileghara nchegbu nke ichegbu onwe anyị .\n", "2020-01-13 07:56:04,696 Example #1\n", "2020-01-13 07:56:04,696 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:56:04,697 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:56:04,697 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 07:56:04,697 Example #2\n", "2020-01-13 07:56:04,697 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:56:04,697 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:56:04,697 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 07:56:04,697 Example #3\n", "2020-01-13 07:56:04,698 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:56:04,698 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:56:04,698 \tHypothesis: Nke a bụ ihe nke abụọ a na - eme ka anyị ghara ịgbaghara ndị ọzọ .\n", "2020-01-13 07:56:04,698 Validation result (greedy) at epoch 6, step 26000: bleu: 24.65, loss: 46902.2266, ppl: 5.0100, duration: 31.3358s\n", "2020-01-13 07:56:16,599 Epoch 6 Step: 26100 Batch Loss: 1.914183 Tokens per Sec: 19331, Lr: 0.000300\n", "2020-01-13 07:56:28,067 Epoch 6 Step: 26200 Batch Loss: 1.682023 Tokens per Sec: 19887, Lr: 0.000300\n", "2020-01-13 07:56:39,630 Epoch 6 Step: 26300 Batch Loss: 1.532041 Tokens per Sec: 19696, Lr: 0.000300\n", "2020-01-13 07:56:51,148 Epoch 6 Step: 26400 Batch Loss: 1.950526 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-13 07:57:02,797 Epoch 6 Step: 26500 Batch Loss: 1.929869 Tokens per Sec: 19795, Lr: 0.000300\n", "2020-01-13 07:57:14,379 Epoch 6 Step: 26600 Batch Loss: 1.784858 Tokens per Sec: 19800, Lr: 0.000300\n", "2020-01-13 07:57:25,971 Epoch 6 Step: 26700 Batch Loss: 1.699981 Tokens per Sec: 20114, Lr: 0.000300\n", "2020-01-13 07:57:37,600 Epoch 6 Step: 26800 Batch Loss: 1.711378 Tokens per Sec: 20006, Lr: 0.000300\n", "2020-01-13 07:57:49,287 Epoch 6 Step: 26900 Batch Loss: 1.596366 Tokens per Sec: 20185, Lr: 0.000300\n", "2020-01-13 07:58:00,761 Epoch 6 Step: 27000 Batch Loss: 1.768135 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-13 07:58:30,924 Hooray! New best validation result [ppl]!\n", "2020-01-13 07:58:30,925 Saving new checkpoint.\n", "2020-01-13 07:58:31,887 Example #0\n", "2020-01-13 07:58:31,888 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 07:58:31,888 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 07:58:31,888 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe bụ́ onye hụrụ anyị n’anya , na - eche banyere anyị dị oké mkpa n’ileghara nchegbu nke nchegbu .\n", "2020-01-13 07:58:31,888 Example #1\n", "2020-01-13 07:58:31,888 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 07:58:31,888 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 07:58:31,888 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke mgbalị Setan mere iji ghọta na e nwere ndokwa ahụ ?\n", "2020-01-13 07:58:31,889 Example #2\n", "2020-01-13 07:58:31,889 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 07:58:31,889 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 07:58:31,889 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 07:58:31,889 Example #3\n", "2020-01-13 07:58:31,889 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 07:58:31,889 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 07:58:31,889 \tHypothesis: Nke ahụ bụ ihe nke abụọ na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 07:58:31,889 Validation result (greedy) at epoch 6, step 27000: bleu: 24.92, loss: 46475.4648, ppl: 4.9370, duration: 31.1280s\n", "2020-01-13 07:58:43,628 Epoch 6 Step: 27100 Batch Loss: 1.631864 Tokens per Sec: 19142, Lr: 0.000300\n", "2020-01-13 07:58:55,310 Epoch 6 Step: 27200 Batch Loss: 1.945380 Tokens per Sec: 19077, Lr: 0.000300\n", "2020-01-13 07:59:06,975 Epoch 6 Step: 27300 Batch Loss: 1.602032 Tokens per Sec: 20119, Lr: 0.000300\n", "2020-01-13 07:59:18,447 Epoch 6 Step: 27400 Batch Loss: 1.785730 Tokens per Sec: 19868, Lr: 0.000300\n", "2020-01-13 07:59:30,014 Epoch 6 Step: 27500 Batch Loss: 1.649219 Tokens per Sec: 19787, Lr: 0.000300\n", "2020-01-13 07:59:41,521 Epoch 6 Step: 27600 Batch Loss: 1.759930 Tokens per Sec: 19874, Lr: 0.000300\n", "2020-01-13 07:59:53,065 Epoch 6 Step: 27700 Batch Loss: 1.967825 Tokens per Sec: 20067, Lr: 0.000300\n", "2020-01-13 08:00:04,782 Epoch 6 Step: 27800 Batch Loss: 1.779188 Tokens per Sec: 20268, Lr: 0.000300\n", "2020-01-13 08:00:16,375 Epoch 6 Step: 27900 Batch Loss: 1.735770 Tokens per Sec: 19613, Lr: 0.000300\n", "2020-01-13 08:00:27,894 Epoch 6 Step: 28000 Batch Loss: 1.824736 Tokens per Sec: 20490, Lr: 0.000300\n", "2020-01-13 08:00:58,052 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:00:58,053 Saving new checkpoint.\n", "2020-01-13 08:00:59,200 Example #0\n", "2020-01-13 08:00:59,200 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:00:59,200 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:00:59,201 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na ilekọta anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 08:00:59,201 Example #1\n", "2020-01-13 08:00:59,201 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:00:59,201 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:00:59,201 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye nke mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:00:59,201 Example #2\n", "2020-01-13 08:00:59,201 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:00:59,201 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:00:59,201 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ dị oké ọnụ ahịa n’ikwusa “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:00:59,202 Example #3\n", "2020-01-13 08:00:59,202 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:00:59,202 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:00:59,202 \tHypothesis: Nke ahụ bụ ihe nke abụọ na - eme ka anyị nweta agbaghara Chineke .\n", "2020-01-13 08:00:59,202 Validation result (greedy) at epoch 6, step 28000: bleu: 24.93, loss: 46186.9102, ppl: 4.8883, duration: 31.3071s\n", "2020-01-13 08:01:10,968 Epoch 6 Step: 28100 Batch Loss: 1.846410 Tokens per Sec: 19127, Lr: 0.000300\n", "2020-01-13 08:01:22,475 Epoch 6 Step: 28200 Batch Loss: 1.801448 Tokens per Sec: 19864, Lr: 0.000300\n", "2020-01-13 08:01:33,999 Epoch 6 Step: 28300 Batch Loss: 1.818353 Tokens per Sec: 19690, Lr: 0.000300\n", "2020-01-13 08:01:45,432 Epoch 6 Step: 28400 Batch Loss: 1.983823 Tokens per Sec: 20164, Lr: 0.000300\n", "2020-01-13 08:01:56,918 Epoch 6 Step: 28500 Batch Loss: 1.704860 Tokens per Sec: 19782, Lr: 0.000300\n", "2020-01-13 08:02:08,490 Epoch 6 Step: 28600 Batch Loss: 1.454423 Tokens per Sec: 20052, Lr: 0.000300\n", "2020-01-13 08:02:20,068 Epoch 6 Step: 28700 Batch Loss: 1.892968 Tokens per Sec: 20017, Lr: 0.000300\n", "2020-01-13 08:02:31,661 Epoch 6 Step: 28800 Batch Loss: 1.801501 Tokens per Sec: 19494, Lr: 0.000300\n", "2020-01-13 08:02:43,170 Epoch 6 Step: 28900 Batch Loss: 1.932248 Tokens per Sec: 20197, Lr: 0.000300\n", "2020-01-13 08:02:54,707 Epoch 6 Step: 29000 Batch Loss: 1.929096 Tokens per Sec: 19749, Lr: 0.000300\n", "2020-01-13 08:03:24,815 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:03:24,816 Saving new checkpoint.\n", "2020-01-13 08:03:26,007 Example #0\n", "2020-01-13 08:03:26,007 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:03:26,007 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:03:26,008 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu .\n", "2020-01-13 08:03:26,008 Example #1\n", "2020-01-13 08:03:26,008 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:03:26,008 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:03:26,008 \tHypothesis: Olee ihe dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:03:26,008 Example #2\n", "2020-01-13 08:03:26,008 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:03:26,009 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:03:26,009 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:03:26,009 Example #3\n", "2020-01-13 08:03:26,009 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:03:26,009 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:03:26,009 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka a gbaghara anyị mmehie Chineke .\n", "2020-01-13 08:03:26,009 Validation result (greedy) at epoch 6, step 29000: bleu: 25.28, loss: 45840.3711, ppl: 4.8305, duration: 31.3023s\n", "2020-01-13 08:03:37,915 Epoch 6 Step: 29100 Batch Loss: 2.162876 Tokens per Sec: 19743, Lr: 0.000300\n", "2020-01-13 08:03:49,484 Epoch 6 Step: 29200 Batch Loss: 1.631660 Tokens per Sec: 19724, Lr: 0.000300\n", "2020-01-13 08:04:01,024 Epoch 6 Step: 29300 Batch Loss: 1.628466 Tokens per Sec: 19911, Lr: 0.000300\n", "2020-01-13 08:04:12,491 Epoch 6 Step: 29400 Batch Loss: 1.779047 Tokens per Sec: 19753, Lr: 0.000300\n", "2020-01-13 08:04:24,055 Epoch 6 Step: 29500 Batch Loss: 1.670148 Tokens per Sec: 19903, Lr: 0.000300\n", "2020-01-13 08:04:35,515 Epoch 6 Step: 29600 Batch Loss: 1.819822 Tokens per Sec: 19885, Lr: 0.000300\n", "2020-01-13 08:04:47,084 Epoch 6 Step: 29700 Batch Loss: 1.829438 Tokens per Sec: 19599, Lr: 0.000300\n", "2020-01-13 08:04:58,620 Epoch 6 Step: 29800 Batch Loss: 1.643213 Tokens per Sec: 19923, Lr: 0.000300\n", "2020-01-13 08:05:09,967 Epoch 6 Step: 29900 Batch Loss: 1.605883 Tokens per Sec: 19525, Lr: 0.000300\n", "2020-01-13 08:05:21,535 Epoch 6 Step: 30000 Batch Loss: 1.822971 Tokens per Sec: 19677, Lr: 0.000300\n", "2020-01-13 08:05:51,670 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:05:51,671 Saving new checkpoint.\n", "2020-01-13 08:05:52,872 Example #0\n", "2020-01-13 08:05:52,872 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:05:52,872 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:05:52,872 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echekwa anyị ụra dị oké mkpa iji chegbuwe onwe anyị .\n", "2020-01-13 08:05:52,873 Example #1\n", "2020-01-13 08:05:52,873 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:05:52,873 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:05:52,873 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:05:52,873 Example #2\n", "2020-01-13 08:05:52,873 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:05:52,873 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:05:52,874 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:05:52,874 Example #3\n", "2020-01-13 08:05:52,874 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:05:52,874 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:05:52,874 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:05:52,874 Validation result (greedy) at epoch 6, step 30000: bleu: 24.96, loss: 45774.9883, ppl: 4.8196, duration: 31.3389s\n", "2020-01-13 08:06:04,577 Epoch 6 Step: 30100 Batch Loss: 2.090922 Tokens per Sec: 19693, Lr: 0.000300\n", "2020-01-13 08:06:16,273 Epoch 6 Step: 30200 Batch Loss: 1.641380 Tokens per Sec: 20074, Lr: 0.000300\n", "2020-01-13 08:06:27,726 Epoch 6 Step: 30300 Batch Loss: 1.770245 Tokens per Sec: 20147, Lr: 0.000300\n", "2020-01-13 08:06:39,233 Epoch 6 Step: 30400 Batch Loss: 1.458222 Tokens per Sec: 19582, Lr: 0.000300\n", "2020-01-13 08:06:50,975 Epoch 6 Step: 30500 Batch Loss: 1.555151 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-13 08:07:02,509 Epoch 6 Step: 30600 Batch Loss: 1.690310 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-13 08:07:04,287 Epoch 6: total training loss 9041.53\n", "2020-01-13 08:07:04,287 EPOCH 7\n", "2020-01-13 08:07:14,656 Epoch 7 Step: 30700 Batch Loss: 1.719314 Tokens per Sec: 18371, Lr: 0.000300\n", "2020-01-13 08:07:26,251 Epoch 7 Step: 30800 Batch Loss: 1.578023 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 08:07:37,839 Epoch 7 Step: 30900 Batch Loss: 1.669881 Tokens per Sec: 20387, Lr: 0.000300\n", "2020-01-13 08:07:49,509 Epoch 7 Step: 31000 Batch Loss: 1.709486 Tokens per Sec: 19685, Lr: 0.000300\n", "2020-01-13 08:08:19,757 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:08:19,758 Saving new checkpoint.\n", "2020-01-13 08:08:20,933 Example #0\n", "2020-01-13 08:08:20,933 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:08:20,933 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:08:20,933 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 08:08:20,934 Example #1\n", "2020-01-13 08:08:20,934 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:08:20,934 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:08:20,934 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye nwee ihe ịga nke ọma n’isoro mgbalị Setan mee iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:08:20,934 Example #2\n", "2020-01-13 08:08:20,934 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:08:20,934 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:08:20,934 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ dị irè n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:08:20,934 Example #3\n", "2020-01-13 08:08:20,935 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:08:20,935 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:08:20,935 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:08:20,935 Validation result (greedy) at epoch 7, step 31000: bleu: 25.70, loss: 45119.1367, ppl: 4.7123, duration: 31.4252s\n", "2020-01-13 08:08:33,002 Epoch 7 Step: 31100 Batch Loss: 1.953779 Tokens per Sec: 19459, Lr: 0.000300\n", "2020-01-13 08:08:44,670 Epoch 7 Step: 31200 Batch Loss: 1.858738 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-13 08:08:56,183 Epoch 7 Step: 31300 Batch Loss: 1.601129 Tokens per Sec: 19799, Lr: 0.000300\n", "2020-01-13 08:09:07,737 Epoch 7 Step: 31400 Batch Loss: 1.816254 Tokens per Sec: 19925, Lr: 0.000300\n", "2020-01-13 08:09:19,313 Epoch 7 Step: 31500 Batch Loss: 1.560970 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 08:09:30,907 Epoch 7 Step: 31600 Batch Loss: 2.089676 Tokens per Sec: 20102, Lr: 0.000300\n", "2020-01-13 08:09:42,524 Epoch 7 Step: 31700 Batch Loss: 1.672692 Tokens per Sec: 19803, Lr: 0.000300\n", "2020-01-13 08:09:54,149 Epoch 7 Step: 31800 Batch Loss: 1.729080 Tokens per Sec: 19960, Lr: 0.000300\n", "2020-01-13 08:10:05,585 Epoch 7 Step: 31900 Batch Loss: 1.845166 Tokens per Sec: 19768, Lr: 0.000300\n", "2020-01-13 08:10:17,137 Epoch 7 Step: 32000 Batch Loss: 1.778657 Tokens per Sec: 19514, Lr: 0.000300\n", "2020-01-13 08:10:47,257 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:10:47,258 Saving new checkpoint.\n", "2020-01-13 08:10:48,461 Example #0\n", "2020-01-13 08:10:48,461 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:10:48,462 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:10:48,462 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na ilekọta anyị bụ ihe dị oké mkpa n’echegbughị onwe anyị .\n", "2020-01-13 08:10:48,463 Example #1\n", "2020-01-13 08:10:48,463 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:10:48,463 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:10:48,463 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:10:48,464 Example #2\n", "2020-01-13 08:10:48,464 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:10:48,464 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:10:48,465 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze a ” maka àmà nye mba nile .\n", "2020-01-13 08:10:48,465 Example #3\n", "2020-01-13 08:10:48,465 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:10:48,465 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:10:48,466 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 08:10:48,466 Validation result (greedy) at epoch 7, step 32000: bleu: 25.93, loss: 45010.5273, ppl: 4.6947, duration: 31.3279s\n", "2020-01-13 08:11:00,347 Epoch 7 Step: 32100 Batch Loss: 1.596745 Tokens per Sec: 19180, Lr: 0.000300\n", "2020-01-13 08:11:11,913 Epoch 7 Step: 32200 Batch Loss: 1.613722 Tokens per Sec: 19808, Lr: 0.000300\n", "2020-01-13 08:11:23,416 Epoch 7 Step: 32300 Batch Loss: 1.722987 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-13 08:11:34,869 Epoch 7 Step: 32400 Batch Loss: 1.687986 Tokens per Sec: 19663, Lr: 0.000300\n", "2020-01-13 08:11:46,411 Epoch 7 Step: 32500 Batch Loss: 1.788104 Tokens per Sec: 19974, Lr: 0.000300\n", "2020-01-13 08:11:58,044 Epoch 7 Step: 32600 Batch Loss: 1.682973 Tokens per Sec: 19902, Lr: 0.000300\n", "2020-01-13 08:12:09,669 Epoch 7 Step: 32700 Batch Loss: 1.945649 Tokens per Sec: 20030, Lr: 0.000300\n", "2020-01-13 08:12:21,235 Epoch 7 Step: 32800 Batch Loss: 1.658372 Tokens per Sec: 19988, Lr: 0.000300\n", "2020-01-13 08:12:32,761 Epoch 7 Step: 32900 Batch Loss: 1.751528 Tokens per Sec: 19298, Lr: 0.000300\n", "2020-01-13 08:12:44,325 Epoch 7 Step: 33000 Batch Loss: 1.481084 Tokens per Sec: 19784, Lr: 0.000300\n", "2020-01-13 08:13:14,491 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:13:14,492 Saving new checkpoint.\n", "2020-01-13 08:13:15,649 Example #0\n", "2020-01-13 08:13:15,650 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:13:15,650 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:13:15,650 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echekwa anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu nke ichegbu onwe anyị .\n", "2020-01-13 08:13:15,650 Example #1\n", "2020-01-13 08:13:15,651 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:13:15,651 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:13:15,651 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye nke Setan iji mee ka e nwee ihe ịga nke ọma ná mgbalị ndị metụtara ndokwa ahụ ?\n", "2020-01-13 08:13:15,651 Example #2\n", "2020-01-13 08:13:15,652 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:13:15,652 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:13:15,652 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:13:15,652 Example #3\n", "2020-01-13 08:13:15,652 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:13:15,652 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:13:15,652 \tHypothesis: Nke a bụ nzọụkwụ nke abụọ nke na - eme ka a gbaghara Chineke .\n", "2020-01-13 08:13:15,652 Validation result (greedy) at epoch 7, step 33000: bleu: 26.28, loss: 44686.9766, ppl: 4.6428, duration: 31.3267s\n", "2020-01-13 08:13:27,431 Epoch 7 Step: 33100 Batch Loss: 1.794386 Tokens per Sec: 19255, Lr: 0.000300\n", "2020-01-13 08:13:38,942 Epoch 7 Step: 33200 Batch Loss: 1.835078 Tokens per Sec: 19744, Lr: 0.000300\n", "2020-01-13 08:13:50,495 Epoch 7 Step: 33300 Batch Loss: 1.884412 Tokens per Sec: 19772, Lr: 0.000300\n", "2020-01-13 08:14:02,100 Epoch 7 Step: 33400 Batch Loss: 1.693387 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-13 08:14:13,497 Epoch 7 Step: 33500 Batch Loss: 2.044280 Tokens per Sec: 19701, Lr: 0.000300\n", "2020-01-13 08:14:25,010 Epoch 7 Step: 33600 Batch Loss: 1.454033 Tokens per Sec: 19857, Lr: 0.000300\n", "2020-01-13 08:14:36,514 Epoch 7 Step: 33700 Batch Loss: 1.862557 Tokens per Sec: 19761, Lr: 0.000300\n", "2020-01-13 08:14:47,962 Epoch 7 Step: 33800 Batch Loss: 1.630353 Tokens per Sec: 20059, Lr: 0.000300\n", "2020-01-13 08:14:59,450 Epoch 7 Step: 33900 Batch Loss: 1.765710 Tokens per Sec: 19213, Lr: 0.000300\n", "2020-01-13 08:15:10,933 Epoch 7 Step: 34000 Batch Loss: 1.663655 Tokens per Sec: 20115, Lr: 0.000300\n", "2020-01-13 08:15:41,117 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:15:41,118 Saving new checkpoint.\n", "2020-01-13 08:15:42,243 Example #0\n", "2020-01-13 08:15:42,243 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:15:42,244 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:15:42,244 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa n’ileghara nchegbu nke nchegbu .\n", "2020-01-13 08:15:42,244 Example #1\n", "2020-01-13 08:15:42,244 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:15:42,245 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:15:42,245 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye nwee ihe ịga nke ọma n’itinye mgbalị Setan n’ọrụ iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:15:42,245 Example #2\n", "2020-01-13 08:15:42,245 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:15:42,246 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:15:42,246 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke alaeze a ” maka àmà nye mba nile .\n", "2020-01-13 08:15:42,246 Example #3\n", "2020-01-13 08:15:42,246 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:15:42,247 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:15:42,247 \tHypothesis: Nke a bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:15:42,247 Validation result (greedy) at epoch 7, step 34000: bleu: 26.24, loss: 44360.4258, ppl: 4.5910, duration: 31.3131s\n", "2020-01-13 08:15:54,122 Epoch 7 Step: 34100 Batch Loss: 1.599285 Tokens per Sec: 19245, Lr: 0.000300\n", "2020-01-13 08:16:05,745 Epoch 7 Step: 34200 Batch Loss: 1.785772 Tokens per Sec: 20450, Lr: 0.000300\n", "2020-01-13 08:16:17,299 Epoch 7 Step: 34300 Batch Loss: 1.797322 Tokens per Sec: 19598, Lr: 0.000300\n", "2020-01-13 08:16:28,876 Epoch 7 Step: 34400 Batch Loss: 1.945603 Tokens per Sec: 20006, Lr: 0.000300\n", "2020-01-13 08:16:40,259 Epoch 7 Step: 34500 Batch Loss: 2.008356 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-13 08:16:51,786 Epoch 7 Step: 34600 Batch Loss: 1.802224 Tokens per Sec: 19687, Lr: 0.000300\n", "2020-01-13 08:17:03,196 Epoch 7 Step: 34700 Batch Loss: 1.610489 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 08:17:14,731 Epoch 7 Step: 34800 Batch Loss: 1.652656 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-13 08:17:26,261 Epoch 7 Step: 34900 Batch Loss: 1.494385 Tokens per Sec: 19894, Lr: 0.000300\n", "2020-01-13 08:17:37,682 Epoch 7 Step: 35000 Batch Loss: 2.007494 Tokens per Sec: 19844, Lr: 0.000300\n", "2020-01-13 08:18:07,909 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:18:07,910 Saving new checkpoint.\n", "2020-01-13 08:18:08,998 Example #0\n", "2020-01-13 08:18:08,998 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:18:08,998 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:18:08,998 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - elekọta anyị bụ ihe dị oké mkpa ná nchekasị nke nchegbu .\n", "2020-01-13 08:18:08,998 Example #1\n", "2020-01-13 08:18:08,999 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:18:08,999 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:18:08,999 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’itinye mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:18:08,999 Example #2\n", "2020-01-13 08:18:08,999 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:18:08,999 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:18:08,999 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze a ” maka àmà nye mba nile .\n", "2020-01-13 08:18:08,999 Example #3\n", "2020-01-13 08:18:09,000 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:18:09,000 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:18:09,000 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 08:18:09,000 Validation result (greedy) at epoch 7, step 35000: bleu: 26.52, loss: 44092.7500, ppl: 4.5490, duration: 31.3172s\n", "2020-01-13 08:18:20,855 Epoch 7 Step: 35100 Batch Loss: 1.881347 Tokens per Sec: 19678, Lr: 0.000300\n", "2020-01-13 08:18:32,344 Epoch 7 Step: 35200 Batch Loss: 1.765781 Tokens per Sec: 19597, Lr: 0.000300\n", "2020-01-13 08:18:43,943 Epoch 7 Step: 35300 Batch Loss: 1.679241 Tokens per Sec: 19580, Lr: 0.000300\n", "2020-01-13 08:18:55,562 Epoch 7 Step: 35400 Batch Loss: 1.603411 Tokens per Sec: 20261, Lr: 0.000300\n", "2020-01-13 08:19:06,983 Epoch 7 Step: 35500 Batch Loss: 1.904710 Tokens per Sec: 19596, Lr: 0.000300\n", "2020-01-13 08:19:18,557 Epoch 7 Step: 35600 Batch Loss: 1.771277 Tokens per Sec: 19914, Lr: 0.000300\n", "2020-01-13 08:19:30,056 Epoch 7 Step: 35700 Batch Loss: 1.739479 Tokens per Sec: 20158, Lr: 0.000300\n", "2020-01-13 08:19:32,783 Epoch 7: total training loss 8770.94\n", "2020-01-13 08:19:32,784 EPOCH 8\n", "2020-01-13 08:19:42,241 Epoch 8 Step: 35800 Batch Loss: 1.722173 Tokens per Sec: 18751, Lr: 0.000300\n", "2020-01-13 08:19:53,729 Epoch 8 Step: 35900 Batch Loss: 1.705290 Tokens per Sec: 19984, Lr: 0.000300\n", "2020-01-13 08:20:05,259 Epoch 8 Step: 36000 Batch Loss: 1.767484 Tokens per Sec: 20099, Lr: 0.000300\n", "2020-01-13 08:20:35,443 Example #0\n", "2020-01-13 08:20:35,444 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:20:35,444 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:20:35,444 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu .\n", "2020-01-13 08:20:35,444 Example #1\n", "2020-01-13 08:20:35,445 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:20:35,445 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:20:35,445 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 08:20:35,445 Example #2\n", "2020-01-13 08:20:35,446 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:20:35,446 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:20:35,446 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze a ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:20:35,446 Example #3\n", "2020-01-13 08:20:35,447 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:20:35,447 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:20:35,447 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka a gbaghara anyị mmehie Chineke .\n", "2020-01-13 08:20:35,447 Validation result (greedy) at epoch 8, step 36000: bleu: 26.56, loss: 44133.3750, ppl: 4.5553, duration: 30.1876s\n", "2020-01-13 08:20:47,067 Epoch 8 Step: 36100 Batch Loss: 1.612910 Tokens per Sec: 19695, Lr: 0.000300\n", "2020-01-13 08:20:58,609 Epoch 8 Step: 36200 Batch Loss: 1.767223 Tokens per Sec: 20027, Lr: 0.000300\n", "2020-01-13 08:21:10,120 Epoch 8 Step: 36300 Batch Loss: 1.443627 Tokens per Sec: 19715, Lr: 0.000300\n", "2020-01-13 08:21:21,483 Epoch 8 Step: 36400 Batch Loss: 1.649953 Tokens per Sec: 19941, Lr: 0.000300\n", "2020-01-13 08:21:33,095 Epoch 8 Step: 36500 Batch Loss: 1.596086 Tokens per Sec: 19913, Lr: 0.000300\n", "2020-01-13 08:21:44,549 Epoch 8 Step: 36600 Batch Loss: 1.535285 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 08:21:56,087 Epoch 8 Step: 36700 Batch Loss: 1.522300 Tokens per Sec: 20231, Lr: 0.000300\n", "2020-01-13 08:22:07,492 Epoch 8 Step: 36800 Batch Loss: 1.815441 Tokens per Sec: 19838, Lr: 0.000300\n", "2020-01-13 08:22:19,129 Epoch 8 Step: 36900 Batch Loss: 1.573513 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-13 08:22:30,740 Epoch 8 Step: 37000 Batch Loss: 1.936684 Tokens per Sec: 20176, Lr: 0.000300\n", "2020-01-13 08:23:00,949 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:23:00,949 Saving new checkpoint.\n", "2020-01-13 08:23:02,063 Example #0\n", "2020-01-13 08:23:02,063 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:23:02,064 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:23:02,064 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ịchụso nchegbu .\n", "2020-01-13 08:23:02,064 Example #1\n", "2020-01-13 08:23:02,064 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:23:02,065 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:23:02,065 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma ná mgbalị Setan iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:23:02,065 Example #2\n", "2020-01-13 08:23:02,065 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:23:02,066 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:23:02,066 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:23:02,066 Example #3\n", "2020-01-13 08:23:02,066 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:23:02,066 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:23:02,067 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 08:23:02,067 Validation result (greedy) at epoch 8, step 37000: bleu: 26.95, loss: 43614.8320, ppl: 4.4749, duration: 31.3263s\n", "2020-01-13 08:23:13,915 Epoch 8 Step: 37100 Batch Loss: 1.677923 Tokens per Sec: 19474, Lr: 0.000300\n", "2020-01-13 08:23:25,348 Epoch 8 Step: 37200 Batch Loss: 1.665362 Tokens per Sec: 19632, Lr: 0.000300\n", "2020-01-13 08:23:36,786 Epoch 8 Step: 37300 Batch Loss: 1.807001 Tokens per Sec: 19621, Lr: 0.000300\n", "2020-01-13 08:23:48,238 Epoch 8 Step: 37400 Batch Loss: 1.546268 Tokens per Sec: 19586, Lr: 0.000300\n", "2020-01-13 08:23:59,839 Epoch 8 Step: 37500 Batch Loss: 2.053103 Tokens per Sec: 19773, Lr: 0.000300\n", "2020-01-13 08:24:11,261 Epoch 8 Step: 37600 Batch Loss: 1.629816 Tokens per Sec: 19662, Lr: 0.000300\n", "2020-01-13 08:24:22,708 Epoch 8 Step: 37700 Batch Loss: 1.583080 Tokens per Sec: 19712, Lr: 0.000300\n", "2020-01-13 08:24:34,288 Epoch 8 Step: 37800 Batch Loss: 1.505932 Tokens per Sec: 20016, Lr: 0.000300\n", "2020-01-13 08:24:45,711 Epoch 8 Step: 37900 Batch Loss: 1.645348 Tokens per Sec: 19835, Lr: 0.000300\n", "2020-01-13 08:24:57,313 Epoch 8 Step: 38000 Batch Loss: 1.737730 Tokens per Sec: 19743, Lr: 0.000300\n", "2020-01-13 08:25:27,470 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:25:27,470 Saving new checkpoint.\n", "2020-01-13 08:25:28,997 Example #0\n", "2020-01-13 08:25:28,998 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:25:28,998 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:25:28,999 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na ilekọta anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu nke ichegbu onwe anyị .\n", "2020-01-13 08:25:28,999 Example #1\n", "2020-01-13 08:25:28,999 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:25:28,999 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:25:29,000 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:25:29,000 Example #2\n", "2020-01-13 08:25:29,000 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:25:29,000 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:25:29,000 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:25:29,001 Example #3\n", "2020-01-13 08:25:29,001 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:25:29,001 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:25:29,001 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:25:29,002 Validation result (greedy) at epoch 8, step 38000: bleu: 26.78, loss: 43402.3633, ppl: 4.4423, duration: 31.6880s\n", "2020-01-13 08:25:40,645 Epoch 8 Step: 38100 Batch Loss: 1.579720 Tokens per Sec: 19638, Lr: 0.000300\n", "2020-01-13 08:25:52,404 Epoch 8 Step: 38200 Batch Loss: 1.707334 Tokens per Sec: 19720, Lr: 0.000300\n", "2020-01-13 08:26:03,847 Epoch 8 Step: 38300 Batch Loss: 1.514427 Tokens per Sec: 20071, Lr: 0.000300\n", "2020-01-13 08:26:15,392 Epoch 8 Step: 38400 Batch Loss: 1.668794 Tokens per Sec: 19872, Lr: 0.000300\n", "2020-01-13 08:26:26,946 Epoch 8 Step: 38500 Batch Loss: 1.715810 Tokens per Sec: 20033, Lr: 0.000300\n", "2020-01-13 08:26:38,389 Epoch 8 Step: 38600 Batch Loss: 1.698953 Tokens per Sec: 19596, Lr: 0.000300\n", "2020-01-13 08:26:49,912 Epoch 8 Step: 38700 Batch Loss: 1.442864 Tokens per Sec: 19815, Lr: 0.000300\n", "2020-01-13 08:27:01,388 Epoch 8 Step: 38800 Batch Loss: 1.644296 Tokens per Sec: 20359, Lr: 0.000300\n", "2020-01-13 08:27:12,924 Epoch 8 Step: 38900 Batch Loss: 1.936310 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-13 08:27:24,331 Epoch 8 Step: 39000 Batch Loss: 1.777966 Tokens per Sec: 19709, Lr: 0.000300\n", "2020-01-13 08:27:54,479 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:27:54,479 Saving new checkpoint.\n", "2020-01-13 08:27:55,548 Example #0\n", "2020-01-13 08:27:55,549 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:27:55,549 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:27:55,549 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echekwa anyị nche dị oké mkpa iji merie nchegbu .\n", "2020-01-13 08:27:55,549 Example #1\n", "2020-01-13 08:27:55,549 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:27:55,550 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:27:55,550 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:27:55,550 Example #2\n", "2020-01-13 08:27:55,550 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:27:55,550 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:27:55,551 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke alaeze a ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:27:55,551 Example #3\n", "2020-01-13 08:27:55,551 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:27:55,551 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:27:55,551 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eweta mgbaghara Chineke .\n", "2020-01-13 08:27:55,552 Validation result (greedy) at epoch 8, step 39000: bleu: 27.12, loss: 43109.5352, ppl: 4.3979, duration: 31.2203s\n", "2020-01-13 08:28:07,456 Epoch 8 Step: 39100 Batch Loss: 1.680756 Tokens per Sec: 19409, Lr: 0.000300\n", "2020-01-13 08:28:18,948 Epoch 8 Step: 39200 Batch Loss: 1.764740 Tokens per Sec: 19489, Lr: 0.000300\n", "2020-01-13 08:28:30,471 Epoch 8 Step: 39300 Batch Loss: 1.845178 Tokens per Sec: 20301, Lr: 0.000300\n", "2020-01-13 08:28:42,032 Epoch 8 Step: 39400 Batch Loss: 1.721890 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 08:28:53,435 Epoch 8 Step: 39500 Batch Loss: 1.699847 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-13 08:29:04,971 Epoch 8 Step: 39600 Batch Loss: 1.894041 Tokens per Sec: 19812, Lr: 0.000300\n", "2020-01-13 08:29:16,498 Epoch 8 Step: 39700 Batch Loss: 1.560857 Tokens per Sec: 19710, Lr: 0.000300\n", "2020-01-13 08:29:28,014 Epoch 8 Step: 39800 Batch Loss: 1.759871 Tokens per Sec: 20136, Lr: 0.000300\n", "2020-01-13 08:29:39,574 Epoch 8 Step: 39900 Batch Loss: 1.595072 Tokens per Sec: 19454, Lr: 0.000300\n", "2020-01-13 08:29:51,116 Epoch 8 Step: 40000 Batch Loss: 1.425892 Tokens per Sec: 20042, Lr: 0.000300\n", "2020-01-13 08:30:21,257 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:30:21,257 Saving new checkpoint.\n", "2020-01-13 08:30:22,304 Example #0\n", "2020-01-13 08:30:22,304 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:30:22,305 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:30:22,305 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu .\n", "2020-01-13 08:30:22,305 Example #1\n", "2020-01-13 08:30:22,305 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:30:22,305 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:30:22,305 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:30:22,305 Example #2\n", "2020-01-13 08:30:22,305 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:30:22,306 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:30:22,306 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze a ” maka àmà nye mba nile .\n", "2020-01-13 08:30:22,306 Example #3\n", "2020-01-13 08:30:22,306 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:30:22,306 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:30:22,306 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:30:22,306 Validation result (greedy) at epoch 8, step 40000: bleu: 27.21, loss: 42814.1172, ppl: 4.3535, duration: 31.1894s\n", "2020-01-13 08:30:34,175 Epoch 8 Step: 40100 Batch Loss: 1.692080 Tokens per Sec: 19331, Lr: 0.000300\n", "2020-01-13 08:30:45,842 Epoch 8 Step: 40200 Batch Loss: 1.663142 Tokens per Sec: 20040, Lr: 0.000300\n", "2020-01-13 08:30:57,454 Epoch 8 Step: 40300 Batch Loss: 1.731725 Tokens per Sec: 19730, Lr: 0.000300\n", "2020-01-13 08:31:09,007 Epoch 8 Step: 40400 Batch Loss: 1.822490 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 08:31:20,559 Epoch 8 Step: 40500 Batch Loss: 1.501924 Tokens per Sec: 19930, Lr: 0.000300\n", "2020-01-13 08:31:32,016 Epoch 8 Step: 40600 Batch Loss: 1.588787 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 08:31:43,505 Epoch 8 Step: 40700 Batch Loss: 1.624785 Tokens per Sec: 19743, Lr: 0.000300\n", "2020-01-13 08:31:54,973 Epoch 8 Step: 40800 Batch Loss: 1.527580 Tokens per Sec: 20059, Lr: 0.000300\n", "2020-01-13 08:31:58,739 Epoch 8: total training loss 8532.09\n", "2020-01-13 08:31:58,739 EPOCH 9\n", "2020-01-13 08:32:07,221 Epoch 9 Step: 40900 Batch Loss: 1.630376 Tokens per Sec: 18842, Lr: 0.000300\n", "2020-01-13 08:32:18,807 Epoch 9 Step: 41000 Batch Loss: 1.669957 Tokens per Sec: 19838, Lr: 0.000300\n", "2020-01-13 08:32:48,970 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:32:48,971 Saving new checkpoint.\n", "2020-01-13 08:32:50,024 Example #0\n", "2020-01-13 08:32:50,025 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:32:50,025 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:32:50,025 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 08:32:50,025 Example #1\n", "2020-01-13 08:32:50,025 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:32:50,025 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:32:50,025 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ mee ?\n", "2020-01-13 08:32:50,025 Example #2\n", "2020-01-13 08:32:50,025 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:32:50,026 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:32:50,026 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze a ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:32:50,026 Example #3\n", "2020-01-13 08:32:50,026 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:32:50,026 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:32:50,026 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịhapụ mgbaghara Chineke .\n", "2020-01-13 08:32:50,026 Validation result (greedy) at epoch 9, step 41000: bleu: 26.84, loss: 42751.3984, ppl: 4.3441, duration: 31.2188s\n", "2020-01-13 08:33:02,341 Epoch 9 Step: 41100 Batch Loss: 1.583489 Tokens per Sec: 18755, Lr: 0.000300\n", "2020-01-13 08:33:13,893 Epoch 9 Step: 41200 Batch Loss: 1.381814 Tokens per Sec: 19680, Lr: 0.000300\n", "2020-01-13 08:33:25,547 Epoch 9 Step: 41300 Batch Loss: 1.836248 Tokens per Sec: 19613, Lr: 0.000300\n", "2020-01-13 08:33:37,040 Epoch 9 Step: 41400 Batch Loss: 1.584526 Tokens per Sec: 19637, Lr: 0.000300\n", "2020-01-13 08:33:48,557 Epoch 9 Step: 41500 Batch Loss: 1.417062 Tokens per Sec: 20090, Lr: 0.000300\n", "2020-01-13 08:33:59,969 Epoch 9 Step: 41600 Batch Loss: 1.469728 Tokens per Sec: 19608, Lr: 0.000300\n", "2020-01-13 08:34:11,479 Epoch 9 Step: 41700 Batch Loss: 1.646052 Tokens per Sec: 20169, Lr: 0.000300\n", "2020-01-13 08:34:23,025 Epoch 9 Step: 41800 Batch Loss: 1.466264 Tokens per Sec: 19821, Lr: 0.000300\n", "2020-01-13 08:34:34,599 Epoch 9 Step: 41900 Batch Loss: 1.571462 Tokens per Sec: 19751, Lr: 0.000300\n", "2020-01-13 08:34:46,118 Epoch 9 Step: 42000 Batch Loss: 1.486409 Tokens per Sec: 19796, Lr: 0.000300\n", "2020-01-13 08:35:16,353 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:35:16,354 Saving new checkpoint.\n", "2020-01-13 08:35:17,455 Example #0\n", "2020-01-13 08:35:17,456 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:35:17,456 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:35:17,456 \tHypothesis: Ịmata na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na ilekọta anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu nke nchegbu anya .\n", "2020-01-13 08:35:17,456 Example #1\n", "2020-01-13 08:35:17,457 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:35:17,457 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:35:17,457 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:35:17,457 Example #2\n", "2020-01-13 08:35:17,458 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:35:17,458 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:35:17,458 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka dị ukwuu n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:35:17,458 Example #3\n", "2020-01-13 08:35:17,459 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:35:17,459 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:35:17,459 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 08:35:17,459 Validation result (greedy) at epoch 9, step 42000: bleu: 27.51, loss: 42714.2578, ppl: 4.3386, duration: 31.3404s\n", "2020-01-13 08:35:29,324 Epoch 9 Step: 42100 Batch Loss: 1.677414 Tokens per Sec: 19470, Lr: 0.000300\n", "2020-01-13 08:35:40,797 Epoch 9 Step: 42200 Batch Loss: 1.604392 Tokens per Sec: 19902, Lr: 0.000300\n", "2020-01-13 08:35:52,458 Epoch 9 Step: 42300 Batch Loss: 1.508601 Tokens per Sec: 20250, Lr: 0.000300\n", "2020-01-13 08:36:03,994 Epoch 9 Step: 42400 Batch Loss: 1.384488 Tokens per Sec: 19401, Lr: 0.000300\n", "2020-01-13 08:36:15,557 Epoch 9 Step: 42500 Batch Loss: 2.024161 Tokens per Sec: 19626, Lr: 0.000300\n", "2020-01-13 08:36:27,172 Epoch 9 Step: 42600 Batch Loss: 1.765971 Tokens per Sec: 19799, Lr: 0.000300\n", "2020-01-13 08:36:38,819 Epoch 9 Step: 42700 Batch Loss: 1.803959 Tokens per Sec: 20153, Lr: 0.000300\n", "2020-01-13 08:36:50,345 Epoch 9 Step: 42800 Batch Loss: 1.470250 Tokens per Sec: 19611, Lr: 0.000300\n", "2020-01-13 08:37:01,948 Epoch 9 Step: 42900 Batch Loss: 1.633189 Tokens per Sec: 20206, Lr: 0.000300\n", "2020-01-13 08:37:13,396 Epoch 9 Step: 43000 Batch Loss: 1.605047 Tokens per Sec: 19512, Lr: 0.000300\n", "2020-01-13 08:37:43,598 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:37:43,598 Saving new checkpoint.\n", "2020-01-13 08:37:44,645 Example #0\n", "2020-01-13 08:37:44,645 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:37:44,645 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:37:44,646 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na nke na - emetụ anyị n’obi bụ nzọụkwụ dị oké mkpa nke ichegbu onwe anyị .\n", "2020-01-13 08:37:44,646 Example #1\n", "2020-01-13 08:37:44,646 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:37:44,646 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:37:44,647 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:37:44,647 Example #2\n", "2020-01-13 08:37:44,647 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:37:44,647 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:37:44,648 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:37:44,648 Example #3\n", "2020-01-13 08:37:44,648 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:37:44,648 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:37:44,648 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 08:37:44,649 Validation result (greedy) at epoch 9, step 43000: bleu: 27.76, loss: 42399.3789, ppl: 4.2919, duration: 31.2524s\n", "2020-01-13 08:37:56,505 Epoch 9 Step: 43100 Batch Loss: 1.533408 Tokens per Sec: 19641, Lr: 0.000300\n", "2020-01-13 08:38:08,118 Epoch 9 Step: 43200 Batch Loss: 1.940037 Tokens per Sec: 19655, Lr: 0.000300\n", "2020-01-13 08:38:19,641 Epoch 9 Step: 43300 Batch Loss: 1.524019 Tokens per Sec: 19451, Lr: 0.000300\n", "2020-01-13 08:38:31,365 Epoch 9 Step: 43400 Batch Loss: 1.819858 Tokens per Sec: 19902, Lr: 0.000300\n", "2020-01-13 08:38:42,910 Epoch 9 Step: 43500 Batch Loss: 2.226691 Tokens per Sec: 19216, Lr: 0.000300\n", "2020-01-13 08:38:54,520 Epoch 9 Step: 43600 Batch Loss: 1.568151 Tokens per Sec: 19894, Lr: 0.000300\n", "2020-01-13 08:39:06,023 Epoch 9 Step: 43700 Batch Loss: 1.601986 Tokens per Sec: 19627, Lr: 0.000300\n", "2020-01-13 08:39:17,667 Epoch 9 Step: 43800 Batch Loss: 1.595592 Tokens per Sec: 20010, Lr: 0.000300\n", "2020-01-13 08:39:29,100 Epoch 9 Step: 43900 Batch Loss: 1.742312 Tokens per Sec: 19825, Lr: 0.000300\n", "2020-01-13 08:39:40,645 Epoch 9 Step: 44000 Batch Loss: 1.565509 Tokens per Sec: 19958, Lr: 0.000300\n", "2020-01-13 08:40:10,828 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:40:10,829 Saving new checkpoint.\n", "2020-01-13 08:40:11,928 Example #0\n", "2020-01-13 08:40:11,929 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:40:11,929 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:40:11,929 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa anyị ga - eme iji chegbu onwe anyị .\n", "2020-01-13 08:40:11,930 Example #1\n", "2020-01-13 08:40:11,930 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:40:11,930 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:40:11,930 \tHypothesis: Gịnị ka ọ dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:40:11,930 Example #2\n", "2020-01-13 08:40:11,930 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:40:11,931 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:40:11,931 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:40:11,931 Example #3\n", "2020-01-13 08:40:11,931 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:40:11,931 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:40:11,931 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 08:40:11,931 Validation result (greedy) at epoch 9, step 44000: bleu: 27.89, loss: 42369.6016, ppl: 4.2875, duration: 31.2855s\n", "2020-01-13 08:40:24,194 Epoch 9 Step: 44100 Batch Loss: 1.571234 Tokens per Sec: 18674, Lr: 0.000300\n", "2020-01-13 08:40:35,652 Epoch 9 Step: 44200 Batch Loss: 1.522186 Tokens per Sec: 19988, Lr: 0.000300\n", "2020-01-13 08:40:47,224 Epoch 9 Step: 44300 Batch Loss: 1.603170 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-13 08:40:58,764 Epoch 9 Step: 44400 Batch Loss: 1.694925 Tokens per Sec: 20040, Lr: 0.000300\n", "2020-01-13 08:41:10,378 Epoch 9 Step: 44500 Batch Loss: 1.769693 Tokens per Sec: 20018, Lr: 0.000300\n", "2020-01-13 08:41:21,862 Epoch 9 Step: 44600 Batch Loss: 1.519116 Tokens per Sec: 19927, Lr: 0.000300\n", "2020-01-13 08:41:33,421 Epoch 9 Step: 44700 Batch Loss: 1.813955 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-13 08:41:44,942 Epoch 9 Step: 44800 Batch Loss: 1.785691 Tokens per Sec: 19666, Lr: 0.000300\n", "2020-01-13 08:41:56,439 Epoch 9 Step: 44900 Batch Loss: 1.590703 Tokens per Sec: 19951, Lr: 0.000300\n", "2020-01-13 08:42:07,985 Epoch 9 Step: 45000 Batch Loss: 1.553277 Tokens per Sec: 20028, Lr: 0.000300\n", "2020-01-13 08:42:38,044 Example #0\n", "2020-01-13 08:42:38,045 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:42:38,045 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:42:38,046 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa ná nchegbu nke ichegbu onwe anyị .\n", "2020-01-13 08:42:38,046 Example #1\n", "2020-01-13 08:42:38,046 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:42:38,046 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:42:38,046 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 08:42:38,047 Example #2\n", "2020-01-13 08:42:38,047 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:42:38,047 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:42:38,047 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:42:38,048 Example #3\n", "2020-01-13 08:42:38,048 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:42:38,048 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:42:38,048 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji gbaghara Chineke .\n", "2020-01-13 08:42:38,048 Validation result (greedy) at epoch 9, step 45000: bleu: 27.24, loss: 42453.7344, ppl: 4.2999, duration: 30.0626s\n", "2020-01-13 08:42:49,444 Epoch 9 Step: 45100 Batch Loss: 1.513316 Tokens per Sec: 20018, Lr: 0.000300\n", "2020-01-13 08:43:00,904 Epoch 9 Step: 45200 Batch Loss: 1.563928 Tokens per Sec: 19485, Lr: 0.000300\n", "2020-01-13 08:43:12,368 Epoch 9 Step: 45300 Batch Loss: 1.758967 Tokens per Sec: 20153, Lr: 0.000300\n", "2020-01-13 08:43:23,728 Epoch 9 Step: 45400 Batch Loss: 1.308548 Tokens per Sec: 19494, Lr: 0.000300\n", "2020-01-13 08:43:35,332 Epoch 9 Step: 45500 Batch Loss: 1.633121 Tokens per Sec: 19522, Lr: 0.000300\n", "2020-01-13 08:43:46,897 Epoch 9 Step: 45600 Batch Loss: 1.944414 Tokens per Sec: 20185, Lr: 0.000300\n", "2020-01-13 08:43:58,347 Epoch 9 Step: 45700 Batch Loss: 1.568448 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-13 08:44:10,003 Epoch 9 Step: 45800 Batch Loss: 1.776435 Tokens per Sec: 20689, Lr: 0.000300\n", "2020-01-13 08:44:21,575 Epoch 9 Step: 45900 Batch Loss: 1.445079 Tokens per Sec: 20107, Lr: 0.000300\n", "2020-01-13 08:44:25,618 Epoch 9: total training loss 8325.11\n", "2020-01-13 08:44:25,618 EPOCH 10\n", "2020-01-13 08:44:33,639 Epoch 10 Step: 46000 Batch Loss: 1.433035 Tokens per Sec: 17931, Lr: 0.000300\n", "2020-01-13 08:45:03,763 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:45:03,763 Saving new checkpoint.\n", "2020-01-13 08:45:04,744 Example #0\n", "2020-01-13 08:45:04,745 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:45:04,745 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:45:04,745 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ịchụso nchegbu .\n", "2020-01-13 08:45:04,745 Example #1\n", "2020-01-13 08:45:04,745 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:45:04,745 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:45:04,745 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:45:04,746 Example #2\n", "2020-01-13 08:45:04,746 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:45:04,746 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:45:04,746 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:45:04,746 Example #3\n", "2020-01-13 08:45:04,746 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:45:04,747 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:45:04,747 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ime ka Chineke gbaghara anyị .\n", "2020-01-13 08:45:04,747 Validation result (greedy) at epoch 10, step 46000: bleu: 27.43, loss: 41889.9922, ppl: 4.2174, duration: 31.1077s\n", "2020-01-13 08:45:16,420 Epoch 10 Step: 46100 Batch Loss: 1.632398 Tokens per Sec: 19218, Lr: 0.000300\n", "2020-01-13 08:45:27,867 Epoch 10 Step: 46200 Batch Loss: 1.653260 Tokens per Sec: 19603, Lr: 0.000300\n", "2020-01-13 08:45:39,391 Epoch 10 Step: 46300 Batch Loss: 1.408912 Tokens per Sec: 20100, Lr: 0.000300\n", "2020-01-13 08:45:50,973 Epoch 10 Step: 46400 Batch Loss: 1.366524 Tokens per Sec: 20082, Lr: 0.000300\n", "2020-01-13 08:46:02,471 Epoch 10 Step: 46500 Batch Loss: 1.441319 Tokens per Sec: 19831, Lr: 0.000300\n", "2020-01-13 08:46:13,970 Epoch 10 Step: 46600 Batch Loss: 1.661922 Tokens per Sec: 20079, Lr: 0.000300\n", "2020-01-13 08:46:25,525 Epoch 10 Step: 46700 Batch Loss: 1.601024 Tokens per Sec: 19960, Lr: 0.000300\n", "2020-01-13 08:46:37,045 Epoch 10 Step: 46800 Batch Loss: 1.643652 Tokens per Sec: 19913, Lr: 0.000300\n", "2020-01-13 08:46:48,649 Epoch 10 Step: 46900 Batch Loss: 1.426945 Tokens per Sec: 20126, Lr: 0.000300\n", "2020-01-13 08:47:00,089 Epoch 10 Step: 47000 Batch Loss: 1.368047 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 08:47:30,224 Example #0\n", "2020-01-13 08:47:30,224 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:47:30,225 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:47:30,225 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ịchụso nchegbu .\n", "2020-01-13 08:47:30,225 Example #1\n", "2020-01-13 08:47:30,225 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:47:30,226 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:47:30,226 \tHypothesis: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta na e mere ndokwa ahụ ?\n", "2020-01-13 08:47:30,226 Example #2\n", "2020-01-13 08:47:30,226 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:47:30,226 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:47:30,226 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 08:47:30,227 Example #3\n", "2020-01-13 08:47:30,227 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:47:30,227 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:47:30,227 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 08:47:30,227 Validation result (greedy) at epoch 10, step 47000: bleu: 27.45, loss: 41891.5273, ppl: 4.2176, duration: 30.1384s\n", "2020-01-13 08:47:41,836 Epoch 10 Step: 47100 Batch Loss: 1.322800 Tokens per Sec: 19633, Lr: 0.000300\n", "2020-01-13 08:47:53,338 Epoch 10 Step: 47200 Batch Loss: 1.700464 Tokens per Sec: 20032, Lr: 0.000300\n", "2020-01-13 08:48:04,775 Epoch 10 Step: 47300 Batch Loss: 1.463789 Tokens per Sec: 19848, Lr: 0.000300\n", "2020-01-13 08:48:16,254 Epoch 10 Step: 47400 Batch Loss: 1.618375 Tokens per Sec: 19929, Lr: 0.000300\n", "2020-01-13 08:48:27,823 Epoch 10 Step: 47500 Batch Loss: 1.591327 Tokens per Sec: 19889, Lr: 0.000300\n", "2020-01-13 08:48:39,368 Epoch 10 Step: 47600 Batch Loss: 1.732282 Tokens per Sec: 19918, Lr: 0.000300\n", "2020-01-13 08:48:50,925 Epoch 10 Step: 47700 Batch Loss: 1.664073 Tokens per Sec: 19805, Lr: 0.000300\n", "2020-01-13 08:49:02,436 Epoch 10 Step: 47800 Batch Loss: 1.610659 Tokens per Sec: 19973, Lr: 0.000300\n", "2020-01-13 08:49:13,971 Epoch 10 Step: 47900 Batch Loss: 1.469066 Tokens per Sec: 19837, Lr: 0.000300\n", "2020-01-13 08:49:25,492 Epoch 10 Step: 48000 Batch Loss: 1.602034 Tokens per Sec: 20613, Lr: 0.000300\n", "2020-01-13 08:49:55,690 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:49:55,690 Saving new checkpoint.\n", "2020-01-13 08:49:56,803 Example #0\n", "2020-01-13 08:49:56,804 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:49:56,804 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:49:56,804 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị dị oké mkpa iji chegbu onwe anyị .\n", "2020-01-13 08:49:56,804 Example #1\n", "2020-01-13 08:49:56,805 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:49:56,805 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:49:56,805 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:49:56,805 Example #2\n", "2020-01-13 08:49:56,805 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:49:56,806 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:49:56,806 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:49:56,806 Example #3\n", "2020-01-13 08:49:56,806 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:49:56,806 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:49:56,806 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 08:49:56,806 Validation result (greedy) at epoch 10, step 48000: bleu: 28.36, loss: 41463.8281, ppl: 4.1561, duration: 31.3141s\n", "2020-01-13 08:50:08,682 Epoch 10 Step: 48100 Batch Loss: 1.502335 Tokens per Sec: 19566, Lr: 0.000300\n", "2020-01-13 08:50:20,206 Epoch 10 Step: 48200 Batch Loss: 1.611160 Tokens per Sec: 20356, Lr: 0.000300\n", "2020-01-13 08:50:31,813 Epoch 10 Step: 48300 Batch Loss: 1.519489 Tokens per Sec: 19887, Lr: 0.000300\n", "2020-01-13 08:50:43,355 Epoch 10 Step: 48400 Batch Loss: 1.513931 Tokens per Sec: 19638, Lr: 0.000300\n", "2020-01-13 08:50:54,749 Epoch 10 Step: 48500 Batch Loss: 1.599451 Tokens per Sec: 19515, Lr: 0.000300\n", "2020-01-13 08:51:06,401 Epoch 10 Step: 48600 Batch Loss: 1.486397 Tokens per Sec: 20046, Lr: 0.000300\n", "2020-01-13 08:51:17,845 Epoch 10 Step: 48700 Batch Loss: 1.626895 Tokens per Sec: 19842, Lr: 0.000300\n", "2020-01-13 08:51:29,401 Epoch 10 Step: 48800 Batch Loss: 1.518212 Tokens per Sec: 19551, Lr: 0.000300\n", "2020-01-13 08:51:40,888 Epoch 10 Step: 48900 Batch Loss: 1.536678 Tokens per Sec: 19850, Lr: 0.000300\n", "2020-01-13 08:51:52,498 Epoch 10 Step: 49000 Batch Loss: 1.822331 Tokens per Sec: 20096, Lr: 0.000300\n", "2020-01-13 08:52:22,679 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:52:22,679 Saving new checkpoint.\n", "2020-01-13 08:52:23,771 Example #0\n", "2020-01-13 08:52:23,774 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:52:23,774 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:52:23,774 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu nke nchegbu anya .\n", "2020-01-13 08:52:23,774 Example #1\n", "2020-01-13 08:52:23,775 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:52:23,775 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:52:23,775 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 08:52:23,775 Example #2\n", "2020-01-13 08:52:23,776 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:52:23,776 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:52:23,776 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:52:23,776 Example #3\n", "2020-01-13 08:52:23,777 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:52:23,777 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:52:23,777 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 08:52:23,777 Validation result (greedy) at epoch 10, step 49000: bleu: 28.20, loss: 41426.2852, ppl: 4.1508, duration: 31.2791s\n", "2020-01-13 08:52:35,532 Epoch 10 Step: 49100 Batch Loss: 1.709632 Tokens per Sec: 19234, Lr: 0.000300\n", "2020-01-13 08:52:46,947 Epoch 10 Step: 49200 Batch Loss: 1.669563 Tokens per Sec: 19998, Lr: 0.000300\n", "2020-01-13 08:52:58,408 Epoch 10 Step: 49300 Batch Loss: 1.495102 Tokens per Sec: 19960, Lr: 0.000300\n", "2020-01-13 08:53:09,792 Epoch 10 Step: 49400 Batch Loss: 2.114047 Tokens per Sec: 20148, Lr: 0.000300\n", "2020-01-13 08:53:21,440 Epoch 10 Step: 49500 Batch Loss: 1.410237 Tokens per Sec: 19723, Lr: 0.000300\n", "2020-01-13 08:53:32,990 Epoch 10 Step: 49600 Batch Loss: 1.824304 Tokens per Sec: 20316, Lr: 0.000300\n", "2020-01-13 08:53:44,564 Epoch 10 Step: 49700 Batch Loss: 1.699417 Tokens per Sec: 20068, Lr: 0.000300\n", "2020-01-13 08:53:56,118 Epoch 10 Step: 49800 Batch Loss: 1.720409 Tokens per Sec: 19544, Lr: 0.000300\n", "2020-01-13 08:54:07,618 Epoch 10 Step: 49900 Batch Loss: 1.647220 Tokens per Sec: 20168, Lr: 0.000300\n", "2020-01-13 08:54:19,201 Epoch 10 Step: 50000 Batch Loss: 1.568731 Tokens per Sec: 19789, Lr: 0.000300\n", "2020-01-13 08:54:49,394 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:54:49,394 Saving new checkpoint.\n", "2020-01-13 08:54:50,475 Example #0\n", "2020-01-13 08:54:50,475 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:54:50,476 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:54:50,476 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu nke nchegbu anya .\n", "2020-01-13 08:54:50,476 Example #1\n", "2020-01-13 08:54:50,476 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:54:50,476 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:54:50,476 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 08:54:50,476 Example #2\n", "2020-01-13 08:54:50,476 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:54:50,477 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:54:50,477 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:54:50,477 Example #3\n", "2020-01-13 08:54:50,477 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:54:50,477 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:54:50,477 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 08:54:50,477 Validation result (greedy) at epoch 10, step 50000: bleu: 28.05, loss: 41242.3672, ppl: 4.1246, duration: 31.2757s\n", "2020-01-13 08:55:02,317 Epoch 10 Step: 50100 Batch Loss: 1.368136 Tokens per Sec: 19590, Lr: 0.000300\n", "2020-01-13 08:55:14,004 Epoch 10 Step: 50200 Batch Loss: 1.607815 Tokens per Sec: 19781, Lr: 0.000300\n", "2020-01-13 08:55:25,656 Epoch 10 Step: 50300 Batch Loss: 1.406188 Tokens per Sec: 20161, Lr: 0.000300\n", "2020-01-13 08:55:37,157 Epoch 10 Step: 50400 Batch Loss: 1.685609 Tokens per Sec: 20302, Lr: 0.000300\n", "2020-01-13 08:55:48,739 Epoch 10 Step: 50500 Batch Loss: 1.606091 Tokens per Sec: 19936, Lr: 0.000300\n", "2020-01-13 08:56:00,198 Epoch 10 Step: 50600 Batch Loss: 1.681821 Tokens per Sec: 19840, Lr: 0.000300\n", "2020-01-13 08:56:11,748 Epoch 10 Step: 50700 Batch Loss: 1.677448 Tokens per Sec: 19545, Lr: 0.000300\n", "2020-01-13 08:56:23,360 Epoch 10 Step: 50800 Batch Loss: 1.778459 Tokens per Sec: 19883, Lr: 0.000300\n", "2020-01-13 08:56:34,811 Epoch 10 Step: 50900 Batch Loss: 1.574057 Tokens per Sec: 19680, Lr: 0.000300\n", "2020-01-13 08:56:46,405 Epoch 10 Step: 51000 Batch Loss: 1.735495 Tokens per Sec: 19859, Lr: 0.000300\n", "2020-01-13 08:57:16,599 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:57:16,600 Saving new checkpoint.\n", "2020-01-13 08:57:17,650 Example #0\n", "2020-01-13 08:57:17,651 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:57:17,651 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:57:17,651 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ịchụso nchegbu .\n", "2020-01-13 08:57:17,651 Example #1\n", "2020-01-13 08:57:17,651 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:57:17,652 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:57:17,652 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 08:57:17,652 Example #2\n", "2020-01-13 08:57:17,652 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:57:17,652 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:57:17,653 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 08:57:17,653 Example #3\n", "2020-01-13 08:57:17,653 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:57:17,653 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:57:17,654 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 08:57:17,654 Validation result (greedy) at epoch 10, step 51000: bleu: 28.68, loss: 41116.9180, ppl: 4.1069, duration: 31.2484s\n", "2020-01-13 08:57:21,408 Epoch 10: total training loss 8138.12\n", "2020-01-13 08:57:21,408 EPOCH 11\n", "2020-01-13 08:57:30,135 Epoch 11 Step: 51100 Batch Loss: 1.544918 Tokens per Sec: 17912, Lr: 0.000300\n", "2020-01-13 08:57:41,722 Epoch 11 Step: 51200 Batch Loss: 1.578583 Tokens per Sec: 19652, Lr: 0.000300\n", "2020-01-13 08:57:53,195 Epoch 11 Step: 51300 Batch Loss: 1.416913 Tokens per Sec: 19850, Lr: 0.000300\n", "2020-01-13 08:58:04,725 Epoch 11 Step: 51400 Batch Loss: 1.586582 Tokens per Sec: 19448, Lr: 0.000300\n", "2020-01-13 08:58:16,298 Epoch 11 Step: 51500 Batch Loss: 1.479609 Tokens per Sec: 20209, Lr: 0.000300\n", "2020-01-13 08:58:27,742 Epoch 11 Step: 51600 Batch Loss: 1.638332 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-13 08:58:39,348 Epoch 11 Step: 51700 Batch Loss: 1.550034 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-13 08:58:50,856 Epoch 11 Step: 51800 Batch Loss: 1.578783 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 08:59:02,366 Epoch 11 Step: 51900 Batch Loss: 1.566876 Tokens per Sec: 20189, Lr: 0.000300\n", "2020-01-13 08:59:13,989 Epoch 11 Step: 52000 Batch Loss: 1.712623 Tokens per Sec: 19905, Lr: 0.000300\n", "2020-01-13 08:59:44,132 Hooray! New best validation result [ppl]!\n", "2020-01-13 08:59:44,132 Saving new checkpoint.\n", "2020-01-13 08:59:45,204 Example #0\n", "2020-01-13 08:59:45,206 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 08:59:45,206 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 08:59:45,207 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 08:59:45,207 Example #1\n", "2020-01-13 08:59:45,207 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 08:59:45,207 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 08:59:45,208 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị mee ka alụmdi na nwunye ghara ịdị ná mma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 08:59:45,208 Example #2\n", "2020-01-13 08:59:45,208 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 08:59:45,209 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 08:59:45,209 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba mba nile àmà .\n", "2020-01-13 08:59:45,209 Example #3\n", "2020-01-13 08:59:45,210 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 08:59:45,210 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 08:59:45,210 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 08:59:45,210 Validation result (greedy) at epoch 11, step 52000: bleu: 28.73, loss: 40960.6406, ppl: 4.0849, duration: 31.2213s\n", "2020-01-13 08:59:57,114 Epoch 11 Step: 52100 Batch Loss: 1.464128 Tokens per Sec: 19232, Lr: 0.000300\n", "2020-01-13 09:00:08,739 Epoch 11 Step: 52200 Batch Loss: 1.582245 Tokens per Sec: 20047, Lr: 0.000300\n", "2020-01-13 09:00:20,156 Epoch 11 Step: 52300 Batch Loss: 1.465297 Tokens per Sec: 19817, Lr: 0.000300\n", "2020-01-13 09:00:31,715 Epoch 11 Step: 52400 Batch Loss: 1.570790 Tokens per Sec: 19815, Lr: 0.000300\n", "2020-01-13 09:00:43,272 Epoch 11 Step: 52500 Batch Loss: 1.360882 Tokens per Sec: 19828, Lr: 0.000300\n", "2020-01-13 09:00:54,830 Epoch 11 Step: 52600 Batch Loss: 1.598646 Tokens per Sec: 19918, Lr: 0.000300\n", "2020-01-13 09:01:06,336 Epoch 11 Step: 52700 Batch Loss: 1.695048 Tokens per Sec: 19565, Lr: 0.000300\n", "2020-01-13 09:01:17,891 Epoch 11 Step: 52800 Batch Loss: 1.583374 Tokens per Sec: 19762, Lr: 0.000300\n", "2020-01-13 09:01:29,426 Epoch 11 Step: 52900 Batch Loss: 1.542668 Tokens per Sec: 19667, Lr: 0.000300\n", "2020-01-13 09:01:40,976 Epoch 11 Step: 53000 Batch Loss: 1.699781 Tokens per Sec: 19835, Lr: 0.000300\n", "2020-01-13 09:02:11,171 Example #0\n", "2020-01-13 09:02:11,172 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:02:11,172 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:02:11,172 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:02:11,172 Example #1\n", "2020-01-13 09:02:11,173 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:02:11,173 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:02:11,173 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ mee ?\n", "2020-01-13 09:02:11,173 Example #2\n", "2020-01-13 09:02:11,174 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:02:11,174 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:02:11,174 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:02:11,174 Example #3\n", "2020-01-13 09:02:11,174 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:02:11,175 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:02:11,175 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 09:02:11,176 Validation result (greedy) at epoch 11, step 53000: bleu: 28.54, loss: 40996.7188, ppl: 4.0899, duration: 30.2000s\n", "2020-01-13 09:02:22,807 Epoch 11 Step: 53100 Batch Loss: 1.714083 Tokens per Sec: 19848, Lr: 0.000300\n", "2020-01-13 09:02:34,294 Epoch 11 Step: 53200 Batch Loss: 1.359223 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 09:02:45,934 Epoch 11 Step: 53300 Batch Loss: 1.718057 Tokens per Sec: 20034, Lr: 0.000300\n", "2020-01-13 09:02:57,473 Epoch 11 Step: 53400 Batch Loss: 1.598432 Tokens per Sec: 19829, Lr: 0.000300\n", "2020-01-13 09:03:08,945 Epoch 11 Step: 53500 Batch Loss: 1.598577 Tokens per Sec: 19547, Lr: 0.000300\n", "2020-01-13 09:03:20,593 Epoch 11 Step: 53600 Batch Loss: 1.353090 Tokens per Sec: 19738, Lr: 0.000300\n", "2020-01-13 09:03:32,109 Epoch 11 Step: 53700 Batch Loss: 1.589886 Tokens per Sec: 20057, Lr: 0.000300\n", "2020-01-13 09:03:43,704 Epoch 11 Step: 53800 Batch Loss: 1.673413 Tokens per Sec: 19794, Lr: 0.000300\n", "2020-01-13 09:03:55,216 Epoch 11 Step: 53900 Batch Loss: 1.654640 Tokens per Sec: 19638, Lr: 0.000300\n", "2020-01-13 09:04:06,662 Epoch 11 Step: 54000 Batch Loss: 1.482861 Tokens per Sec: 20198, Lr: 0.000300\n", "2020-01-13 09:04:36,906 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:04:36,906 Saving new checkpoint.\n", "2020-01-13 09:04:37,923 Example #0\n", "2020-01-13 09:04:37,923 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:04:37,924 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:04:37,924 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 09:04:37,924 Example #1\n", "2020-01-13 09:04:37,924 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:04:37,924 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:04:37,925 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:04:37,925 Example #2\n", "2020-01-13 09:04:37,925 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:04:37,925 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:04:37,926 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:04:37,926 Example #3\n", "2020-01-13 09:04:37,926 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:04:37,926 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:04:37,926 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 09:04:37,927 Validation result (greedy) at epoch 11, step 54000: bleu: 28.73, loss: 40663.8281, ppl: 4.0434, duration: 31.2641s\n", "2020-01-13 09:04:49,874 Epoch 11 Step: 54100 Batch Loss: 1.893617 Tokens per Sec: 19683, Lr: 0.000300\n", "2020-01-13 09:05:01,385 Epoch 11 Step: 54200 Batch Loss: 1.544221 Tokens per Sec: 19764, Lr: 0.000300\n", "2020-01-13 09:05:13,023 Epoch 11 Step: 54300 Batch Loss: 1.512751 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 09:05:24,559 Epoch 11 Step: 54400 Batch Loss: 1.608463 Tokens per Sec: 19935, Lr: 0.000300\n", "2020-01-13 09:05:36,106 Epoch 11 Step: 54500 Batch Loss: 1.469299 Tokens per Sec: 19644, Lr: 0.000300\n", "2020-01-13 09:05:47,680 Epoch 11 Step: 54600 Batch Loss: 1.681695 Tokens per Sec: 19718, Lr: 0.000300\n", "2020-01-13 09:05:59,244 Epoch 11 Step: 54700 Batch Loss: 1.591278 Tokens per Sec: 20201, Lr: 0.000300\n", "2020-01-13 09:06:10,876 Epoch 11 Step: 54800 Batch Loss: 1.651492 Tokens per Sec: 19999, Lr: 0.000300\n", "2020-01-13 09:06:22,419 Epoch 11 Step: 54900 Batch Loss: 1.541473 Tokens per Sec: 19984, Lr: 0.000300\n", "2020-01-13 09:06:33,990 Epoch 11 Step: 55000 Batch Loss: 1.322316 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-13 09:07:04,164 Example #0\n", "2020-01-13 09:07:04,165 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:07:04,165 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:07:04,165 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 09:07:04,165 Example #1\n", "2020-01-13 09:07:04,166 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:07:04,166 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:07:04,166 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:07:04,167 Example #2\n", "2020-01-13 09:07:04,168 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:07:04,168 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:07:04,168 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:07:04,168 Example #3\n", "2020-01-13 09:07:04,169 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:07:04,169 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:07:04,169 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 09:07:04,170 Validation result (greedy) at epoch 11, step 55000: bleu: 28.55, loss: 40711.6523, ppl: 4.0501, duration: 30.1792s\n", "2020-01-13 09:07:15,739 Epoch 11 Step: 55100 Batch Loss: 1.495230 Tokens per Sec: 19762, Lr: 0.000300\n", "2020-01-13 09:07:27,229 Epoch 11 Step: 55200 Batch Loss: 1.652723 Tokens per Sec: 19973, Lr: 0.000300\n", "2020-01-13 09:07:38,730 Epoch 11 Step: 55300 Batch Loss: 1.451024 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 09:07:50,340 Epoch 11 Step: 55400 Batch Loss: 1.486118 Tokens per Sec: 19871, Lr: 0.000300\n", "2020-01-13 09:08:01,856 Epoch 11 Step: 55500 Batch Loss: 1.679765 Tokens per Sec: 19771, Lr: 0.000300\n", "2020-01-13 09:08:13,343 Epoch 11 Step: 55600 Batch Loss: 1.615588 Tokens per Sec: 19690, Lr: 0.000300\n", "2020-01-13 09:08:24,869 Epoch 11 Step: 55700 Batch Loss: 1.716357 Tokens per Sec: 20048, Lr: 0.000300\n", "2020-01-13 09:08:36,355 Epoch 11 Step: 55800 Batch Loss: 1.353883 Tokens per Sec: 19930, Lr: 0.000300\n", "2020-01-13 09:08:47,793 Epoch 11 Step: 55900 Batch Loss: 1.440055 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-13 09:08:59,434 Epoch 11 Step: 56000 Batch Loss: 1.579435 Tokens per Sec: 20275, Lr: 0.000300\n", "2020-01-13 09:09:29,605 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:09:29,606 Saving new checkpoint.\n", "2020-01-13 09:09:31,003 Example #0\n", "2020-01-13 09:09:31,003 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:09:31,003 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:09:31,004 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:09:31,004 Example #1\n", "2020-01-13 09:09:31,004 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:09:31,005 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:09:31,005 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye gaa nke ọma n’agbanyeghị mgbalị Setan mere ime ka e nwee ndokwa ahụ ?\n", "2020-01-13 09:09:31,005 Example #2\n", "2020-01-13 09:09:31,005 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:09:31,006 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:09:31,006 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:09:31,006 Example #3\n", "2020-01-13 09:09:31,006 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:09:31,007 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:09:31,007 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:09:31,007 Validation result (greedy) at epoch 11, step 56000: bleu: 28.81, loss: 40371.3438, ppl: 4.0030, duration: 31.5726s\n", "2020-01-13 09:09:42,878 Epoch 11 Step: 56100 Batch Loss: 1.606054 Tokens per Sec: 19305, Lr: 0.000300\n", "2020-01-13 09:09:46,521 Epoch 11: total training loss 8007.46\n", "2020-01-13 09:09:46,522 EPOCH 12\n", "2020-01-13 09:09:54,971 Epoch 12 Step: 56200 Batch Loss: 1.478729 Tokens per Sec: 18643, Lr: 0.000300\n", "2020-01-13 09:10:06,528 Epoch 12 Step: 56300 Batch Loss: 1.391351 Tokens per Sec: 19771, Lr: 0.000300\n", "2020-01-13 09:10:17,989 Epoch 12 Step: 56400 Batch Loss: 1.573399 Tokens per Sec: 20014, Lr: 0.000300\n", "2020-01-13 09:10:29,584 Epoch 12 Step: 56500 Batch Loss: 1.527447 Tokens per Sec: 19847, Lr: 0.000300\n", "2020-01-13 09:10:41,002 Epoch 12 Step: 56600 Batch Loss: 1.542563 Tokens per Sec: 19889, Lr: 0.000300\n", "2020-01-13 09:10:52,340 Epoch 12 Step: 56700 Batch Loss: 1.742646 Tokens per Sec: 19462, Lr: 0.000300\n", "2020-01-13 09:11:03,943 Epoch 12 Step: 56800 Batch Loss: 1.427559 Tokens per Sec: 19974, Lr: 0.000300\n", "2020-01-13 09:11:15,404 Epoch 12 Step: 56900 Batch Loss: 1.587583 Tokens per Sec: 19793, Lr: 0.000300\n", "2020-01-13 09:11:26,926 Epoch 12 Step: 57000 Batch Loss: 1.429892 Tokens per Sec: 19795, Lr: 0.000300\n", "2020-01-13 09:11:57,103 Example #0\n", "2020-01-13 09:11:57,104 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:11:57,104 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:11:57,104 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 09:11:57,104 Example #1\n", "2020-01-13 09:11:57,105 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:11:57,105 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:11:57,105 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ọnọdụ ahụ ?\n", "2020-01-13 09:11:57,105 Example #2\n", "2020-01-13 09:11:57,105 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:11:57,106 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:11:57,106 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:11:57,106 Example #3\n", "2020-01-13 09:11:57,106 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:11:57,106 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:11:57,107 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:11:57,107 Validation result (greedy) at epoch 12, step 57000: bleu: 28.98, loss: 40384.2891, ppl: 4.0048, duration: 30.1807s\n", "2020-01-13 09:12:08,590 Epoch 12 Step: 57100 Batch Loss: 1.515311 Tokens per Sec: 19981, Lr: 0.000300\n", "2020-01-13 09:12:20,140 Epoch 12 Step: 57200 Batch Loss: 1.795254 Tokens per Sec: 19770, Lr: 0.000300\n", "2020-01-13 09:12:31,606 Epoch 12 Step: 57300 Batch Loss: 1.479043 Tokens per Sec: 19983, Lr: 0.000300\n", "2020-01-13 09:12:43,184 Epoch 12 Step: 57400 Batch Loss: 1.517710 Tokens per Sec: 20108, Lr: 0.000300\n", "2020-01-13 09:12:54,743 Epoch 12 Step: 57500 Batch Loss: 1.904077 Tokens per Sec: 20007, Lr: 0.000300\n", "2020-01-13 09:13:06,242 Epoch 12 Step: 57600 Batch Loss: 1.376219 Tokens per Sec: 20056, Lr: 0.000300\n", "2020-01-13 09:13:17,721 Epoch 12 Step: 57700 Batch Loss: 1.622621 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 09:13:29,156 Epoch 12 Step: 57800 Batch Loss: 1.476619 Tokens per Sec: 19384, Lr: 0.000300\n", "2020-01-13 09:13:40,751 Epoch 12 Step: 57900 Batch Loss: 1.399564 Tokens per Sec: 20092, Lr: 0.000300\n", "2020-01-13 09:13:52,371 Epoch 12 Step: 58000 Batch Loss: 1.468787 Tokens per Sec: 20094, Lr: 0.000300\n", "2020-01-13 09:14:22,566 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:14:22,566 Saving new checkpoint.\n", "2020-01-13 09:14:23,796 Example #0\n", "2020-01-13 09:14:23,796 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:14:23,796 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:14:23,797 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na ilekọta anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:14:23,797 Example #1\n", "2020-01-13 09:14:23,797 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:14:23,797 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:14:23,797 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:14:23,797 Example #2\n", "2020-01-13 09:14:23,798 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:14:23,798 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:14:23,798 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:14:23,798 Example #3\n", "2020-01-13 09:14:23,798 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:14:23,798 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:14:23,798 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 09:14:23,798 Validation result (greedy) at epoch 12, step 58000: bleu: 29.03, loss: 40312.2070, ppl: 3.9949, duration: 31.4268s\n", "2020-01-13 09:14:35,833 Epoch 12 Step: 58100 Batch Loss: 1.607701 Tokens per Sec: 19290, Lr: 0.000300\n", "2020-01-13 09:14:47,349 Epoch 12 Step: 58200 Batch Loss: 1.457875 Tokens per Sec: 19582, Lr: 0.000300\n", "2020-01-13 09:14:58,924 Epoch 12 Step: 58300 Batch Loss: 1.643761 Tokens per Sec: 19692, Lr: 0.000300\n", "2020-01-13 09:15:10,624 Epoch 12 Step: 58400 Batch Loss: 1.470086 Tokens per Sec: 20069, Lr: 0.000300\n", "2020-01-13 09:15:22,108 Epoch 12 Step: 58500 Batch Loss: 1.576323 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 09:15:33,723 Epoch 12 Step: 58600 Batch Loss: 1.429115 Tokens per Sec: 19940, Lr: 0.000300\n", "2020-01-13 09:15:45,366 Epoch 12 Step: 58700 Batch Loss: 1.550451 Tokens per Sec: 19872, Lr: 0.000300\n", "2020-01-13 09:15:56,779 Epoch 12 Step: 58800 Batch Loss: 1.404888 Tokens per Sec: 19963, Lr: 0.000300\n", "2020-01-13 09:16:08,453 Epoch 12 Step: 58900 Batch Loss: 1.682301 Tokens per Sec: 20134, Lr: 0.000300\n", "2020-01-13 09:16:20,107 Epoch 12 Step: 59000 Batch Loss: 1.464571 Tokens per Sec: 19965, Lr: 0.000300\n", "2020-01-13 09:16:50,351 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:16:50,352 Saving new checkpoint.\n", "2020-01-13 09:16:51,817 Example #0\n", "2020-01-13 09:16:51,817 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:16:51,817 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:16:51,817 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 09:16:51,817 Example #1\n", "2020-01-13 09:16:51,818 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:16:51,818 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:16:51,818 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 09:16:51,818 Example #2\n", "2020-01-13 09:16:51,818 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:16:51,818 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:16:51,818 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enyere ndị ọzọ aka ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:16:51,818 Example #3\n", "2020-01-13 09:16:51,819 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:16:51,819 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:16:51,819 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:16:51,819 Validation result (greedy) at epoch 12, step 59000: bleu: 28.96, loss: 40167.6094, ppl: 3.9751, duration: 31.7120s\n", "2020-01-13 09:17:03,696 Epoch 12 Step: 59100 Batch Loss: 1.536595 Tokens per Sec: 18779, Lr: 0.000300\n", "2020-01-13 09:17:15,259 Epoch 12 Step: 59200 Batch Loss: 1.577935 Tokens per Sec: 19968, Lr: 0.000300\n", "2020-01-13 09:17:26,819 Epoch 12 Step: 59300 Batch Loss: 1.668150 Tokens per Sec: 19870, Lr: 0.000300\n", "2020-01-13 09:17:38,434 Epoch 12 Step: 59400 Batch Loss: 1.964987 Tokens per Sec: 19901, Lr: 0.000300\n", "2020-01-13 09:17:49,938 Epoch 12 Step: 59500 Batch Loss: 1.692873 Tokens per Sec: 19627, Lr: 0.000300\n", "2020-01-13 09:18:01,570 Epoch 12 Step: 59600 Batch Loss: 1.411764 Tokens per Sec: 19674, Lr: 0.000300\n", "2020-01-13 09:18:13,011 Epoch 12 Step: 59700 Batch Loss: 1.494367 Tokens per Sec: 19590, Lr: 0.000300\n", "2020-01-13 09:18:24,479 Epoch 12 Step: 59800 Batch Loss: 1.596408 Tokens per Sec: 19442, Lr: 0.000300\n", "2020-01-13 09:18:36,174 Epoch 12 Step: 59900 Batch Loss: 1.538542 Tokens per Sec: 19914, Lr: 0.000300\n", "2020-01-13 09:18:47,647 Epoch 12 Step: 60000 Batch Loss: 1.485606 Tokens per Sec: 20015, Lr: 0.000300\n", "2020-01-13 09:19:17,943 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:19:17,944 Saving new checkpoint.\n", "2020-01-13 09:19:19,083 Example #0\n", "2020-01-13 09:19:19,083 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:19:19,083 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:19:19,083 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya , na - echebara anyị echiche .\n", "2020-01-13 09:19:19,083 Example #1\n", "2020-01-13 09:19:19,084 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:19:19,084 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:19:19,084 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 09:19:19,084 Example #2\n", "2020-01-13 09:19:19,084 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:19:19,084 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:19:19,084 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:19:19,085 Example #3\n", "2020-01-13 09:19:19,085 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:19:19,085 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:19:19,085 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:19:19,085 Validation result (greedy) at epoch 12, step 60000: bleu: 28.66, loss: 40124.0547, ppl: 3.9691, duration: 31.4374s\n", "2020-01-13 09:19:31,017 Epoch 12 Step: 60100 Batch Loss: 1.423362 Tokens per Sec: 19154, Lr: 0.000300\n", "2020-01-13 09:19:42,609 Epoch 12 Step: 60200 Batch Loss: 1.671028 Tokens per Sec: 19716, Lr: 0.000300\n", "2020-01-13 09:19:54,396 Epoch 12 Step: 60300 Batch Loss: 1.479600 Tokens per Sec: 19864, Lr: 0.000300\n", "2020-01-13 09:20:05,881 Epoch 12 Step: 60400 Batch Loss: 1.361329 Tokens per Sec: 19551, Lr: 0.000300\n", "2020-01-13 09:20:17,567 Epoch 12 Step: 60500 Batch Loss: 1.523140 Tokens per Sec: 20312, Lr: 0.000300\n", "2020-01-13 09:20:29,172 Epoch 12 Step: 60600 Batch Loss: 1.398099 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-13 09:20:40,766 Epoch 12 Step: 60700 Batch Loss: 1.447477 Tokens per Sec: 20128, Lr: 0.000300\n", "2020-01-13 09:20:52,329 Epoch 12 Step: 60800 Batch Loss: 1.586413 Tokens per Sec: 19630, Lr: 0.000300\n", "2020-01-13 09:21:03,965 Epoch 12 Step: 60900 Batch Loss: 1.487246 Tokens per Sec: 19651, Lr: 0.000300\n", "2020-01-13 09:21:15,428 Epoch 12 Step: 61000 Batch Loss: 1.569330 Tokens per Sec: 20116, Lr: 0.000300\n", "2020-01-13 09:21:45,730 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:21:45,731 Saving new checkpoint.\n", "2020-01-13 09:21:46,864 Example #0\n", "2020-01-13 09:21:46,864 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:21:46,864 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:21:46,864 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 09:21:46,865 Example #1\n", "2020-01-13 09:21:46,865 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:21:46,865 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:21:46,865 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka a ghọta ndokwa ahụ ?\n", "2020-01-13 09:21:46,865 Example #2\n", "2020-01-13 09:21:46,865 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:21:46,866 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:21:46,866 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 09:21:46,866 Example #3\n", "2020-01-13 09:21:46,866 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:21:46,866 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:21:46,866 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 09:21:46,866 Validation result (greedy) at epoch 12, step 61000: bleu: 29.20, loss: 39974.7461, ppl: 3.9488, duration: 31.4377s\n", "2020-01-13 09:21:58,740 Epoch 12 Step: 61100 Batch Loss: 1.592160 Tokens per Sec: 19546, Lr: 0.000300\n", "2020-01-13 09:22:10,331 Epoch 12 Step: 61200 Batch Loss: 1.510626 Tokens per Sec: 19815, Lr: 0.000300\n", "2020-01-13 09:22:14,107 Epoch 12: total training loss 7882.20\n", "2020-01-13 09:22:14,108 EPOCH 13\n", "2020-01-13 09:22:22,662 Epoch 13 Step: 61300 Batch Loss: 1.635455 Tokens per Sec: 18380, Lr: 0.000300\n", "2020-01-13 09:22:34,157 Epoch 13 Step: 61400 Batch Loss: 1.560789 Tokens per Sec: 19977, Lr: 0.000300\n", "2020-01-13 09:22:45,834 Epoch 13 Step: 61500 Batch Loss: 1.663372 Tokens per Sec: 20150, Lr: 0.000300\n", "2020-01-13 09:22:57,442 Epoch 13 Step: 61600 Batch Loss: 1.397251 Tokens per Sec: 19624, Lr: 0.000300\n", "2020-01-13 09:23:08,958 Epoch 13 Step: 61700 Batch Loss: 1.523061 Tokens per Sec: 19948, Lr: 0.000300\n", "2020-01-13 09:23:20,615 Epoch 13 Step: 61800 Batch Loss: 1.499933 Tokens per Sec: 19997, Lr: 0.000300\n", "2020-01-13 09:23:32,015 Epoch 13 Step: 61900 Batch Loss: 1.556654 Tokens per Sec: 19318, Lr: 0.000300\n", "2020-01-13 09:23:43,524 Epoch 13 Step: 62000 Batch Loss: 1.620594 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-13 09:24:13,796 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:24:13,797 Saving new checkpoint.\n", "2020-01-13 09:24:15,375 Example #0\n", "2020-01-13 09:24:15,375 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:24:15,375 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:24:15,376 \tHypothesis: Ịmara na anyị nwere Nna eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:24:15,376 Example #1\n", "2020-01-13 09:24:15,376 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:24:15,376 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:24:15,376 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:24:15,376 Example #2\n", "2020-01-13 09:24:15,376 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:24:15,377 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:24:15,377 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke alaeze a ” maka àmà nye mba nile .\n", "2020-01-13 09:24:15,377 Example #3\n", "2020-01-13 09:24:15,377 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:24:15,377 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:24:15,377 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:24:15,377 Validation result (greedy) at epoch 13, step 62000: bleu: 29.42, loss: 39907.7773, ppl: 3.9398, duration: 31.8524s\n", "2020-01-13 09:24:27,113 Epoch 13 Step: 62100 Batch Loss: 1.539057 Tokens per Sec: 19201, Lr: 0.000300\n", "2020-01-13 09:24:38,828 Epoch 13 Step: 62200 Batch Loss: 1.501878 Tokens per Sec: 20090, Lr: 0.000300\n", "2020-01-13 09:24:50,408 Epoch 13 Step: 62300 Batch Loss: 1.580502 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-13 09:25:02,074 Epoch 13 Step: 62400 Batch Loss: 1.590989 Tokens per Sec: 19650, Lr: 0.000300\n", "2020-01-13 09:25:13,739 Epoch 13 Step: 62500 Batch Loss: 1.647808 Tokens per Sec: 19767, Lr: 0.000300\n", "2020-01-13 09:25:25,257 Epoch 13 Step: 62600 Batch Loss: 1.254688 Tokens per Sec: 19666, Lr: 0.000300\n", "2020-01-13 09:25:36,882 Epoch 13 Step: 62700 Batch Loss: 1.494269 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-13 09:25:48,426 Epoch 13 Step: 62800 Batch Loss: 1.575274 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 09:25:59,980 Epoch 13 Step: 62900 Batch Loss: 1.665422 Tokens per Sec: 19413, Lr: 0.000300\n", "2020-01-13 09:26:11,655 Epoch 13 Step: 63000 Batch Loss: 1.707022 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 09:26:41,876 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:26:41,876 Saving new checkpoint.\n", "2020-01-13 09:26:43,085 Example #0\n", "2020-01-13 09:26:43,086 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:26:43,086 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:26:43,086 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:26:43,086 Example #1\n", "2020-01-13 09:26:43,086 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:26:43,086 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:26:43,086 \tHypothesis: Gịnị ka ọ dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:26:43,087 Example #2\n", "2020-01-13 09:26:43,087 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:26:43,087 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:26:43,087 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:26:43,087 Example #3\n", "2020-01-13 09:26:43,088 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:26:43,088 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:26:43,088 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:26:43,088 Validation result (greedy) at epoch 13, step 63000: bleu: 29.19, loss: 39881.3867, ppl: 3.9362, duration: 31.4330s\n", "2020-01-13 09:26:54,807 Epoch 13 Step: 63100 Batch Loss: 1.526146 Tokens per Sec: 19061, Lr: 0.000300\n", "2020-01-13 09:27:06,507 Epoch 13 Step: 63200 Batch Loss: 1.610457 Tokens per Sec: 19434, Lr: 0.000300\n", "2020-01-13 09:27:18,182 Epoch 13 Step: 63300 Batch Loss: 1.334679 Tokens per Sec: 20027, Lr: 0.000300\n", "2020-01-13 09:27:29,679 Epoch 13 Step: 63400 Batch Loss: 1.445917 Tokens per Sec: 19749, Lr: 0.000300\n", "2020-01-13 09:27:41,266 Epoch 13 Step: 63500 Batch Loss: 1.322295 Tokens per Sec: 19320, Lr: 0.000300\n", "2020-01-13 09:27:52,651 Epoch 13 Step: 63600 Batch Loss: 1.671492 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-13 09:28:04,219 Epoch 13 Step: 63700 Batch Loss: 1.485331 Tokens per Sec: 19235, Lr: 0.000300\n", "2020-01-13 09:28:15,906 Epoch 13 Step: 63800 Batch Loss: 1.602136 Tokens per Sec: 20314, Lr: 0.000300\n", "2020-01-13 09:28:27,466 Epoch 13 Step: 63900 Batch Loss: 1.671049 Tokens per Sec: 19870, Lr: 0.000300\n", "2020-01-13 09:28:39,135 Epoch 13 Step: 64000 Batch Loss: 1.596403 Tokens per Sec: 19734, Lr: 0.000300\n", "2020-01-13 09:29:09,355 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:29:09,356 Saving new checkpoint.\n", "2020-01-13 09:29:10,593 Example #0\n", "2020-01-13 09:29:10,594 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:29:10,594 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:29:10,594 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imerụ nchegbu .\n", "2020-01-13 09:29:10,594 Example #1\n", "2020-01-13 09:29:10,595 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:29:10,595 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:29:10,595 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 09:29:10,595 Example #2\n", "2020-01-13 09:29:10,596 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:29:10,596 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:29:10,596 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:29:10,596 Example #3\n", "2020-01-13 09:29:10,597 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:29:10,597 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:29:10,597 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:29:10,597 Validation result (greedy) at epoch 13, step 64000: bleu: 29.50, loss: 39645.2969, ppl: 3.9044, duration: 31.4623s\n", "2020-01-13 09:29:22,064 Epoch 13 Step: 64100 Batch Loss: 1.465693 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-13 09:29:33,592 Epoch 13 Step: 64200 Batch Loss: 1.440040 Tokens per Sec: 19733, Lr: 0.000300\n", "2020-01-13 09:29:45,165 Epoch 13 Step: 64300 Batch Loss: 1.448724 Tokens per Sec: 20186, Lr: 0.000300\n", "2020-01-13 09:29:56,708 Epoch 13 Step: 64400 Batch Loss: 1.504876 Tokens per Sec: 19347, Lr: 0.000300\n", "2020-01-13 09:30:08,432 Epoch 13 Step: 64500 Batch Loss: 1.508912 Tokens per Sec: 20063, Lr: 0.000300\n", "2020-01-13 09:30:20,058 Epoch 13 Step: 64600 Batch Loss: 1.626925 Tokens per Sec: 19581, Lr: 0.000300\n", "2020-01-13 09:30:31,657 Epoch 13 Step: 64700 Batch Loss: 1.760769 Tokens per Sec: 20137, Lr: 0.000300\n", "2020-01-13 09:30:43,055 Epoch 13 Step: 64800 Batch Loss: 1.519953 Tokens per Sec: 19751, Lr: 0.000300\n", "2020-01-13 09:30:54,581 Epoch 13 Step: 64900 Batch Loss: 1.657388 Tokens per Sec: 19816, Lr: 0.000300\n", "2020-01-13 09:31:06,155 Epoch 13 Step: 65000 Batch Loss: 1.348203 Tokens per Sec: 19878, Lr: 0.000300\n", "2020-01-13 09:31:36,308 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:31:36,308 Saving new checkpoint.\n", "2020-01-13 09:31:37,428 Example #0\n", "2020-01-13 09:31:37,428 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:31:37,428 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:31:37,428 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa ná nchegbu .\n", "2020-01-13 09:31:37,428 Example #1\n", "2020-01-13 09:31:37,429 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:31:37,429 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:31:37,429 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka anyị ghọta ndokwa ahụ ?\n", "2020-01-13 09:31:37,429 Example #2\n", "2020-01-13 09:31:37,429 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:31:37,429 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:31:37,429 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enyere ha aka ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:31:37,429 Example #3\n", "2020-01-13 09:31:37,430 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:31:37,430 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:31:37,430 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:31:37,430 Validation result (greedy) at epoch 13, step 65000: bleu: 29.69, loss: 39436.2383, ppl: 3.8764, duration: 31.2743s\n", "2020-01-13 09:31:49,089 Epoch 13 Step: 65100 Batch Loss: 1.415197 Tokens per Sec: 19678, Lr: 0.000300\n", "2020-01-13 09:32:00,679 Epoch 13 Step: 65200 Batch Loss: 1.458977 Tokens per Sec: 19862, Lr: 0.000300\n", "2020-01-13 09:32:12,172 Epoch 13 Step: 65300 Batch Loss: 1.462790 Tokens per Sec: 19911, Lr: 0.000300\n", "2020-01-13 09:32:23,841 Epoch 13 Step: 65400 Batch Loss: 1.529133 Tokens per Sec: 20007, Lr: 0.000300\n", "2020-01-13 09:32:35,393 Epoch 13 Step: 65500 Batch Loss: 1.652852 Tokens per Sec: 20107, Lr: 0.000300\n", "2020-01-13 09:32:46,959 Epoch 13 Step: 65600 Batch Loss: 1.753726 Tokens per Sec: 19562, Lr: 0.000300\n", "2020-01-13 09:32:58,492 Epoch 13 Step: 65700 Batch Loss: 1.519032 Tokens per Sec: 19782, Lr: 0.000300\n", "2020-01-13 09:33:09,979 Epoch 13 Step: 65800 Batch Loss: 1.566110 Tokens per Sec: 19992, Lr: 0.000300\n", "2020-01-13 09:33:21,524 Epoch 13 Step: 65900 Batch Loss: 1.365685 Tokens per Sec: 19660, Lr: 0.000300\n", "2020-01-13 09:33:33,002 Epoch 13 Step: 66000 Batch Loss: 1.257164 Tokens per Sec: 19775, Lr: 0.000300\n", "2020-01-13 09:34:03,180 Example #0\n", "2020-01-13 09:34:03,181 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:34:03,181 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:34:03,181 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na nchegbu anyị dị oké mkpa iji merie nchegbu .\n", "2020-01-13 09:34:03,182 Example #1\n", "2020-01-13 09:34:03,182 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:34:03,182 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:34:03,182 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 09:34:03,182 Example #2\n", "2020-01-13 09:34:03,183 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:34:03,183 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:34:03,183 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka dị oké mkpa n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:34:03,183 Example #3\n", "2020-01-13 09:34:03,184 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:34:03,184 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:34:03,184 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - abịa n’inweta mgbaghara Chineke .\n", "2020-01-13 09:34:03,184 Validation result (greedy) at epoch 13, step 66000: bleu: 29.69, loss: 39632.5508, ppl: 3.9027, duration: 30.1810s\n", "2020-01-13 09:34:14,768 Epoch 13 Step: 66100 Batch Loss: 1.527284 Tokens per Sec: 20043, Lr: 0.000300\n", "2020-01-13 09:34:26,215 Epoch 13 Step: 66200 Batch Loss: 1.593078 Tokens per Sec: 20106, Lr: 0.000300\n", "2020-01-13 09:34:37,780 Epoch 13 Step: 66300 Batch Loss: 1.550935 Tokens per Sec: 19901, Lr: 0.000300\n", "2020-01-13 09:34:42,062 Epoch 13: total training loss 7773.86\n", "2020-01-13 09:34:42,063 EPOCH 14\n", "2020-01-13 09:34:49,788 Epoch 14 Step: 66400 Batch Loss: 1.484135 Tokens per Sec: 18554, Lr: 0.000300\n", "2020-01-13 09:35:01,325 Epoch 14 Step: 66500 Batch Loss: 1.466645 Tokens per Sec: 19973, Lr: 0.000300\n", "2020-01-13 09:35:12,938 Epoch 14 Step: 66600 Batch Loss: 1.564465 Tokens per Sec: 20208, Lr: 0.000300\n", "2020-01-13 09:35:24,526 Epoch 14 Step: 66700 Batch Loss: 1.238764 Tokens per Sec: 19557, Lr: 0.000300\n", "2020-01-13 09:35:36,109 Epoch 14 Step: 66800 Batch Loss: 1.763748 Tokens per Sec: 19946, Lr: 0.000300\n", "2020-01-13 09:35:47,540 Epoch 14 Step: 66900 Batch Loss: 1.879773 Tokens per Sec: 19854, Lr: 0.000300\n", "2020-01-13 09:35:58,985 Epoch 14 Step: 67000 Batch Loss: 1.665398 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-13 09:36:29,242 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:36:29,243 Saving new checkpoint.\n", "2020-01-13 09:36:30,357 Example #0\n", "2020-01-13 09:36:30,358 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:36:30,358 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:36:30,358 \tHypothesis: Ịmata na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 09:36:30,358 Example #1\n", "2020-01-13 09:36:30,358 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:36:30,358 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:36:30,358 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ike ime ndokwa ahụ ?\n", "2020-01-13 09:36:30,359 Example #2\n", "2020-01-13 09:36:30,359 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:36:30,359 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:36:30,359 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:36:30,359 Example #3\n", "2020-01-13 09:36:30,359 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:36:30,360 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:36:30,360 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:36:30,360 Validation result (greedy) at epoch 14, step 67000: bleu: 29.51, loss: 39369.9023, ppl: 3.8676, duration: 31.3746s\n", "2020-01-13 09:36:41,870 Epoch 14 Step: 67100 Batch Loss: 2.205427 Tokens per Sec: 19612, Lr: 0.000300\n", "2020-01-13 09:36:53,356 Epoch 14 Step: 67200 Batch Loss: 1.435747 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-13 09:37:04,939 Epoch 14 Step: 67300 Batch Loss: 1.590317 Tokens per Sec: 19539, Lr: 0.000300\n", "2020-01-13 09:37:16,380 Epoch 14 Step: 67400 Batch Loss: 1.446810 Tokens per Sec: 19773, Lr: 0.000300\n", "2020-01-13 09:37:27,958 Epoch 14 Step: 67500 Batch Loss: 1.521160 Tokens per Sec: 20158, Lr: 0.000300\n", "2020-01-13 09:37:39,477 Epoch 14 Step: 67600 Batch Loss: 1.444792 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-13 09:37:50,915 Epoch 14 Step: 67700 Batch Loss: 1.406044 Tokens per Sec: 19896, Lr: 0.000300\n", "2020-01-13 09:38:02,559 Epoch 14 Step: 67800 Batch Loss: 1.519910 Tokens per Sec: 19855, Lr: 0.000300\n", "2020-01-13 09:38:14,165 Epoch 14 Step: 67900 Batch Loss: 1.525403 Tokens per Sec: 19843, Lr: 0.000300\n", "2020-01-13 09:38:25,514 Epoch 14 Step: 68000 Batch Loss: 1.496854 Tokens per Sec: 19500, Lr: 0.000300\n", "2020-01-13 09:38:55,718 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:38:55,718 Saving new checkpoint.\n", "2020-01-13 09:38:56,846 Example #0\n", "2020-01-13 09:38:56,847 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:38:56,847 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:38:56,847 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:38:56,847 Example #1\n", "2020-01-13 09:38:56,848 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:38:56,848 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:38:56,848 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mezuo ndokwa ahụ ?\n", "2020-01-13 09:38:56,848 Example #2\n", "2020-01-13 09:38:56,849 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:38:56,849 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:38:56,849 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 09:38:56,849 Example #3\n", "2020-01-13 09:38:56,849 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:38:56,850 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:38:56,850 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eduga n’ịgbaghara Chineke .\n", "2020-01-13 09:38:56,850 Validation result (greedy) at epoch 14, step 68000: bleu: 29.43, loss: 39250.3164, ppl: 3.8518, duration: 31.3364s\n", "2020-01-13 09:39:08,332 Epoch 14 Step: 68100 Batch Loss: 1.374936 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 09:39:19,897 Epoch 14 Step: 68200 Batch Loss: 1.790264 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-13 09:39:31,533 Epoch 14 Step: 68300 Batch Loss: 1.730147 Tokens per Sec: 20050, Lr: 0.000300\n", "2020-01-13 09:39:42,995 Epoch 14 Step: 68400 Batch Loss: 1.592532 Tokens per Sec: 19690, Lr: 0.000300\n", "2020-01-13 09:39:54,587 Epoch 14 Step: 68500 Batch Loss: 1.563393 Tokens per Sec: 19897, Lr: 0.000300\n", "2020-01-13 09:40:06,103 Epoch 14 Step: 68600 Batch Loss: 1.629169 Tokens per Sec: 20208, Lr: 0.000300\n", "2020-01-13 09:40:17,780 Epoch 14 Step: 68700 Batch Loss: 1.347489 Tokens per Sec: 19618, Lr: 0.000300\n", "2020-01-13 09:40:29,412 Epoch 14 Step: 68800 Batch Loss: 1.597889 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-13 09:40:40,996 Epoch 14 Step: 68900 Batch Loss: 1.402583 Tokens per Sec: 19607, Lr: 0.000300\n", "2020-01-13 09:40:52,543 Epoch 14 Step: 69000 Batch Loss: 1.346656 Tokens per Sec: 19739, Lr: 0.000300\n", "2020-01-13 09:41:22,728 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:41:22,728 Saving new checkpoint.\n", "2020-01-13 09:41:23,906 Example #0\n", "2020-01-13 09:41:23,907 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:41:23,907 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:41:23,907 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:41:23,907 Example #1\n", "2020-01-13 09:41:23,907 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:41:23,908 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:41:23,908 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara iru ?\n", "2020-01-13 09:41:23,908 Example #2\n", "2020-01-13 09:41:23,908 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:41:23,908 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:41:23,908 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:41:23,909 Example #3\n", "2020-01-13 09:41:23,909 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:41:23,909 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:41:23,909 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 09:41:23,909 Validation result (greedy) at epoch 14, step 69000: bleu: 29.29, loss: 39097.3984, ppl: 3.8316, duration: 31.3657s\n", "2020-01-13 09:41:35,456 Epoch 14 Step: 69100 Batch Loss: 1.635362 Tokens per Sec: 19797, Lr: 0.000300\n", "2020-01-13 09:41:47,172 Epoch 14 Step: 69200 Batch Loss: 1.303843 Tokens per Sec: 19881, Lr: 0.000300\n", "2020-01-13 09:41:58,767 Epoch 14 Step: 69300 Batch Loss: 1.535439 Tokens per Sec: 20138, Lr: 0.000300\n", "2020-01-13 09:42:10,391 Epoch 14 Step: 69400 Batch Loss: 1.580513 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-13 09:42:22,028 Epoch 14 Step: 69500 Batch Loss: 1.665652 Tokens per Sec: 19556, Lr: 0.000300\n", "2020-01-13 09:42:33,587 Epoch 14 Step: 69600 Batch Loss: 1.540048 Tokens per Sec: 20402, Lr: 0.000300\n", "2020-01-13 09:42:45,308 Epoch 14 Step: 69700 Batch Loss: 1.411640 Tokens per Sec: 19795, Lr: 0.000300\n", "2020-01-13 09:42:56,978 Epoch 14 Step: 69800 Batch Loss: 1.571516 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-13 09:43:08,455 Epoch 14 Step: 69900 Batch Loss: 1.531534 Tokens per Sec: 19991, Lr: 0.000300\n", "2020-01-13 09:43:20,099 Epoch 14 Step: 70000 Batch Loss: 1.480387 Tokens per Sec: 19569, Lr: 0.000300\n", "2020-01-13 09:43:50,341 Example #0\n", "2020-01-13 09:43:50,342 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:43:50,342 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:43:50,342 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu nke nchegbu .\n", "2020-01-13 09:43:50,342 Example #1\n", "2020-01-13 09:43:50,343 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:43:50,343 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:43:50,343 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ike ime ndokwa ahụ ?\n", "2020-01-13 09:43:50,343 Example #2\n", "2020-01-13 09:43:50,344 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:43:50,344 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:43:50,344 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:43:50,344 Example #3\n", "2020-01-13 09:43:50,345 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:43:50,345 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:43:50,345 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - abịa n’ịgbaghara Chineke .\n", "2020-01-13 09:43:50,345 Validation result (greedy) at epoch 14, step 70000: bleu: 29.84, loss: 39143.3047, ppl: 3.8376, duration: 30.2457s\n", "2020-01-13 09:44:02,031 Epoch 14 Step: 70100 Batch Loss: 1.603303 Tokens per Sec: 19925, Lr: 0.000300\n", "2020-01-13 09:44:13,699 Epoch 14 Step: 70200 Batch Loss: 1.520638 Tokens per Sec: 19964, Lr: 0.000300\n", "2020-01-13 09:44:25,267 Epoch 14 Step: 70300 Batch Loss: 1.353923 Tokens per Sec: 20048, Lr: 0.000300\n", "2020-01-13 09:44:36,918 Epoch 14 Step: 70400 Batch Loss: 1.225753 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 09:44:48,539 Epoch 14 Step: 70500 Batch Loss: 1.384143 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 09:44:59,944 Epoch 14 Step: 70600 Batch Loss: 1.744460 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-13 09:45:11,582 Epoch 14 Step: 70700 Batch Loss: 1.660917 Tokens per Sec: 19733, Lr: 0.000300\n", "2020-01-13 09:45:23,092 Epoch 14 Step: 70800 Batch Loss: 1.399964 Tokens per Sec: 19886, Lr: 0.000300\n", "2020-01-13 09:45:34,675 Epoch 14 Step: 70900 Batch Loss: 1.433212 Tokens per Sec: 19735, Lr: 0.000300\n", "2020-01-13 09:45:46,392 Epoch 14 Step: 71000 Batch Loss: 1.398655 Tokens per Sec: 19665, Lr: 0.000300\n", "2020-01-13 09:46:16,698 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:46:16,699 Saving new checkpoint.\n", "2020-01-13 09:46:18,142 Example #0\n", "2020-01-13 09:46:18,143 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:46:18,143 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:46:18,143 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:46:18,143 Example #1\n", "2020-01-13 09:46:18,143 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:46:18,143 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:46:18,143 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 09:46:18,144 Example #2\n", "2020-01-13 09:46:18,144 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:46:18,144 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:46:18,144 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:46:18,144 Example #3\n", "2020-01-13 09:46:18,145 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:46:18,145 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:46:18,145 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:46:18,145 Validation result (greedy) at epoch 14, step 71000: bleu: 29.52, loss: 38920.7539, ppl: 3.8084, duration: 31.7522s\n", "2020-01-13 09:46:29,782 Epoch 14 Step: 71100 Batch Loss: 1.365596 Tokens per Sec: 19629, Lr: 0.000300\n", "2020-01-13 09:46:41,428 Epoch 14 Step: 71200 Batch Loss: 1.683434 Tokens per Sec: 20117, Lr: 0.000300\n", "2020-01-13 09:46:52,864 Epoch 14 Step: 71300 Batch Loss: 1.506922 Tokens per Sec: 19775, Lr: 0.000300\n", "2020-01-13 09:47:04,497 Epoch 14 Step: 71400 Batch Loss: 1.639698 Tokens per Sec: 19695, Lr: 0.000300\n", "2020-01-13 09:47:08,334 Epoch 14: total training loss 7660.14\n", "2020-01-13 09:47:08,334 EPOCH 15\n", "2020-01-13 09:47:16,531 Epoch 15 Step: 71500 Batch Loss: 1.592260 Tokens per Sec: 18853, Lr: 0.000300\n", "2020-01-13 09:47:28,197 Epoch 15 Step: 71600 Batch Loss: 1.375106 Tokens per Sec: 19781, Lr: 0.000300\n", "2020-01-13 09:47:39,790 Epoch 15 Step: 71700 Batch Loss: 1.535526 Tokens per Sec: 19846, Lr: 0.000300\n", "2020-01-13 09:47:51,303 Epoch 15 Step: 71800 Batch Loss: 1.444140 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-13 09:48:02,989 Epoch 15 Step: 71900 Batch Loss: 1.542596 Tokens per Sec: 19888, Lr: 0.000300\n", "2020-01-13 09:48:14,415 Epoch 15 Step: 72000 Batch Loss: 1.485806 Tokens per Sec: 19683, Lr: 0.000300\n", "2020-01-13 09:48:44,606 Example #0\n", "2020-01-13 09:48:44,607 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:48:44,607 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:48:44,607 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:48:44,607 Example #1\n", "2020-01-13 09:48:44,608 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:48:44,608 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:48:44,608 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ike ime ndokwa ahụ ?\n", "2020-01-13 09:48:44,608 Example #2\n", "2020-01-13 09:48:44,609 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:48:44,609 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:48:44,609 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:48:44,609 Example #3\n", "2020-01-13 09:48:44,609 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:48:44,610 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:48:44,610 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 09:48:44,610 Validation result (greedy) at epoch 15, step 72000: bleu: 29.98, loss: 38924.0000, ppl: 3.8088, duration: 30.1945s\n", "2020-01-13 09:48:56,166 Epoch 15 Step: 72100 Batch Loss: 1.570446 Tokens per Sec: 20111, Lr: 0.000300\n", "2020-01-13 09:49:07,737 Epoch 15 Step: 72200 Batch Loss: 1.528462 Tokens per Sec: 19806, Lr: 0.000300\n", "2020-01-13 09:49:19,179 Epoch 15 Step: 72300 Batch Loss: 1.535216 Tokens per Sec: 19751, Lr: 0.000300\n", "2020-01-13 09:49:30,771 Epoch 15 Step: 72400 Batch Loss: 1.480247 Tokens per Sec: 19928, Lr: 0.000300\n", "2020-01-13 09:49:42,295 Epoch 15 Step: 72500 Batch Loss: 1.511223 Tokens per Sec: 19552, Lr: 0.000300\n", "2020-01-13 09:49:53,921 Epoch 15 Step: 72600 Batch Loss: 1.241545 Tokens per Sec: 20126, Lr: 0.000300\n", "2020-01-13 09:50:05,457 Epoch 15 Step: 72700 Batch Loss: 1.535224 Tokens per Sec: 19904, Lr: 0.000300\n", "2020-01-13 09:50:17,070 Epoch 15 Step: 72800 Batch Loss: 1.559667 Tokens per Sec: 19894, Lr: 0.000300\n", "2020-01-13 09:50:28,657 Epoch 15 Step: 72900 Batch Loss: 1.708595 Tokens per Sec: 19469, Lr: 0.000300\n", "2020-01-13 09:50:40,153 Epoch 15 Step: 73000 Batch Loss: 1.455642 Tokens per Sec: 20210, Lr: 0.000300\n", "2020-01-13 09:51:10,421 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:51:10,421 Saving new checkpoint.\n", "2020-01-13 09:51:11,582 Example #0\n", "2020-01-13 09:51:11,583 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:51:11,583 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:51:11,583 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu nke na - akpata nchegbu .\n", "2020-01-13 09:51:11,583 Example #1\n", "2020-01-13 09:51:11,583 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:51:11,583 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:51:11,583 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:51:11,584 Example #2\n", "2020-01-13 09:51:11,584 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:51:11,584 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:51:11,584 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:51:11,584 Example #3\n", "2020-01-13 09:51:11,585 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:51:11,585 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:51:11,585 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 09:51:11,585 Validation result (greedy) at epoch 15, step 73000: bleu: 30.54, loss: 38899.2578, ppl: 3.8056, duration: 31.4319s\n", "2020-01-13 09:51:23,157 Epoch 15 Step: 73100 Batch Loss: 1.569607 Tokens per Sec: 19594, Lr: 0.000300\n", "2020-01-13 09:51:34,679 Epoch 15 Step: 73200 Batch Loss: 1.669430 Tokens per Sec: 19449, Lr: 0.000300\n", "2020-01-13 09:51:46,134 Epoch 15 Step: 73300 Batch Loss: 1.398613 Tokens per Sec: 19437, Lr: 0.000300\n", "2020-01-13 09:51:57,727 Epoch 15 Step: 73400 Batch Loss: 1.466108 Tokens per Sec: 19941, Lr: 0.000300\n", "2020-01-13 09:52:09,326 Epoch 15 Step: 73500 Batch Loss: 1.331993 Tokens per Sec: 19763, Lr: 0.000300\n", "2020-01-13 09:52:20,915 Epoch 15 Step: 73600 Batch Loss: 1.436209 Tokens per Sec: 19760, Lr: 0.000300\n", "2020-01-13 09:52:32,424 Epoch 15 Step: 73700 Batch Loss: 1.425983 Tokens per Sec: 20032, Lr: 0.000300\n", "2020-01-13 09:52:43,967 Epoch 15 Step: 73800 Batch Loss: 1.582267 Tokens per Sec: 19505, Lr: 0.000300\n", "2020-01-13 09:52:55,443 Epoch 15 Step: 73900 Batch Loss: 1.603697 Tokens per Sec: 19992, Lr: 0.000300\n", "2020-01-13 09:53:06,972 Epoch 15 Step: 74000 Batch Loss: 1.672207 Tokens per Sec: 19610, Lr: 0.000300\n", "2020-01-13 09:53:37,112 Example #0\n", "2020-01-13 09:53:37,113 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:53:37,113 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:53:37,113 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:53:37,114 Example #1\n", "2020-01-13 09:53:37,114 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:53:37,114 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:53:37,114 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 09:53:37,114 Example #2\n", "2020-01-13 09:53:37,115 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:53:37,115 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:53:37,115 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:53:37,115 Example #3\n", "2020-01-13 09:53:37,116 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:53:37,116 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:53:37,116 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - abịa n’inweta mgbaghara Chineke .\n", "2020-01-13 09:53:37,116 Validation result (greedy) at epoch 15, step 74000: bleu: 30.03, loss: 39001.8828, ppl: 3.8190, duration: 30.1437s\n", "2020-01-13 09:53:48,712 Epoch 15 Step: 74100 Batch Loss: 1.204517 Tokens per Sec: 20168, Lr: 0.000300\n", "2020-01-13 09:54:00,304 Epoch 15 Step: 74200 Batch Loss: 1.436500 Tokens per Sec: 19323, Lr: 0.000300\n", "2020-01-13 09:54:11,842 Epoch 15 Step: 74300 Batch Loss: 1.613507 Tokens per Sec: 19710, Lr: 0.000300\n", "2020-01-13 09:54:23,394 Epoch 15 Step: 74400 Batch Loss: 1.354210 Tokens per Sec: 19781, Lr: 0.000300\n", "2020-01-13 09:54:35,055 Epoch 15 Step: 74500 Batch Loss: 1.400801 Tokens per Sec: 20052, Lr: 0.000300\n", "2020-01-13 09:54:46,592 Epoch 15 Step: 74600 Batch Loss: 1.391906 Tokens per Sec: 20101, Lr: 0.000300\n", "2020-01-13 09:54:58,146 Epoch 15 Step: 74700 Batch Loss: 1.596205 Tokens per Sec: 20036, Lr: 0.000300\n", "2020-01-13 09:55:09,645 Epoch 15 Step: 74800 Batch Loss: 1.673488 Tokens per Sec: 19407, Lr: 0.000300\n", "2020-01-13 09:55:21,218 Epoch 15 Step: 74900 Batch Loss: 1.350526 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 09:55:32,784 Epoch 15 Step: 75000 Batch Loss: 1.442235 Tokens per Sec: 19617, Lr: 0.000300\n", "2020-01-13 09:56:03,062 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:56:03,063 Saving new checkpoint.\n", "2020-01-13 09:56:04,300 Example #0\n", "2020-01-13 09:56:04,301 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:56:04,301 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:56:04,301 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:56:04,302 Example #1\n", "2020-01-13 09:56:04,302 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:56:04,302 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:56:04,302 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji ghọtakwuo ndokwa ahụ ?\n", "2020-01-13 09:56:04,302 Example #2\n", "2020-01-13 09:56:04,302 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:56:04,302 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:56:04,303 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:56:04,305 Example #3\n", "2020-01-13 09:56:04,306 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:56:04,306 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:56:04,306 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 09:56:04,306 Validation result (greedy) at epoch 15, step 75000: bleu: 29.89, loss: 38816.9805, ppl: 3.7948, duration: 31.5218s\n", "2020-01-13 09:56:15,902 Epoch 15 Step: 75100 Batch Loss: 1.307816 Tokens per Sec: 19903, Lr: 0.000300\n", "2020-01-13 09:56:27,490 Epoch 15 Step: 75200 Batch Loss: 1.454256 Tokens per Sec: 19516, Lr: 0.000300\n", "2020-01-13 09:56:39,116 Epoch 15 Step: 75300 Batch Loss: 1.600800 Tokens per Sec: 20030, Lr: 0.000300\n", "2020-01-13 09:56:50,742 Epoch 15 Step: 75400 Batch Loss: 1.479861 Tokens per Sec: 19551, Lr: 0.000300\n", "2020-01-13 09:57:02,472 Epoch 15 Step: 75500 Batch Loss: 1.667810 Tokens per Sec: 20191, Lr: 0.000300\n", "2020-01-13 09:57:13,946 Epoch 15 Step: 75600 Batch Loss: 1.350495 Tokens per Sec: 19711, Lr: 0.000300\n", "2020-01-13 09:57:25,679 Epoch 15 Step: 75700 Batch Loss: 1.402207 Tokens per Sec: 20019, Lr: 0.000300\n", "2020-01-13 09:57:37,185 Epoch 15 Step: 75800 Batch Loss: 1.509837 Tokens per Sec: 20062, Lr: 0.000300\n", "2020-01-13 09:57:48,966 Epoch 15 Step: 75900 Batch Loss: 1.542893 Tokens per Sec: 20103, Lr: 0.000300\n", "2020-01-13 09:58:00,607 Epoch 15 Step: 76000 Batch Loss: 1.429258 Tokens per Sec: 19380, Lr: 0.000300\n", "2020-01-13 09:58:30,926 Hooray! New best validation result [ppl]!\n", "2020-01-13 09:58:30,926 Saving new checkpoint.\n", "2020-01-13 09:58:32,462 Example #0\n", "2020-01-13 09:58:32,462 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 09:58:32,463 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 09:58:32,463 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 09:58:32,463 Example #1\n", "2020-01-13 09:58:32,463 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 09:58:32,463 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 09:58:32,463 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 09:58:32,463 Example #2\n", "2020-01-13 09:58:32,464 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 09:58:32,464 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 09:58:32,464 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 09:58:32,464 Example #3\n", "2020-01-13 09:58:32,464 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 09:58:32,464 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 09:58:32,464 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 09:58:32,464 Validation result (greedy) at epoch 15, step 76000: bleu: 30.25, loss: 38396.9570, ppl: 3.7405, duration: 31.8568s\n", "2020-01-13 09:58:44,078 Epoch 15 Step: 76100 Batch Loss: 1.521380 Tokens per Sec: 19406, Lr: 0.000300\n", "2020-01-13 09:58:55,715 Epoch 15 Step: 76200 Batch Loss: 1.532634 Tokens per Sec: 19714, Lr: 0.000300\n", "2020-01-13 09:59:07,219 Epoch 15 Step: 76300 Batch Loss: 1.459333 Tokens per Sec: 19664, Lr: 0.000300\n", "2020-01-13 09:59:18,924 Epoch 15 Step: 76400 Batch Loss: 1.409470 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 09:59:30,573 Epoch 15 Step: 76500 Batch Loss: 1.608726 Tokens per Sec: 19933, Lr: 0.000300\n", "2020-01-13 09:59:34,941 Epoch 15: total training loss 7590.51\n", "2020-01-13 09:59:34,941 EPOCH 16\n", "2020-01-13 09:59:42,783 Epoch 16 Step: 76600 Batch Loss: 1.506040 Tokens per Sec: 18855, Lr: 0.000300\n", "2020-01-13 09:59:54,418 Epoch 16 Step: 76700 Batch Loss: 1.411626 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 10:00:05,954 Epoch 16 Step: 76800 Batch Loss: 1.416516 Tokens per Sec: 19734, Lr: 0.000300\n", "2020-01-13 10:00:17,652 Epoch 16 Step: 76900 Batch Loss: 1.409966 Tokens per Sec: 19611, Lr: 0.000300\n", "2020-01-13 10:00:29,407 Epoch 16 Step: 77000 Batch Loss: 1.590773 Tokens per Sec: 20031, Lr: 0.000300\n", "2020-01-13 10:00:59,652 Example #0\n", "2020-01-13 10:00:59,652 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:00:59,653 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:00:59,653 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:00:59,653 Example #1\n", "2020-01-13 10:00:59,653 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:00:59,653 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:00:59,653 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 10:00:59,654 Example #2\n", "2020-01-13 10:00:59,654 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:00:59,654 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:00:59,654 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:00:59,654 Example #3\n", "2020-01-13 10:00:59,655 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:00:59,655 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:00:59,655 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:00:59,655 Validation result (greedy) at epoch 16, step 77000: bleu: 30.20, loss: 38646.8359, ppl: 3.7727, duration: 30.2413s\n", "2020-01-13 10:01:11,407 Epoch 16 Step: 77100 Batch Loss: 1.567041 Tokens per Sec: 19532, Lr: 0.000300\n", "2020-01-13 10:01:23,235 Epoch 16 Step: 77200 Batch Loss: 1.542003 Tokens per Sec: 20197, Lr: 0.000300\n", "2020-01-13 10:01:34,741 Epoch 16 Step: 77300 Batch Loss: 1.438577 Tokens per Sec: 19724, Lr: 0.000300\n", "2020-01-13 10:01:46,422 Epoch 16 Step: 77400 Batch Loss: 1.543735 Tokens per Sec: 19943, Lr: 0.000300\n", "2020-01-13 10:01:57,875 Epoch 16 Step: 77500 Batch Loss: 1.392700 Tokens per Sec: 19825, Lr: 0.000300\n", "2020-01-13 10:02:09,705 Epoch 16 Step: 77600 Batch Loss: 1.430959 Tokens per Sec: 19581, Lr: 0.000300\n", "2020-01-13 10:02:21,497 Epoch 16 Step: 77700 Batch Loss: 1.410797 Tokens per Sec: 19789, Lr: 0.000300\n", "2020-01-13 10:02:33,115 Epoch 16 Step: 77800 Batch Loss: 1.204483 Tokens per Sec: 20007, Lr: 0.000300\n", "2020-01-13 10:02:44,740 Epoch 16 Step: 77900 Batch Loss: 1.560586 Tokens per Sec: 19296, Lr: 0.000300\n", "2020-01-13 10:02:56,407 Epoch 16 Step: 78000 Batch Loss: 1.494240 Tokens per Sec: 20342, Lr: 0.000300\n", "2020-01-13 10:03:26,805 Example #0\n", "2020-01-13 10:03:26,806 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:03:26,806 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:03:26,806 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:03:26,806 Example #1\n", "2020-01-13 10:03:26,807 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:03:26,807 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:03:26,807 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ doo anya ?\n", "2020-01-13 10:03:26,807 Example #2\n", "2020-01-13 10:03:26,807 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:03:26,808 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:03:26,808 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:03:26,808 Example #3\n", "2020-01-13 10:03:26,808 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:03:26,808 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:03:26,808 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:03:26,809 Validation result (greedy) at epoch 16, step 78000: bleu: 30.19, loss: 38506.5156, ppl: 3.7546, duration: 30.4015s\n", "2020-01-13 10:03:38,520 Epoch 16 Step: 78100 Batch Loss: 1.244807 Tokens per Sec: 19674, Lr: 0.000300\n", "2020-01-13 10:03:50,168 Epoch 16 Step: 78200 Batch Loss: 1.588523 Tokens per Sec: 19799, Lr: 0.000300\n", "2020-01-13 10:04:01,710 Epoch 16 Step: 78300 Batch Loss: 1.483522 Tokens per Sec: 19006, Lr: 0.000300\n", "2020-01-13 10:04:13,422 Epoch 16 Step: 78400 Batch Loss: 1.622023 Tokens per Sec: 20222, Lr: 0.000300\n", "2020-01-13 10:04:25,138 Epoch 16 Step: 78500 Batch Loss: 1.308532 Tokens per Sec: 19869, Lr: 0.000300\n", "2020-01-13 10:04:36,735 Epoch 16 Step: 78600 Batch Loss: 1.578301 Tokens per Sec: 19385, Lr: 0.000300\n", "2020-01-13 10:04:48,390 Epoch 16 Step: 78700 Batch Loss: 1.479696 Tokens per Sec: 19936, Lr: 0.000300\n", "2020-01-13 10:05:00,053 Epoch 16 Step: 78800 Batch Loss: 1.471614 Tokens per Sec: 19976, Lr: 0.000300\n", "2020-01-13 10:05:11,735 Epoch 16 Step: 78900 Batch Loss: 1.511420 Tokens per Sec: 19403, Lr: 0.000300\n", "2020-01-13 10:05:23,299 Epoch 16 Step: 79000 Batch Loss: 1.411263 Tokens per Sec: 19679, Lr: 0.000300\n", "2020-01-13 10:05:53,652 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:05:53,652 Saving new checkpoint.\n", "2020-01-13 10:05:54,853 Example #0\n", "2020-01-13 10:05:54,853 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:05:54,854 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:05:54,854 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:05:54,854 Example #1\n", "2020-01-13 10:05:54,854 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:05:54,855 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:05:54,855 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji ghọta ndokwa ahụ ?\n", "2020-01-13 10:05:54,855 Example #2\n", "2020-01-13 10:05:54,855 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:05:54,856 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:05:54,856 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:05:54,856 Example #3\n", "2020-01-13 10:05:54,857 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:05:54,857 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:05:54,857 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 10:05:54,857 Validation result (greedy) at epoch 16, step 79000: bleu: 30.15, loss: 38293.3242, ppl: 3.7272, duration: 31.5579s\n", "2020-01-13 10:06:06,587 Epoch 16 Step: 79100 Batch Loss: 1.673389 Tokens per Sec: 19371, Lr: 0.000300\n", "2020-01-13 10:06:18,275 Epoch 16 Step: 79200 Batch Loss: 1.611589 Tokens per Sec: 19806, Lr: 0.000300\n", "2020-01-13 10:06:30,037 Epoch 16 Step: 79300 Batch Loss: 1.488930 Tokens per Sec: 19522, Lr: 0.000300\n", "2020-01-13 10:06:41,632 Epoch 16 Step: 79400 Batch Loss: 1.375384 Tokens per Sec: 19796, Lr: 0.000300\n", "2020-01-13 10:06:53,332 Epoch 16 Step: 79500 Batch Loss: 1.480703 Tokens per Sec: 19427, Lr: 0.000300\n", "2020-01-13 10:07:05,139 Epoch 16 Step: 79600 Batch Loss: 1.117052 Tokens per Sec: 19793, Lr: 0.000300\n", "2020-01-13 10:07:16,745 Epoch 16 Step: 79700 Batch Loss: 1.473859 Tokens per Sec: 20054, Lr: 0.000300\n", "2020-01-13 10:07:28,451 Epoch 16 Step: 79800 Batch Loss: 1.425643 Tokens per Sec: 19123, Lr: 0.000300\n", "2020-01-13 10:07:40,059 Epoch 16 Step: 79900 Batch Loss: 1.608201 Tokens per Sec: 19359, Lr: 0.000300\n", "2020-01-13 10:07:51,585 Epoch 16 Step: 80000 Batch Loss: 1.649895 Tokens per Sec: 19744, Lr: 0.000300\n", "2020-01-13 10:08:21,928 Example #0\n", "2020-01-13 10:08:21,929 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:08:21,929 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:08:21,929 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:08:21,929 Example #1\n", "2020-01-13 10:08:21,929 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:08:21,930 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:08:21,930 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 10:08:21,930 Example #2\n", "2020-01-13 10:08:21,931 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:08:21,931 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:08:21,931 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:08:21,931 Example #3\n", "2020-01-13 10:08:21,932 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:08:21,932 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:08:21,932 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:08:21,932 Validation result (greedy) at epoch 16, step 80000: bleu: 30.20, loss: 38362.4727, ppl: 3.7360, duration: 30.3467s\n", "2020-01-13 10:08:33,430 Epoch 16 Step: 80100 Batch Loss: 1.377763 Tokens per Sec: 19694, Lr: 0.000300\n", "2020-01-13 10:08:45,048 Epoch 16 Step: 80200 Batch Loss: 1.405918 Tokens per Sec: 19385, Lr: 0.000300\n", "2020-01-13 10:08:56,586 Epoch 16 Step: 80300 Batch Loss: 1.609857 Tokens per Sec: 19617, Lr: 0.000300\n", "2020-01-13 10:09:08,128 Epoch 16 Step: 80400 Batch Loss: 1.396618 Tokens per Sec: 19337, Lr: 0.000300\n", "2020-01-13 10:09:19,912 Epoch 16 Step: 80500 Batch Loss: 1.454194 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 10:09:31,350 Epoch 16 Step: 80600 Batch Loss: 1.384454 Tokens per Sec: 19486, Lr: 0.000300\n", "2020-01-13 10:09:43,079 Epoch 16 Step: 80700 Batch Loss: 1.319999 Tokens per Sec: 19617, Lr: 0.000300\n", "2020-01-13 10:09:54,739 Epoch 16 Step: 80800 Batch Loss: 1.568223 Tokens per Sec: 19947, Lr: 0.000300\n", "2020-01-13 10:10:06,372 Epoch 16 Step: 80900 Batch Loss: 1.399157 Tokens per Sec: 20044, Lr: 0.000300\n", "2020-01-13 10:10:18,067 Epoch 16 Step: 81000 Batch Loss: 1.515856 Tokens per Sec: 19694, Lr: 0.000300\n", "2020-01-13 10:10:48,382 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:10:48,382 Saving new checkpoint.\n", "2020-01-13 10:10:49,584 Example #0\n", "2020-01-13 10:10:49,585 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:10:49,586 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:10:49,586 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:10:49,586 Example #1\n", "2020-01-13 10:10:49,586 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:10:49,586 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:10:49,586 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 10:10:49,586 Example #2\n", "2020-01-13 10:10:49,587 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:10:49,587 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:10:49,587 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:10:49,587 Example #3\n", "2020-01-13 10:10:49,587 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:10:49,587 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:10:49,587 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eduga n’inweta mgbaghara Chineke .\n", "2020-01-13 10:10:49,587 Validation result (greedy) at epoch 16, step 81000: bleu: 30.72, loss: 38221.5781, ppl: 3.7180, duration: 31.5198s\n", "2020-01-13 10:11:01,501 Epoch 16 Step: 81100 Batch Loss: 1.557323 Tokens per Sec: 18863, Lr: 0.000300\n", "2020-01-13 10:11:13,184 Epoch 16 Step: 81200 Batch Loss: 1.496416 Tokens per Sec: 19425, Lr: 0.000300\n", "2020-01-13 10:11:24,785 Epoch 16 Step: 81300 Batch Loss: 1.317646 Tokens per Sec: 19825, Lr: 0.000300\n", "2020-01-13 10:11:36,577 Epoch 16 Step: 81400 Batch Loss: 1.420449 Tokens per Sec: 19641, Lr: 0.000300\n", "2020-01-13 10:11:48,314 Epoch 16 Step: 81500 Batch Loss: 1.436942 Tokens per Sec: 19631, Lr: 0.000300\n", "2020-01-13 10:11:59,788 Epoch 16 Step: 81600 Batch Loss: 1.415780 Tokens per Sec: 19816, Lr: 0.000300\n", "2020-01-13 10:12:03,963 Epoch 16: total training loss 7500.67\n", "2020-01-13 10:12:03,963 EPOCH 17\n", "2020-01-13 10:12:12,171 Epoch 17 Step: 81700 Batch Loss: 1.448692 Tokens per Sec: 18821, Lr: 0.000300\n", "2020-01-13 10:12:23,802 Epoch 17 Step: 81800 Batch Loss: 1.367751 Tokens per Sec: 19514, Lr: 0.000300\n", "2020-01-13 10:12:35,432 Epoch 17 Step: 81900 Batch Loss: 1.339443 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 10:12:47,139 Epoch 17 Step: 82000 Batch Loss: 1.364569 Tokens per Sec: 19824, Lr: 0.000300\n", "2020-01-13 10:13:17,486 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:13:17,486 Saving new checkpoint.\n", "2020-01-13 10:13:18,624 Example #0\n", "2020-01-13 10:13:18,624 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:13:18,624 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:13:18,624 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:13:18,624 Example #1\n", "2020-01-13 10:13:18,625 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:13:18,625 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:13:18,625 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 10:13:18,625 Example #2\n", "2020-01-13 10:13:18,625 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:13:18,625 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:13:18,625 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:13:18,625 Example #3\n", "2020-01-13 10:13:18,626 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:13:18,626 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:13:18,626 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - abịa n’inweta mgbaghara Chineke .\n", "2020-01-13 10:13:18,626 Validation result (greedy) at epoch 17, step 82000: bleu: 30.75, loss: 38144.2773, ppl: 3.7081, duration: 31.4860s\n", "2020-01-13 10:13:30,345 Epoch 17 Step: 82100 Batch Loss: 1.455526 Tokens per Sec: 20273, Lr: 0.000300\n", "2020-01-13 10:13:42,010 Epoch 17 Step: 82200 Batch Loss: 1.423026 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-13 10:13:53,550 Epoch 17 Step: 82300 Batch Loss: 1.243070 Tokens per Sec: 19603, Lr: 0.000300\n", "2020-01-13 10:14:05,328 Epoch 17 Step: 82400 Batch Loss: 1.532474 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 10:14:17,058 Epoch 17 Step: 82500 Batch Loss: 1.500744 Tokens per Sec: 19621, Lr: 0.000300\n", "2020-01-13 10:14:28,526 Epoch 17 Step: 82600 Batch Loss: 1.474466 Tokens per Sec: 19107, Lr: 0.000300\n", "2020-01-13 10:14:40,153 Epoch 17 Step: 82700 Batch Loss: 1.402776 Tokens per Sec: 19672, Lr: 0.000300\n", "2020-01-13 10:14:51,743 Epoch 17 Step: 82800 Batch Loss: 1.447201 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 10:15:03,452 Epoch 17 Step: 82900 Batch Loss: 1.372958 Tokens per Sec: 19754, Lr: 0.000300\n", "2020-01-13 10:15:15,117 Epoch 17 Step: 83000 Batch Loss: 1.830065 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 10:15:45,465 Example #0\n", "2020-01-13 10:15:45,466 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:15:45,466 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:15:45,466 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:15:45,467 Example #1\n", "2020-01-13 10:15:45,467 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:15:45,467 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:15:45,467 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ pụta ìhè ?\n", "2020-01-13 10:15:45,467 Example #2\n", "2020-01-13 10:15:45,468 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:15:45,468 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:15:45,468 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 10:15:45,468 Example #3\n", "2020-01-13 10:15:45,469 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:15:45,469 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:15:45,469 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji gbaghara Chineke .\n", "2020-01-13 10:15:45,469 Validation result (greedy) at epoch 17, step 83000: bleu: 30.55, loss: 38377.1836, ppl: 3.7379, duration: 30.3513s\n", "2020-01-13 10:15:57,113 Epoch 17 Step: 83100 Batch Loss: 1.309200 Tokens per Sec: 19428, Lr: 0.000300\n", "2020-01-13 10:16:08,701 Epoch 17 Step: 83200 Batch Loss: 1.418557 Tokens per Sec: 19788, Lr: 0.000300\n", "2020-01-13 10:16:20,241 Epoch 17 Step: 83300 Batch Loss: 1.394232 Tokens per Sec: 19562, Lr: 0.000300\n", "2020-01-13 10:16:31,967 Epoch 17 Step: 83400 Batch Loss: 1.542738 Tokens per Sec: 19399, Lr: 0.000300\n", "2020-01-13 10:16:43,679 Epoch 17 Step: 83500 Batch Loss: 1.331706 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-13 10:16:55,463 Epoch 17 Step: 83600 Batch Loss: 1.326857 Tokens per Sec: 20027, Lr: 0.000300\n", "2020-01-13 10:17:07,119 Epoch 17 Step: 83700 Batch Loss: 1.577603 Tokens per Sec: 19387, Lr: 0.000300\n", "2020-01-13 10:17:18,705 Epoch 17 Step: 83800 Batch Loss: 1.442270 Tokens per Sec: 20007, Lr: 0.000300\n", "2020-01-13 10:17:30,331 Epoch 17 Step: 83900 Batch Loss: 1.585913 Tokens per Sec: 19303, Lr: 0.000300\n", "2020-01-13 10:17:41,975 Epoch 17 Step: 84000 Batch Loss: 1.536277 Tokens per Sec: 19499, Lr: 0.000300\n", "2020-01-13 10:18:12,312 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:18:12,313 Saving new checkpoint.\n", "2020-01-13 10:18:13,572 Example #0\n", "2020-01-13 10:18:13,573 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:18:13,573 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:18:13,573 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:18:13,573 Example #1\n", "2020-01-13 10:18:13,574 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:18:13,574 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:18:13,574 \tHypothesis: Gịnị ka anyị kwesịrị ime iji mee ka alụmdi na nwunye bụrụ ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 10:18:13,574 Example #2\n", "2020-01-13 10:18:13,575 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:18:13,575 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:18:13,575 \tHypothesis: Ha aghọọla ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:18:13,575 Example #3\n", "2020-01-13 10:18:13,576 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:18:13,576 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:18:13,576 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:18:13,576 Validation result (greedy) at epoch 17, step 84000: bleu: 30.57, loss: 38040.3984, ppl: 3.6949, duration: 31.6003s\n", "2020-01-13 10:18:25,340 Epoch 17 Step: 84100 Batch Loss: 1.361289 Tokens per Sec: 19693, Lr: 0.000300\n", "2020-01-13 10:18:36,967 Epoch 17 Step: 84200 Batch Loss: 1.349405 Tokens per Sec: 19825, Lr: 0.000300\n", "2020-01-13 10:18:48,654 Epoch 17 Step: 84300 Batch Loss: 1.240716 Tokens per Sec: 19579, Lr: 0.000300\n", "2020-01-13 10:19:00,348 Epoch 17 Step: 84400 Batch Loss: 1.395011 Tokens per Sec: 19708, Lr: 0.000300\n", "2020-01-13 10:19:12,005 Epoch 17 Step: 84500 Batch Loss: 1.443135 Tokens per Sec: 19512, Lr: 0.000300\n", "2020-01-13 10:19:23,674 Epoch 17 Step: 84600 Batch Loss: 1.604663 Tokens per Sec: 19388, Lr: 0.000300\n", "2020-01-13 10:19:35,250 Epoch 17 Step: 84700 Batch Loss: 1.457400 Tokens per Sec: 19582, Lr: 0.000300\n", "2020-01-13 10:19:46,900 Epoch 17 Step: 84800 Batch Loss: 1.481108 Tokens per Sec: 19244, Lr: 0.000300\n", "2020-01-13 10:19:58,568 Epoch 17 Step: 84900 Batch Loss: 1.584237 Tokens per Sec: 19717, Lr: 0.000300\n", "2020-01-13 10:20:10,263 Epoch 17 Step: 85000 Batch Loss: 1.276231 Tokens per Sec: 19751, Lr: 0.000300\n", "2020-01-13 10:20:40,709 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:20:40,709 Saving new checkpoint.\n", "2020-01-13 10:20:41,898 Example #0\n", "2020-01-13 10:20:41,899 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:20:41,899 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:20:41,899 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:20:41,899 Example #1\n", "2020-01-13 10:20:41,899 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:20:41,900 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:20:41,900 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 10:20:41,900 Example #2\n", "2020-01-13 10:20:41,900 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:20:41,900 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:20:41,900 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:20:41,900 Example #3\n", "2020-01-13 10:20:41,901 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:20:41,901 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:20:41,901 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:20:41,901 Validation result (greedy) at epoch 17, step 85000: bleu: 30.24, loss: 37951.7578, ppl: 3.6837, duration: 31.6375s\n", "2020-01-13 10:20:53,547 Epoch 17 Step: 85100 Batch Loss: 1.493475 Tokens per Sec: 19393, Lr: 0.000300\n", "2020-01-13 10:21:05,254 Epoch 17 Step: 85200 Batch Loss: 1.410572 Tokens per Sec: 19846, Lr: 0.000300\n", "2020-01-13 10:21:16,950 Epoch 17 Step: 85300 Batch Loss: 1.531292 Tokens per Sec: 19062, Lr: 0.000300\n", "2020-01-13 10:21:28,497 Epoch 17 Step: 85400 Batch Loss: 1.478220 Tokens per Sec: 19986, Lr: 0.000300\n", "2020-01-13 10:21:40,163 Epoch 17 Step: 85500 Batch Loss: 1.397416 Tokens per Sec: 19741, Lr: 0.000300\n", "2020-01-13 10:21:51,818 Epoch 17 Step: 85600 Batch Loss: 1.513913 Tokens per Sec: 19352, Lr: 0.000300\n", "2020-01-13 10:22:03,519 Epoch 17 Step: 85700 Batch Loss: 1.609863 Tokens per Sec: 19706, Lr: 0.000300\n", "2020-01-13 10:22:15,360 Epoch 17 Step: 85800 Batch Loss: 1.496735 Tokens per Sec: 19454, Lr: 0.000300\n", "2020-01-13 10:22:26,948 Epoch 17 Step: 85900 Batch Loss: 1.463020 Tokens per Sec: 19434, Lr: 0.000300\n", "2020-01-13 10:22:38,615 Epoch 17 Step: 86000 Batch Loss: 1.376027 Tokens per Sec: 19597, Lr: 0.000300\n", "2020-01-13 10:23:09,043 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:23:09,044 Saving new checkpoint.\n", "2020-01-13 10:23:10,220 Example #0\n", "2020-01-13 10:23:10,220 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:23:10,220 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:23:10,220 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:23:10,221 Example #1\n", "2020-01-13 10:23:10,221 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:23:10,221 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:23:10,221 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ndokwa ahụ ?\n", "2020-01-13 10:23:10,221 Example #2\n", "2020-01-13 10:23:10,221 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:23:10,222 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:23:10,222 \tHypothesis: Ha aghọọla ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:23:10,222 Example #3\n", "2020-01-13 10:23:10,222 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:23:10,222 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:23:10,222 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - abịa n’inweta mgbaghara Chineke .\n", "2020-01-13 10:23:10,222 Validation result (greedy) at epoch 17, step 86000: bleu: 30.56, loss: 37918.7422, ppl: 3.6795, duration: 31.6072s\n", "2020-01-13 10:23:21,945 Epoch 17 Step: 86100 Batch Loss: 1.525484 Tokens per Sec: 19290, Lr: 0.000300\n", "2020-01-13 10:23:33,482 Epoch 17 Step: 86200 Batch Loss: 1.810806 Tokens per Sec: 19501, Lr: 0.000300\n", "2020-01-13 10:23:45,247 Epoch 17 Step: 86300 Batch Loss: 1.524437 Tokens per Sec: 19921, Lr: 0.000300\n", "2020-01-13 10:23:56,812 Epoch 17 Step: 86400 Batch Loss: 1.507586 Tokens per Sec: 19842, Lr: 0.000300\n", "2020-01-13 10:24:08,394 Epoch 17 Step: 86500 Batch Loss: 1.546138 Tokens per Sec: 19422, Lr: 0.000300\n", "2020-01-13 10:24:20,027 Epoch 17 Step: 86600 Batch Loss: 1.376886 Tokens per Sec: 19484, Lr: 0.000300\n", "2020-01-13 10:24:31,703 Epoch 17 Step: 86700 Batch Loss: 1.596203 Tokens per Sec: 19773, Lr: 0.000300\n", "2020-01-13 10:24:36,984 Epoch 17: total training loss 7445.41\n", "2020-01-13 10:24:36,984 EPOCH 18\n", "2020-01-13 10:24:44,066 Epoch 18 Step: 86800 Batch Loss: 1.340662 Tokens per Sec: 17811, Lr: 0.000300\n", "2020-01-13 10:24:55,700 Epoch 18 Step: 86900 Batch Loss: 1.509516 Tokens per Sec: 19670, Lr: 0.000300\n", "2020-01-13 10:25:07,402 Epoch 18 Step: 87000 Batch Loss: 1.453021 Tokens per Sec: 19668, Lr: 0.000300\n", "2020-01-13 10:25:37,743 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:25:37,743 Saving new checkpoint.\n", "2020-01-13 10:25:39,287 Example #0\n", "2020-01-13 10:25:39,288 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:25:39,288 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:25:39,288 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 10:25:39,288 Example #1\n", "2020-01-13 10:25:39,289 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:25:39,289 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:25:39,289 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka anyị ghara ime ndokwa ahụ ?\n", "2020-01-13 10:25:39,289 Example #2\n", "2020-01-13 10:25:39,290 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:25:39,290 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:25:39,290 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị mmadụ aka ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 10:25:39,290 Example #3\n", "2020-01-13 10:25:39,290 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:25:39,290 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:25:39,291 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:25:39,291 Validation result (greedy) at epoch 18, step 87000: bleu: 30.70, loss: 37812.8438, ppl: 3.6662, duration: 31.8881s\n", "2020-01-13 10:25:50,800 Epoch 18 Step: 87100 Batch Loss: 1.456127 Tokens per Sec: 19553, Lr: 0.000300\n", "2020-01-13 10:26:02,487 Epoch 18 Step: 87200 Batch Loss: 1.316590 Tokens per Sec: 19545, Lr: 0.000300\n", "2020-01-13 10:26:14,221 Epoch 18 Step: 87300 Batch Loss: 1.410600 Tokens per Sec: 19928, Lr: 0.000300\n", "2020-01-13 10:26:25,918 Epoch 18 Step: 87400 Batch Loss: 1.355402 Tokens per Sec: 19712, Lr: 0.000300\n", "2020-01-13 10:26:37,524 Epoch 18 Step: 87500 Batch Loss: 1.521859 Tokens per Sec: 19448, Lr: 0.000300\n", "2020-01-13 10:26:49,109 Epoch 18 Step: 87600 Batch Loss: 1.259577 Tokens per Sec: 19724, Lr: 0.000300\n", "2020-01-13 10:27:00,806 Epoch 18 Step: 87700 Batch Loss: 1.517775 Tokens per Sec: 19502, Lr: 0.000300\n", "2020-01-13 10:27:12,680 Epoch 18 Step: 87800 Batch Loss: 1.331427 Tokens per Sec: 19611, Lr: 0.000300\n", "2020-01-13 10:27:24,210 Epoch 18 Step: 87900 Batch Loss: 1.406499 Tokens per Sec: 19811, Lr: 0.000300\n", "2020-01-13 10:27:35,881 Epoch 18 Step: 88000 Batch Loss: 1.244901 Tokens per Sec: 19252, Lr: 0.000300\n", "2020-01-13 10:28:06,191 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:28:06,191 Saving new checkpoint.\n", "2020-01-13 10:28:07,705 Example #0\n", "2020-01-13 10:28:07,706 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:28:07,706 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:28:07,706 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:28:07,706 Example #1\n", "2020-01-13 10:28:07,706 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:28:07,707 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:28:07,707 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ doo anya ?\n", "2020-01-13 10:28:07,707 Example #2\n", "2020-01-13 10:28:07,707 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:28:07,707 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:28:07,707 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ha aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka agbara mba nile àmà .\n", "2020-01-13 10:28:07,707 Example #3\n", "2020-01-13 10:28:07,707 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:28:07,708 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:28:07,708 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 10:28:07,708 Validation result (greedy) at epoch 18, step 88000: bleu: 30.79, loss: 37695.8203, ppl: 3.6514, duration: 31.8263s\n", "2020-01-13 10:28:19,453 Epoch 18 Step: 88100 Batch Loss: 1.486398 Tokens per Sec: 19948, Lr: 0.000300\n", "2020-01-13 10:28:31,163 Epoch 18 Step: 88200 Batch Loss: 1.302136 Tokens per Sec: 19272, Lr: 0.000300\n", "2020-01-13 10:28:42,723 Epoch 18 Step: 88300 Batch Loss: 1.370883 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-13 10:28:54,350 Epoch 18 Step: 88400 Batch Loss: 1.397289 Tokens per Sec: 19655, Lr: 0.000300\n", "2020-01-13 10:29:06,174 Epoch 18 Step: 88500 Batch Loss: 1.391482 Tokens per Sec: 19718, Lr: 0.000300\n", "2020-01-13 10:29:17,681 Epoch 18 Step: 88600 Batch Loss: 1.439565 Tokens per Sec: 19808, Lr: 0.000300\n", "2020-01-13 10:29:29,366 Epoch 18 Step: 88700 Batch Loss: 1.537892 Tokens per Sec: 19572, Lr: 0.000300\n", "2020-01-13 10:29:41,057 Epoch 18 Step: 88800 Batch Loss: 1.484439 Tokens per Sec: 19514, Lr: 0.000300\n", "2020-01-13 10:29:52,662 Epoch 18 Step: 88900 Batch Loss: 1.282521 Tokens per Sec: 19585, Lr: 0.000300\n", "2020-01-13 10:30:04,459 Epoch 18 Step: 89000 Batch Loss: 1.371957 Tokens per Sec: 20003, Lr: 0.000300\n", "2020-01-13 10:30:34,851 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:30:34,851 Saving new checkpoint.\n", "2020-01-13 10:30:36,047 Example #0\n", "2020-01-13 10:30:36,048 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:30:36,048 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:30:36,048 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:30:36,048 Example #1\n", "2020-01-13 10:30:36,049 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:30:36,049 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:30:36,049 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ike ime ndokwa ahụ ?\n", "2020-01-13 10:30:36,049 Example #2\n", "2020-01-13 10:30:36,050 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:30:36,050 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:30:36,050 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 10:30:36,050 Example #3\n", "2020-01-13 10:30:36,051 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:30:36,051 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:30:36,051 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 10:30:36,051 Validation result (greedy) at epoch 18, step 89000: bleu: 30.95, loss: 37639.4688, ppl: 3.6444, duration: 31.5922s\n", "2020-01-13 10:30:47,573 Epoch 18 Step: 89100 Batch Loss: 1.368688 Tokens per Sec: 19405, Lr: 0.000300\n", "2020-01-13 10:30:59,254 Epoch 18 Step: 89200 Batch Loss: 1.391017 Tokens per Sec: 19890, Lr: 0.000300\n", "2020-01-13 10:31:10,842 Epoch 18 Step: 89300 Batch Loss: 1.453275 Tokens per Sec: 19797, Lr: 0.000300\n", "2020-01-13 10:31:22,612 Epoch 18 Step: 89400 Batch Loss: 1.464848 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-13 10:31:34,185 Epoch 18 Step: 89500 Batch Loss: 1.394070 Tokens per Sec: 19817, Lr: 0.000300\n", "2020-01-13 10:31:45,934 Epoch 18 Step: 89600 Batch Loss: 1.434334 Tokens per Sec: 19574, Lr: 0.000300\n", "2020-01-13 10:31:57,707 Epoch 18 Step: 89700 Batch Loss: 1.724982 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-13 10:32:09,247 Epoch 18 Step: 89800 Batch Loss: 1.481026 Tokens per Sec: 19491, Lr: 0.000300\n", "2020-01-13 10:32:21,028 Epoch 18 Step: 89900 Batch Loss: 1.431611 Tokens per Sec: 19374, Lr: 0.000300\n", "2020-01-13 10:32:32,610 Epoch 18 Step: 90000 Batch Loss: 1.469046 Tokens per Sec: 19408, Lr: 0.000300\n", "2020-01-13 10:33:03,103 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:33:03,104 Saving new checkpoint.\n", "2020-01-13 10:33:04,246 Example #0\n", "2020-01-13 10:33:04,247 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:33:04,247 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:33:04,247 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị mkpa n’imeri nchegbu .\n", "2020-01-13 10:33:04,248 Example #1\n", "2020-01-13 10:33:04,248 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:33:04,248 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:33:04,248 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 10:33:04,249 Example #2\n", "2020-01-13 10:33:04,249 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:33:04,249 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:33:04,250 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 10:33:04,250 Example #3\n", "2020-01-13 10:33:04,251 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:33:04,251 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:33:04,251 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:33:04,251 Validation result (greedy) at epoch 18, step 90000: bleu: 30.87, loss: 37498.4844, ppl: 3.6268, duration: 31.6411s\n", "2020-01-13 10:33:15,990 Epoch 18 Step: 90100 Batch Loss: 1.489457 Tokens per Sec: 19786, Lr: 0.000300\n", "2020-01-13 10:33:27,596 Epoch 18 Step: 90200 Batch Loss: 1.559716 Tokens per Sec: 19583, Lr: 0.000300\n", "2020-01-13 10:33:39,271 Epoch 18 Step: 90300 Batch Loss: 1.480685 Tokens per Sec: 19395, Lr: 0.000300\n", "2020-01-13 10:33:51,059 Epoch 18 Step: 90400 Batch Loss: 1.428197 Tokens per Sec: 19592, Lr: 0.000300\n", "2020-01-13 10:34:02,800 Epoch 18 Step: 90500 Batch Loss: 1.418781 Tokens per Sec: 19916, Lr: 0.000300\n", "2020-01-13 10:34:14,371 Epoch 18 Step: 90600 Batch Loss: 1.557102 Tokens per Sec: 19371, Lr: 0.000300\n", "2020-01-13 10:34:25,929 Epoch 18 Step: 90700 Batch Loss: 1.459413 Tokens per Sec: 19726, Lr: 0.000300\n", "2020-01-13 10:34:37,604 Epoch 18 Step: 90800 Batch Loss: 1.550106 Tokens per Sec: 19700, Lr: 0.000300\n", "2020-01-13 10:34:49,352 Epoch 18 Step: 90900 Batch Loss: 1.290155 Tokens per Sec: 19333, Lr: 0.000300\n", "2020-01-13 10:35:00,997 Epoch 18 Step: 91000 Batch Loss: 1.480033 Tokens per Sec: 19304, Lr: 0.000300\n", "2020-01-13 10:35:31,364 Example #0\n", "2020-01-13 10:35:31,364 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:35:31,365 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:35:31,365 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:35:31,365 Example #1\n", "2020-01-13 10:35:31,365 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:35:31,365 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:35:31,366 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 10:35:31,374 Example #2\n", "2020-01-13 10:35:31,375 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:35:31,375 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:35:31,375 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:35:31,375 Example #3\n", "2020-01-13 10:35:31,375 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:35:31,375 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:35:31,376 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:35:31,376 Validation result (greedy) at epoch 18, step 91000: bleu: 30.64, loss: 37695.0273, ppl: 3.6513, duration: 30.3779s\n", "2020-01-13 10:35:43,147 Epoch 18 Step: 91100 Batch Loss: 1.727778 Tokens per Sec: 19643, Lr: 0.000300\n", "2020-01-13 10:35:54,821 Epoch 18 Step: 91200 Batch Loss: 1.151322 Tokens per Sec: 19141, Lr: 0.000300\n", "2020-01-13 10:36:06,480 Epoch 18 Step: 91300 Batch Loss: 1.771249 Tokens per Sec: 19404, Lr: 0.000300\n", "2020-01-13 10:36:18,126 Epoch 18 Step: 91400 Batch Loss: 1.467818 Tokens per Sec: 19589, Lr: 0.000300\n", "2020-01-13 10:36:29,755 Epoch 18 Step: 91500 Batch Loss: 1.457606 Tokens per Sec: 19874, Lr: 0.000300\n", "2020-01-13 10:36:41,495 Epoch 18 Step: 91600 Batch Loss: 1.277822 Tokens per Sec: 19265, Lr: 0.000300\n", "2020-01-13 10:36:53,151 Epoch 18 Step: 91700 Batch Loss: 1.303588 Tokens per Sec: 19682, Lr: 0.000300\n", "2020-01-13 10:37:04,868 Epoch 18 Step: 91800 Batch Loss: 1.377799 Tokens per Sec: 19582, Lr: 0.000300\n", "2020-01-13 10:37:11,497 Epoch 18: total training loss 7380.49\n", "2020-01-13 10:37:11,498 EPOCH 19\n", "2020-01-13 10:37:17,190 Epoch 19 Step: 91900 Batch Loss: 1.314222 Tokens per Sec: 17184, Lr: 0.000300\n", "2020-01-13 10:37:28,870 Epoch 19 Step: 92000 Batch Loss: 1.390286 Tokens per Sec: 19470, Lr: 0.000300\n", "2020-01-13 10:37:59,306 Example #0\n", "2020-01-13 10:37:59,307 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:37:59,307 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:37:59,307 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa iji merie nchegbu .\n", "2020-01-13 10:37:59,307 Example #1\n", "2020-01-13 10:37:59,307 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:37:59,308 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:37:59,308 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka anyị ghara ikwe ka ndokwa ahụ mee ?\n", "2020-01-13 10:37:59,308 Example #2\n", "2020-01-13 10:37:59,308 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:37:59,308 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:37:59,309 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:37:59,309 Example #3\n", "2020-01-13 10:37:59,309 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:37:59,309 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:37:59,309 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:37:59,309 Validation result (greedy) at epoch 19, step 92000: bleu: 31.00, loss: 37499.2578, ppl: 3.6269, duration: 30.4382s\n", "2020-01-13 10:38:11,040 Epoch 19 Step: 92100 Batch Loss: 1.466298 Tokens per Sec: 19635, Lr: 0.000300\n", "2020-01-13 10:38:22,728 Epoch 19 Step: 92200 Batch Loss: 1.430419 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 10:38:34,481 Epoch 19 Step: 92300 Batch Loss: 1.363813 Tokens per Sec: 19465, Lr: 0.000300\n", "2020-01-13 10:38:46,174 Epoch 19 Step: 92400 Batch Loss: 1.281999 Tokens per Sec: 20145, Lr: 0.000300\n", "2020-01-13 10:38:57,858 Epoch 19 Step: 92500 Batch Loss: 1.258943 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-13 10:39:09,704 Epoch 19 Step: 92600 Batch Loss: 1.333773 Tokens per Sec: 19273, Lr: 0.000300\n", "2020-01-13 10:39:21,320 Epoch 19 Step: 92700 Batch Loss: 1.289272 Tokens per Sec: 20269, Lr: 0.000300\n", "2020-01-13 10:39:33,048 Epoch 19 Step: 92800 Batch Loss: 1.496623 Tokens per Sec: 19479, Lr: 0.000300\n", "2020-01-13 10:39:44,845 Epoch 19 Step: 92900 Batch Loss: 1.355070 Tokens per Sec: 20043, Lr: 0.000300\n", "2020-01-13 10:39:56,479 Epoch 19 Step: 93000 Batch Loss: 1.537194 Tokens per Sec: 19914, Lr: 0.000300\n", "2020-01-13 10:40:26,946 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:40:26,947 Saving new checkpoint.\n", "2020-01-13 10:40:28,435 Example #0\n", "2020-01-13 10:40:28,435 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:40:28,435 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:40:28,435 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:40:28,436 Example #1\n", "2020-01-13 10:40:28,436 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:40:28,436 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:40:28,436 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 10:40:28,436 Example #2\n", "2020-01-13 10:40:28,437 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:40:28,437 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:40:28,437 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:40:28,437 Example #3\n", "2020-01-13 10:40:28,437 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:40:28,437 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:40:28,437 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:40:28,438 Validation result (greedy) at epoch 19, step 93000: bleu: 30.87, loss: 37487.3438, ppl: 3.6254, duration: 31.9585s\n", "2020-01-13 10:40:40,047 Epoch 19 Step: 93100 Batch Loss: 1.368533 Tokens per Sec: 19356, Lr: 0.000300\n", "2020-01-13 10:40:51,772 Epoch 19 Step: 93200 Batch Loss: 1.385394 Tokens per Sec: 19678, Lr: 0.000300\n", "2020-01-13 10:41:03,528 Epoch 19 Step: 93300 Batch Loss: 1.505905 Tokens per Sec: 19619, Lr: 0.000300\n", "2020-01-13 10:41:15,074 Epoch 19 Step: 93400 Batch Loss: 1.313736 Tokens per Sec: 19558, Lr: 0.000300\n", "2020-01-13 10:41:26,786 Epoch 19 Step: 93500 Batch Loss: 1.668175 Tokens per Sec: 19739, Lr: 0.000300\n", "2020-01-13 10:41:38,437 Epoch 19 Step: 93600 Batch Loss: 1.446130 Tokens per Sec: 19501, Lr: 0.000300\n", "2020-01-13 10:41:50,002 Epoch 19 Step: 93700 Batch Loss: 1.406579 Tokens per Sec: 19698, Lr: 0.000300\n", "2020-01-13 10:42:01,704 Epoch 19 Step: 93800 Batch Loss: 1.303095 Tokens per Sec: 19370, Lr: 0.000300\n", "2020-01-13 10:42:13,454 Epoch 19 Step: 93900 Batch Loss: 1.547493 Tokens per Sec: 19573, Lr: 0.000300\n", "2020-01-13 10:42:25,109 Epoch 19 Step: 94000 Batch Loss: 1.422876 Tokens per Sec: 19705, Lr: 0.000300\n", "2020-01-13 10:42:55,536 Example #0\n", "2020-01-13 10:42:55,537 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:42:55,537 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:42:55,537 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:42:55,537 Example #1\n", "2020-01-13 10:42:55,538 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:42:55,538 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:42:55,538 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ bụrụ ihe ịga nke ọma ?\n", "2020-01-13 10:42:55,538 Example #2\n", "2020-01-13 10:42:55,539 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:42:55,539 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:42:55,539 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:42:55,539 Example #3\n", "2020-01-13 10:42:55,539 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:42:55,540 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:42:55,540 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:42:55,540 Validation result (greedy) at epoch 19, step 94000: bleu: 30.71, loss: 37562.5625, ppl: 3.6348, duration: 30.4309s\n", "2020-01-13 10:43:07,260 Epoch 19 Step: 94100 Batch Loss: 1.345604 Tokens per Sec: 19554, Lr: 0.000300\n", "2020-01-13 10:43:19,016 Epoch 19 Step: 94200 Batch Loss: 1.591436 Tokens per Sec: 19332, Lr: 0.000300\n", "2020-01-13 10:43:30,615 Epoch 19 Step: 94300 Batch Loss: 1.593561 Tokens per Sec: 19339, Lr: 0.000300\n", "2020-01-13 10:43:42,372 Epoch 19 Step: 94400 Batch Loss: 1.342171 Tokens per Sec: 19833, Lr: 0.000300\n", "2020-01-13 10:43:54,230 Epoch 19 Step: 94500 Batch Loss: 1.578671 Tokens per Sec: 19782, Lr: 0.000300\n", "2020-01-13 10:44:05,696 Epoch 19 Step: 94600 Batch Loss: 1.444828 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 10:44:17,449 Epoch 19 Step: 94700 Batch Loss: 1.325519 Tokens per Sec: 19575, Lr: 0.000300\n", "2020-01-13 10:44:29,067 Epoch 19 Step: 94800 Batch Loss: 1.523537 Tokens per Sec: 19373, Lr: 0.000300\n", "2020-01-13 10:44:40,789 Epoch 19 Step: 94900 Batch Loss: 1.342779 Tokens per Sec: 20174, Lr: 0.000300\n", "2020-01-13 10:44:52,482 Epoch 19 Step: 95000 Batch Loss: 1.319637 Tokens per Sec: 19366, Lr: 0.000300\n", "2020-01-13 10:45:22,936 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:45:22,936 Saving new checkpoint.\n", "2020-01-13 10:45:24,055 Example #0\n", "2020-01-13 10:45:24,056 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:45:24,056 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:45:24,056 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:45:24,056 Example #1\n", "2020-01-13 10:45:24,057 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:45:24,057 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:45:24,057 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ihe ịga nke ọma ?\n", "2020-01-13 10:45:24,057 Example #2\n", "2020-01-13 10:45:24,057 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:45:24,057 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:45:24,057 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 10:45:24,057 Example #3\n", "2020-01-13 10:45:24,058 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:45:24,058 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:45:24,058 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke na - eme ka Chineke gbaghara anyị .\n", "2020-01-13 10:45:24,058 Validation result (greedy) at epoch 19, step 95000: bleu: 30.64, loss: 37418.1641, ppl: 3.6168, duration: 31.5756s\n", "2020-01-13 10:45:35,619 Epoch 19 Step: 95100 Batch Loss: 1.593836 Tokens per Sec: 19150, Lr: 0.000300\n", "2020-01-13 10:45:47,386 Epoch 19 Step: 95200 Batch Loss: 1.572412 Tokens per Sec: 19830, Lr: 0.000300\n", "2020-01-13 10:45:58,817 Epoch 19 Step: 95300 Batch Loss: 1.569108 Tokens per Sec: 19105, Lr: 0.000300\n", "2020-01-13 10:46:10,445 Epoch 19 Step: 95400 Batch Loss: 1.239012 Tokens per Sec: 19372, Lr: 0.000300\n", "2020-01-13 10:46:22,120 Epoch 19 Step: 95500 Batch Loss: 1.334866 Tokens per Sec: 19616, Lr: 0.000300\n", "2020-01-13 10:46:33,730 Epoch 19 Step: 95600 Batch Loss: 1.417882 Tokens per Sec: 19667, Lr: 0.000300\n", "2020-01-13 10:46:45,469 Epoch 19 Step: 95700 Batch Loss: 1.509315 Tokens per Sec: 19540, Lr: 0.000300\n", "2020-01-13 10:46:56,985 Epoch 19 Step: 95800 Batch Loss: 1.495639 Tokens per Sec: 19492, Lr: 0.000300\n", "2020-01-13 10:47:08,670 Epoch 19 Step: 95900 Batch Loss: 1.496495 Tokens per Sec: 19727, Lr: 0.000300\n", "2020-01-13 10:47:20,265 Epoch 19 Step: 96000 Batch Loss: 1.234441 Tokens per Sec: 19329, Lr: 0.000300\n", "2020-01-13 10:47:50,706 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:47:50,707 Saving new checkpoint.\n", "2020-01-13 10:47:51,866 Example #0\n", "2020-01-13 10:47:51,868 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:47:51,868 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:47:51,868 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:47:51,868 Example #1\n", "2020-01-13 10:47:51,868 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:47:51,868 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:47:51,868 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime iji belata ndokwa ahụ ?\n", "2020-01-13 10:47:51,869 Example #2\n", "2020-01-13 10:47:51,869 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:47:51,869 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:47:51,869 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka mba nile .\n", "2020-01-13 10:47:51,869 Example #3\n", "2020-01-13 10:47:51,869 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:47:51,869 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:47:51,869 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:47:51,870 Validation result (greedy) at epoch 19, step 96000: bleu: 30.51, loss: 37366.0352, ppl: 3.6103, duration: 31.6042s\n", "2020-01-13 10:48:03,664 Epoch 19 Step: 96100 Batch Loss: 1.351749 Tokens per Sec: 19644, Lr: 0.000300\n", "2020-01-13 10:48:15,307 Epoch 19 Step: 96200 Batch Loss: 1.368593 Tokens per Sec: 19632, Lr: 0.000300\n", "2020-01-13 10:48:26,957 Epoch 19 Step: 96300 Batch Loss: 1.576224 Tokens per Sec: 19855, Lr: 0.000300\n", "2020-01-13 10:48:38,585 Epoch 19 Step: 96400 Batch Loss: 1.363944 Tokens per Sec: 19326, Lr: 0.000300\n", "2020-01-13 10:48:50,147 Epoch 19 Step: 96500 Batch Loss: 1.400650 Tokens per Sec: 19704, Lr: 0.000300\n", "2020-01-13 10:49:01,941 Epoch 19 Step: 96600 Batch Loss: 1.515855 Tokens per Sec: 19616, Lr: 0.000300\n", "2020-01-13 10:49:13,608 Epoch 19 Step: 96700 Batch Loss: 1.641194 Tokens per Sec: 19687, Lr: 0.000300\n", "2020-01-13 10:49:25,311 Epoch 19 Step: 96800 Batch Loss: 1.536851 Tokens per Sec: 19949, Lr: 0.000300\n", "2020-01-13 10:49:37,096 Epoch 19 Step: 96900 Batch Loss: 1.397208 Tokens per Sec: 19600, Lr: 0.000300\n", "2020-01-13 10:49:44,617 Epoch 19: total training loss 7319.88\n", "2020-01-13 10:49:44,617 EPOCH 20\n", "2020-01-13 10:49:49,354 Epoch 20 Step: 97000 Batch Loss: 1.459871 Tokens per Sec: 17271, Lr: 0.000300\n", "2020-01-13 10:50:19,833 Example #0\n", "2020-01-13 10:50:19,833 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:50:19,833 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:50:19,834 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:50:19,834 Example #1\n", "2020-01-13 10:50:19,834 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:50:19,834 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:50:19,835 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime iji belata ndokwa ahụ ?\n", "2020-01-13 10:50:19,835 Example #2\n", "2020-01-13 10:50:19,835 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:50:19,835 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:50:19,835 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka agbara mba nile àmà .\n", "2020-01-13 10:50:19,836 Example #3\n", "2020-01-13 10:50:19,836 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:50:19,836 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:50:19,836 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:50:19,836 Validation result (greedy) at epoch 20, step 97000: bleu: 31.12, loss: 37499.6016, ppl: 3.6269, duration: 30.4820s\n", "2020-01-13 10:50:31,554 Epoch 20 Step: 97100 Batch Loss: 1.534641 Tokens per Sec: 18984, Lr: 0.000300\n", "2020-01-13 10:50:43,219 Epoch 20 Step: 97200 Batch Loss: 1.067591 Tokens per Sec: 19855, Lr: 0.000300\n", "2020-01-13 10:50:54,962 Epoch 20 Step: 97300 Batch Loss: 1.640912 Tokens per Sec: 19734, Lr: 0.000300\n", "2020-01-13 10:51:06,844 Epoch 20 Step: 97400 Batch Loss: 1.315690 Tokens per Sec: 19938, Lr: 0.000300\n", "2020-01-13 10:51:18,350 Epoch 20 Step: 97500 Batch Loss: 1.429338 Tokens per Sec: 19279, Lr: 0.000300\n", "2020-01-13 10:51:30,257 Epoch 20 Step: 97600 Batch Loss: 1.562683 Tokens per Sec: 19467, Lr: 0.000300\n", "2020-01-13 10:51:41,902 Epoch 20 Step: 97700 Batch Loss: 1.507977 Tokens per Sec: 19587, Lr: 0.000300\n", "2020-01-13 10:51:53,524 Epoch 20 Step: 97800 Batch Loss: 1.450169 Tokens per Sec: 19823, Lr: 0.000300\n", "2020-01-13 10:52:05,233 Epoch 20 Step: 97900 Batch Loss: 1.340249 Tokens per Sec: 19542, Lr: 0.000300\n", "2020-01-13 10:52:16,866 Epoch 20 Step: 98000 Batch Loss: 1.417935 Tokens per Sec: 19919, Lr: 0.000300\n", "2020-01-13 10:52:47,198 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:52:47,198 Saving new checkpoint.\n", "2020-01-13 10:52:48,471 Example #0\n", "2020-01-13 10:52:48,472 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:52:48,472 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:52:48,472 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:52:48,472 Example #1\n", "2020-01-13 10:52:48,472 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:52:48,472 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:52:48,472 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime ka e nwee ihe ịga nke ọma ?\n", "2020-01-13 10:52:48,472 Example #2\n", "2020-01-13 10:52:48,473 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:52:48,473 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:52:48,473 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:52:48,473 Example #3\n", "2020-01-13 10:52:48,473 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:52:48,473 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:52:48,473 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 10:52:48,473 Validation result (greedy) at epoch 20, step 98000: bleu: 30.99, loss: 37291.8164, ppl: 3.6011, duration: 31.6070s\n", "2020-01-13 10:53:00,360 Epoch 20 Step: 98100 Batch Loss: 1.266437 Tokens per Sec: 19799, Lr: 0.000300\n", "2020-01-13 10:53:11,896 Epoch 20 Step: 98200 Batch Loss: 1.343153 Tokens per Sec: 19440, Lr: 0.000300\n", "2020-01-13 10:53:23,631 Epoch 20 Step: 98300 Batch Loss: 1.331352 Tokens per Sec: 19541, Lr: 0.000300\n", "2020-01-13 10:53:35,361 Epoch 20 Step: 98400 Batch Loss: 1.437219 Tokens per Sec: 19701, Lr: 0.000300\n", "2020-01-13 10:53:46,907 Epoch 20 Step: 98500 Batch Loss: 1.166443 Tokens per Sec: 19463, Lr: 0.000300\n", "2020-01-13 10:53:58,472 Epoch 20 Step: 98600 Batch Loss: 1.458262 Tokens per Sec: 19477, Lr: 0.000300\n", "2020-01-13 10:54:10,120 Epoch 20 Step: 98700 Batch Loss: 1.301278 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-13 10:54:21,745 Epoch 20 Step: 98800 Batch Loss: 1.319573 Tokens per Sec: 19911, Lr: 0.000300\n", "2020-01-13 10:54:33,441 Epoch 20 Step: 98900 Batch Loss: 1.327730 Tokens per Sec: 20080, Lr: 0.000300\n", "2020-01-13 10:54:44,946 Epoch 20 Step: 99000 Batch Loss: 1.389696 Tokens per Sec: 19776, Lr: 0.000300\n", "2020-01-13 10:55:15,222 Hooray! New best validation result [ppl]!\n", "2020-01-13 10:55:15,222 Saving new checkpoint.\n", "2020-01-13 10:55:16,734 Example #0\n", "2020-01-13 10:55:16,734 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:55:16,734 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:55:16,734 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:55:16,734 Example #1\n", "2020-01-13 10:55:16,735 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:55:16,735 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:55:16,735 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 10:55:16,735 Example #2\n", "2020-01-13 10:55:16,735 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:55:16,735 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:55:16,735 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka dị oké ọnụ ahịa n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:55:16,735 Example #3\n", "2020-01-13 10:55:16,736 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:55:16,736 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:55:16,736 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 10:55:16,736 Validation result (greedy) at epoch 20, step 99000: bleu: 31.44, loss: 37241.0195, ppl: 3.5948, duration: 31.7899s\n", "2020-01-13 10:55:28,395 Epoch 20 Step: 99100 Batch Loss: 1.295375 Tokens per Sec: 19685, Lr: 0.000300\n", "2020-01-13 10:55:39,987 Epoch 20 Step: 99200 Batch Loss: 1.511962 Tokens per Sec: 19770, Lr: 0.000300\n", "2020-01-13 10:55:51,656 Epoch 20 Step: 99300 Batch Loss: 1.215511 Tokens per Sec: 19892, Lr: 0.000300\n", "2020-01-13 10:56:03,164 Epoch 20 Step: 99400 Batch Loss: 1.426024 Tokens per Sec: 20096, Lr: 0.000300\n", "2020-01-13 10:56:14,755 Epoch 20 Step: 99500 Batch Loss: 1.598156 Tokens per Sec: 19259, Lr: 0.000300\n", "2020-01-13 10:56:26,411 Epoch 20 Step: 99600 Batch Loss: 1.570418 Tokens per Sec: 19772, Lr: 0.000300\n", "2020-01-13 10:56:37,928 Epoch 20 Step: 99700 Batch Loss: 1.469491 Tokens per Sec: 20473, Lr: 0.000300\n", "2020-01-13 10:56:49,510 Epoch 20 Step: 99800 Batch Loss: 1.319225 Tokens per Sec: 19231, Lr: 0.000300\n", "2020-01-13 10:57:01,092 Epoch 20 Step: 99900 Batch Loss: 1.498237 Tokens per Sec: 19819, Lr: 0.000300\n", "2020-01-13 10:57:12,682 Epoch 20 Step: 100000 Batch Loss: 1.500828 Tokens per Sec: 19398, Lr: 0.000300\n", "2020-01-13 10:57:42,968 Example #0\n", "2020-01-13 10:57:42,968 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 10:57:42,969 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 10:57:42,969 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 10:57:42,969 Example #1\n", "2020-01-13 10:57:42,969 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 10:57:42,969 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 10:57:42,969 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere ime ka e mee ndokwa ahụ ?\n", "2020-01-13 10:57:42,970 Example #2\n", "2020-01-13 10:57:42,970 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 10:57:42,970 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 10:57:42,970 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 10:57:42,970 Example #3\n", "2020-01-13 10:57:42,971 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 10:57:42,971 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 10:57:42,971 \tHypothesis: Nke ahụ bụ ihe nke abụọ mere anyị ga - eji gbaghara Chineke .\n", "2020-01-13 10:57:42,971 Validation result (greedy) at epoch 20, step 100000: bleu: 31.05, loss: 37314.0039, ppl: 3.6039, duration: 30.2888s\n", "2020-01-13 10:57:54,511 Epoch 20 Step: 100100 Batch Loss: 1.347518 Tokens per Sec: 19836, Lr: 0.000300\n", "2020-01-13 10:58:06,170 Epoch 20 Step: 100200 Batch Loss: 1.604760 Tokens per Sec: 19586, Lr: 0.000300\n", "2020-01-13 10:58:17,843 Epoch 20 Step: 100300 Batch Loss: 1.360356 Tokens per Sec: 19766, Lr: 0.000300\n", "2020-01-13 10:58:29,586 Epoch 20 Step: 100400 Batch Loss: 1.475304 Tokens per Sec: 19843, Lr: 0.000300\n", "2020-01-13 10:58:41,244 Epoch 20 Step: 100500 Batch Loss: 1.519938 Tokens per Sec: 19492, Lr: 0.000300\n", "2020-01-13 10:58:52,748 Epoch 20 Step: 100600 Batch Loss: 1.444130 Tokens per Sec: 19995, Lr: 0.000300\n", "2020-01-13 10:59:04,394 Epoch 20 Step: 100700 Batch Loss: 1.374350 Tokens per Sec: 19952, Lr: 0.000300\n", "2020-01-13 10:59:15,948 Epoch 20 Step: 100800 Batch Loss: 1.591011 Tokens per Sec: 19711, Lr: 0.000300\n", "2020-01-13 10:59:27,441 Epoch 20 Step: 100900 Batch Loss: 1.458501 Tokens per Sec: 19951, Lr: 0.000300\n", "2020-01-13 10:59:39,093 Epoch 20 Step: 101000 Batch Loss: 1.395278 Tokens per Sec: 19538, Lr: 0.000300\n", "2020-01-13 11:00:09,355 Example #0\n", "2020-01-13 11:00:09,355 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:00:09,355 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:00:09,356 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:00:09,356 Example #1\n", "2020-01-13 11:00:09,356 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:00:09,356 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:00:09,356 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 11:00:09,356 Example #2\n", "2020-01-13 11:00:09,357 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:00:09,357 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:00:09,357 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 11:00:09,357 Example #3\n", "2020-01-13 11:00:09,358 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:00:09,358 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:00:09,358 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 11:00:09,358 Validation result (greedy) at epoch 20, step 101000: bleu: 31.47, loss: 37252.9414, ppl: 3.5963, duration: 30.2643s\n", "2020-01-13 11:00:20,976 Epoch 20 Step: 101100 Batch Loss: 1.531617 Tokens per Sec: 20002, Lr: 0.000300\n", "2020-01-13 11:00:32,586 Epoch 20 Step: 101200 Batch Loss: 1.413430 Tokens per Sec: 19857, Lr: 0.000300\n", "2020-01-13 11:00:43,978 Epoch 20 Step: 101300 Batch Loss: 1.436608 Tokens per Sec: 19528, Lr: 0.000300\n", "2020-01-13 11:00:55,573 Epoch 20 Step: 101400 Batch Loss: 1.278575 Tokens per Sec: 20136, Lr: 0.000300\n", "2020-01-13 11:01:07,111 Epoch 20 Step: 101500 Batch Loss: 1.518520 Tokens per Sec: 19579, Lr: 0.000300\n", "2020-01-13 11:01:18,772 Epoch 20 Step: 101600 Batch Loss: 1.546182 Tokens per Sec: 19517, Lr: 0.000300\n", "2020-01-13 11:01:30,457 Epoch 20 Step: 101700 Batch Loss: 1.390770 Tokens per Sec: 19913, Lr: 0.000300\n", "2020-01-13 11:01:41,941 Epoch 20 Step: 101800 Batch Loss: 1.410020 Tokens per Sec: 20195, Lr: 0.000300\n", "2020-01-13 11:01:53,562 Epoch 20 Step: 101900 Batch Loss: 1.387019 Tokens per Sec: 19785, Lr: 0.000300\n", "2020-01-13 11:02:05,243 Epoch 20 Step: 102000 Batch Loss: 1.446915 Tokens per Sec: 20147, Lr: 0.000300\n", "2020-01-13 11:02:35,502 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:02:35,502 Saving new checkpoint.\n", "2020-01-13 11:02:36,615 Example #0\n", "2020-01-13 11:02:36,615 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:02:36,616 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:02:36,616 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:02:36,616 Example #1\n", "2020-01-13 11:02:36,616 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:02:36,616 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:02:36,616 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 11:02:36,616 Example #2\n", "2020-01-13 11:02:36,616 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:02:36,617 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:02:36,617 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị ọzọ aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:02:36,617 Example #3\n", "2020-01-13 11:02:36,617 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:02:36,617 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:02:36,617 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 11:02:36,617 Validation result (greedy) at epoch 20, step 102000: bleu: 30.96, loss: 37017.0664, ppl: 3.5673, duration: 31.3733s\n", "2020-01-13 11:02:44,118 Epoch 20: total training loss 7250.02\n", "2020-01-13 11:02:44,118 EPOCH 21\n", "2020-01-13 11:02:48,815 Epoch 21 Step: 102100 Batch Loss: 1.441071 Tokens per Sec: 17721, Lr: 0.000300\n", "2020-01-13 11:03:00,419 Epoch 21 Step: 102200 Batch Loss: 1.365152 Tokens per Sec: 20175, Lr: 0.000300\n", "2020-01-13 11:03:11,964 Epoch 21 Step: 102300 Batch Loss: 1.376314 Tokens per Sec: 19727, Lr: 0.000300\n", "2020-01-13 11:03:23,697 Epoch 21 Step: 102400 Batch Loss: 1.405431 Tokens per Sec: 19715, Lr: 0.000300\n", "2020-01-13 11:03:35,215 Epoch 21 Step: 102500 Batch Loss: 1.475766 Tokens per Sec: 20197, Lr: 0.000300\n", "2020-01-13 11:03:46,835 Epoch 21 Step: 102600 Batch Loss: 1.434863 Tokens per Sec: 19628, Lr: 0.000300\n", "2020-01-13 11:03:58,427 Epoch 21 Step: 102700 Batch Loss: 1.430636 Tokens per Sec: 20030, Lr: 0.000300\n", "2020-01-13 11:04:09,900 Epoch 21 Step: 102800 Batch Loss: 1.355415 Tokens per Sec: 20061, Lr: 0.000300\n", "2020-01-13 11:04:21,471 Epoch 21 Step: 102900 Batch Loss: 1.540421 Tokens per Sec: 19542, Lr: 0.000300\n", "2020-01-13 11:04:33,023 Epoch 21 Step: 103000 Batch Loss: 1.573962 Tokens per Sec: 20388, Lr: 0.000300\n", "2020-01-13 11:05:03,273 Example #0\n", "2020-01-13 11:05:03,273 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:05:03,273 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:05:03,274 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:05:03,274 Example #1\n", "2020-01-13 11:05:03,274 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:05:03,274 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:05:03,275 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị ?\n", "2020-01-13 11:05:03,275 Example #2\n", "2020-01-13 11:05:03,275 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:05:03,275 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:05:03,275 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 11:05:03,275 Example #3\n", "2020-01-13 11:05:03,276 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:05:03,276 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:05:03,276 \tHypothesis: Nke ahụ bụ ihe nke abụọ mere anyị ga - eji gbaghara Chineke .\n", "2020-01-13 11:05:03,276 Validation result (greedy) at epoch 21, step 103000: bleu: 31.51, loss: 37028.4102, ppl: 3.5687, duration: 30.2524s\n", "2020-01-13 11:05:14,810 Epoch 21 Step: 103100 Batch Loss: 1.324983 Tokens per Sec: 19285, Lr: 0.000300\n", "2020-01-13 11:05:26,473 Epoch 21 Step: 103200 Batch Loss: 1.355417 Tokens per Sec: 19858, Lr: 0.000300\n", "2020-01-13 11:05:37,990 Epoch 21 Step: 103300 Batch Loss: 1.285268 Tokens per Sec: 19817, Lr: 0.000300\n", "2020-01-13 11:05:49,592 Epoch 21 Step: 103400 Batch Loss: 1.469623 Tokens per Sec: 19812, Lr: 0.000300\n", "2020-01-13 11:06:01,103 Epoch 21 Step: 103500 Batch Loss: 1.613525 Tokens per Sec: 19527, Lr: 0.000300\n", "2020-01-13 11:06:12,703 Epoch 21 Step: 103600 Batch Loss: 1.392306 Tokens per Sec: 19788, Lr: 0.000300\n", "2020-01-13 11:06:24,217 Epoch 21 Step: 103700 Batch Loss: 1.269753 Tokens per Sec: 19519, Lr: 0.000300\n", "2020-01-13 11:06:35,838 Epoch 21 Step: 103800 Batch Loss: 1.394409 Tokens per Sec: 19836, Lr: 0.000300\n", "2020-01-13 11:06:47,401 Epoch 21 Step: 103900 Batch Loss: 1.542328 Tokens per Sec: 19913, Lr: 0.000300\n", "2020-01-13 11:06:59,000 Epoch 21 Step: 104000 Batch Loss: 1.319862 Tokens per Sec: 20543, Lr: 0.000300\n", "2020-01-13 11:07:29,236 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:07:29,236 Saving new checkpoint.\n", "2020-01-13 11:07:30,719 Example #0\n", "2020-01-13 11:07:30,720 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:07:30,720 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:07:30,720 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:07:30,720 Example #1\n", "2020-01-13 11:07:30,720 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:07:30,720 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:07:30,720 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 11:07:30,721 Example #2\n", "2020-01-13 11:07:30,721 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:07:30,721 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:07:30,721 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba mba nile àmà .\n", "2020-01-13 11:07:30,721 Example #3\n", "2020-01-13 11:07:30,721 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:07:30,721 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:07:30,721 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:07:30,721 Validation result (greedy) at epoch 21, step 104000: bleu: 31.61, loss: 36833.2383, ppl: 3.5448, duration: 31.7207s\n", "2020-01-13 11:07:42,352 Epoch 21 Step: 104100 Batch Loss: 1.383911 Tokens per Sec: 20145, Lr: 0.000300\n", "2020-01-13 11:07:54,095 Epoch 21 Step: 104200 Batch Loss: 1.483497 Tokens per Sec: 19948, Lr: 0.000300\n", "2020-01-13 11:08:05,733 Epoch 21 Step: 104300 Batch Loss: 1.444295 Tokens per Sec: 20125, Lr: 0.000300\n", "2020-01-13 11:08:17,143 Epoch 21 Step: 104400 Batch Loss: 1.418002 Tokens per Sec: 19313, Lr: 0.000300\n", "2020-01-13 11:08:28,717 Epoch 21 Step: 104500 Batch Loss: 1.215746 Tokens per Sec: 19243, Lr: 0.000300\n", "2020-01-13 11:08:40,271 Epoch 21 Step: 104600 Batch Loss: 1.422776 Tokens per Sec: 19995, Lr: 0.000300\n", "2020-01-13 11:08:51,874 Epoch 21 Step: 104700 Batch Loss: 2.067084 Tokens per Sec: 20169, Lr: 0.000300\n", "2020-01-13 11:09:03,514 Epoch 21 Step: 104800 Batch Loss: 1.384564 Tokens per Sec: 19578, Lr: 0.000300\n", "2020-01-13 11:09:15,104 Epoch 21 Step: 104900 Batch Loss: 1.546949 Tokens per Sec: 19767, Lr: 0.000300\n", "2020-01-13 11:09:26,745 Epoch 21 Step: 105000 Batch Loss: 1.552568 Tokens per Sec: 19902, Lr: 0.000300\n", "2020-01-13 11:09:57,023 Example #0\n", "2020-01-13 11:09:57,024 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:09:57,024 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:09:57,024 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị mkpa n’imeri nchegbu .\n", "2020-01-13 11:09:57,024 Example #1\n", "2020-01-13 11:09:57,025 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:09:57,025 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:09:57,025 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mebie ndokwa ahụ ?\n", "2020-01-13 11:09:57,025 Example #2\n", "2020-01-13 11:09:57,026 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:09:57,026 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:09:57,026 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 11:09:57,026 Example #3\n", "2020-01-13 11:09:57,026 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:09:57,026 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:09:57,027 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:09:57,027 Validation result (greedy) at epoch 21, step 105000: bleu: 31.46, loss: 36887.7969, ppl: 3.5515, duration: 30.2815s\n", "2020-01-13 11:10:08,607 Epoch 21 Step: 105100 Batch Loss: 1.370720 Tokens per Sec: 20233, Lr: 0.000300\n", "2020-01-13 11:10:20,245 Epoch 21 Step: 105200 Batch Loss: 1.329810 Tokens per Sec: 19265, Lr: 0.000300\n", "2020-01-13 11:10:31,854 Epoch 21 Step: 105300 Batch Loss: 1.264773 Tokens per Sec: 19699, Lr: 0.000300\n", "2020-01-13 11:10:43,431 Epoch 21 Step: 105400 Batch Loss: 1.284825 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-13 11:10:55,138 Epoch 21 Step: 105500 Batch Loss: 1.625619 Tokens per Sec: 19933, Lr: 0.000300\n", "2020-01-13 11:11:06,608 Epoch 21 Step: 105600 Batch Loss: 1.266796 Tokens per Sec: 19842, Lr: 0.000300\n", "2020-01-13 11:11:18,300 Epoch 21 Step: 105700 Batch Loss: 1.552985 Tokens per Sec: 19593, Lr: 0.000300\n", "2020-01-13 11:11:29,791 Epoch 21 Step: 105800 Batch Loss: 1.412260 Tokens per Sec: 19849, Lr: 0.000300\n", "2020-01-13 11:11:41,474 Epoch 21 Step: 105900 Batch Loss: 1.380784 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 11:11:53,063 Epoch 21 Step: 106000 Batch Loss: 1.369098 Tokens per Sec: 19625, Lr: 0.000300\n", "2020-01-13 11:12:23,290 Example #0\n", "2020-01-13 11:12:23,291 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:12:23,291 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:12:23,291 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:12:23,291 Example #1\n", "2020-01-13 11:12:23,292 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:12:23,292 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:12:23,292 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ime ?\n", "2020-01-13 11:12:23,292 Example #2\n", "2020-01-13 11:12:23,292 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:12:23,293 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:12:23,293 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:12:23,293 Example #3\n", "2020-01-13 11:12:23,293 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:12:23,293 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:12:23,293 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ iji nweta mgbaghara Chineke .\n", "2020-01-13 11:12:23,294 Validation result (greedy) at epoch 21, step 106000: bleu: 30.65, loss: 36941.3867, ppl: 3.5580, duration: 30.2299s\n", "2020-01-13 11:12:34,902 Epoch 21 Step: 106100 Batch Loss: 1.564319 Tokens per Sec: 19601, Lr: 0.000300\n", "2020-01-13 11:12:46,413 Epoch 21 Step: 106200 Batch Loss: 1.352347 Tokens per Sec: 19526, Lr: 0.000300\n", "2020-01-13 11:12:58,079 Epoch 21 Step: 106300 Batch Loss: 1.576976 Tokens per Sec: 19787, Lr: 0.000300\n", "2020-01-13 11:13:09,814 Epoch 21 Step: 106400 Batch Loss: 1.324911 Tokens per Sec: 19651, Lr: 0.000300\n", "2020-01-13 11:13:21,300 Epoch 21 Step: 106500 Batch Loss: 1.356485 Tokens per Sec: 19683, Lr: 0.000300\n", "2020-01-13 11:13:32,849 Epoch 21 Step: 106600 Batch Loss: 1.491834 Tokens per Sec: 19489, Lr: 0.000300\n", "2020-01-13 11:13:44,581 Epoch 21 Step: 106700 Batch Loss: 1.685879 Tokens per Sec: 19605, Lr: 0.000300\n", "2020-01-13 11:13:56,060 Epoch 21 Step: 106800 Batch Loss: 1.361184 Tokens per Sec: 19598, Lr: 0.000300\n", "2020-01-13 11:14:07,664 Epoch 21 Step: 106900 Batch Loss: 1.430187 Tokens per Sec: 19759, Lr: 0.000300\n", "2020-01-13 11:14:19,233 Epoch 21 Step: 107000 Batch Loss: 1.532523 Tokens per Sec: 19524, Lr: 0.000300\n", "2020-01-13 11:14:49,570 Example #0\n", "2020-01-13 11:14:49,571 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:14:49,571 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:14:49,571 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:14:49,571 Example #1\n", "2020-01-13 11:14:49,572 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:14:49,572 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:14:49,572 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka e leghara ndokwa ahụ anya ?\n", "2020-01-13 11:14:49,572 Example #2\n", "2020-01-13 11:14:49,573 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:14:49,573 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:14:49,573 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile ume .\n", "2020-01-13 11:14:49,573 Example #3\n", "2020-01-13 11:14:49,573 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:14:49,573 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:14:49,574 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:14:49,574 Validation result (greedy) at epoch 21, step 107000: bleu: 31.44, loss: 36944.2695, ppl: 3.5584, duration: 30.3400s\n", "2020-01-13 11:15:01,226 Epoch 21 Step: 107100 Batch Loss: 1.535097 Tokens per Sec: 19684, Lr: 0.000300\n", "2020-01-13 11:15:08,756 Epoch 21: total training loss 7203.43\n", "2020-01-13 11:15:08,756 EPOCH 22\n", "2020-01-13 11:15:13,391 Epoch 22 Step: 107200 Batch Loss: 1.200144 Tokens per Sec: 17506, Lr: 0.000300\n", "2020-01-13 11:15:25,034 Epoch 22 Step: 107300 Batch Loss: 1.450766 Tokens per Sec: 19953, Lr: 0.000300\n", "2020-01-13 11:15:36,651 Epoch 22 Step: 107400 Batch Loss: 1.385714 Tokens per Sec: 19528, Lr: 0.000300\n", "2020-01-13 11:15:48,219 Epoch 22 Step: 107500 Batch Loss: 1.185328 Tokens per Sec: 19770, Lr: 0.000300\n", "2020-01-13 11:15:59,978 Epoch 22 Step: 107600 Batch Loss: 1.386720 Tokens per Sec: 19853, Lr: 0.000300\n", "2020-01-13 11:16:11,648 Epoch 22 Step: 107700 Batch Loss: 1.244670 Tokens per Sec: 19693, Lr: 0.000300\n", "2020-01-13 11:16:23,090 Epoch 22 Step: 107800 Batch Loss: 1.355780 Tokens per Sec: 19229, Lr: 0.000300\n", "2020-01-13 11:16:34,698 Epoch 22 Step: 107900 Batch Loss: 1.371154 Tokens per Sec: 19183, Lr: 0.000300\n", "2020-01-13 11:16:46,306 Epoch 22 Step: 108000 Batch Loss: 1.485193 Tokens per Sec: 19837, Lr: 0.000300\n", "2020-01-13 11:17:16,724 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:17:16,724 Saving new checkpoint.\n", "2020-01-13 11:17:17,809 Example #0\n", "2020-01-13 11:17:17,809 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:17:17,809 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:17:17,810 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:17:17,810 Example #1\n", "2020-01-13 11:17:17,810 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:17:17,810 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:17:17,810 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:17:17,810 Example #2\n", "2020-01-13 11:17:17,811 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:17:17,811 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:17:17,811 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:17:17,811 Example #3\n", "2020-01-13 11:17:17,811 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:17:17,811 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:17:17,811 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 11:17:17,811 Validation result (greedy) at epoch 22, step 108000: bleu: 30.92, loss: 36782.4023, ppl: 3.5386, duration: 31.5044s\n", "2020-01-13 11:17:29,456 Epoch 22 Step: 108100 Batch Loss: 1.508260 Tokens per Sec: 19577, Lr: 0.000300\n", "2020-01-13 11:17:41,093 Epoch 22 Step: 108200 Batch Loss: 1.508039 Tokens per Sec: 19890, Lr: 0.000300\n", "2020-01-13 11:17:52,778 Epoch 22 Step: 108300 Batch Loss: 1.549342 Tokens per Sec: 19509, Lr: 0.000300\n", "2020-01-13 11:18:04,328 Epoch 22 Step: 108400 Batch Loss: 1.671428 Tokens per Sec: 19604, Lr: 0.000300\n", "2020-01-13 11:18:15,922 Epoch 22 Step: 108500 Batch Loss: 1.333295 Tokens per Sec: 19986, Lr: 0.000300\n", "2020-01-13 11:18:27,486 Epoch 22 Step: 108600 Batch Loss: 1.324474 Tokens per Sec: 19523, Lr: 0.000300\n", "2020-01-13 11:18:39,116 Epoch 22 Step: 108700 Batch Loss: 1.588885 Tokens per Sec: 19640, Lr: 0.000300\n", "2020-01-13 11:18:50,809 Epoch 22 Step: 108800 Batch Loss: 1.528734 Tokens per Sec: 19571, Lr: 0.000300\n", "2020-01-13 11:19:02,426 Epoch 22 Step: 108900 Batch Loss: 1.368267 Tokens per Sec: 19318, Lr: 0.000300\n", "2020-01-13 11:19:13,935 Epoch 22 Step: 109000 Batch Loss: 1.490093 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-13 11:19:44,197 Example #0\n", "2020-01-13 11:19:44,204 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:19:44,207 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:19:44,207 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:19:44,207 Example #1\n", "2020-01-13 11:19:44,207 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:19:44,208 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:19:44,208 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye bụrụ ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:19:44,208 Example #2\n", "2020-01-13 11:19:44,208 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:19:44,208 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:19:44,209 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:19:44,209 Example #3\n", "2020-01-13 11:19:44,209 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:19:44,209 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:19:44,209 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 11:19:44,210 Validation result (greedy) at epoch 22, step 109000: bleu: 31.21, loss: 36783.0547, ppl: 3.5387, duration: 30.2736s\n", "2020-01-13 11:19:55,781 Epoch 22 Step: 109100 Batch Loss: 1.519132 Tokens per Sec: 19391, Lr: 0.000300\n", "2020-01-13 11:20:07,332 Epoch 22 Step: 109200 Batch Loss: 1.196584 Tokens per Sec: 19420, Lr: 0.000300\n", "2020-01-13 11:20:18,968 Epoch 22 Step: 109300 Batch Loss: 1.470526 Tokens per Sec: 19704, Lr: 0.000300\n", "2020-01-13 11:20:30,654 Epoch 22 Step: 109400 Batch Loss: 1.528568 Tokens per Sec: 19909, Lr: 0.000300\n", "2020-01-13 11:20:42,296 Epoch 22 Step: 109500 Batch Loss: 1.441842 Tokens per Sec: 19646, Lr: 0.000300\n", "2020-01-13 11:20:54,065 Epoch 22 Step: 109600 Batch Loss: 1.110202 Tokens per Sec: 19929, Lr: 0.000300\n", "2020-01-13 11:21:05,610 Epoch 22 Step: 109700 Batch Loss: 1.421588 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 11:21:17,306 Epoch 22 Step: 109800 Batch Loss: 1.487159 Tokens per Sec: 19853, Lr: 0.000300\n", "2020-01-13 11:21:28,777 Epoch 22 Step: 109900 Batch Loss: 1.275938 Tokens per Sec: 19877, Lr: 0.000300\n", "2020-01-13 11:21:40,380 Epoch 22 Step: 110000 Batch Loss: 1.380259 Tokens per Sec: 19759, Lr: 0.000300\n", "2020-01-13 11:22:10,621 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:22:10,622 Saving new checkpoint.\n", "2020-01-13 11:22:11,864 Example #0\n", "2020-01-13 11:22:11,864 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:22:11,864 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:22:11,864 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya na nchegbu anyị na - enwe bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:22:11,864 Example #1\n", "2020-01-13 11:22:11,865 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:22:11,865 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:22:11,865 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 11:22:11,865 Example #2\n", "2020-01-13 11:22:11,865 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:22:11,865 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:22:11,866 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 11:22:11,866 Example #3\n", "2020-01-13 11:22:11,866 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:22:11,866 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:22:11,866 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:22:11,866 Validation result (greedy) at epoch 22, step 110000: bleu: 31.76, loss: 36687.4570, ppl: 3.5271, duration: 31.4857s\n", "2020-01-13 11:22:23,443 Epoch 22 Step: 110100 Batch Loss: 1.582130 Tokens per Sec: 19729, Lr: 0.000300\n", "2020-01-13 11:22:34,956 Epoch 22 Step: 110200 Batch Loss: 1.527944 Tokens per Sec: 19421, Lr: 0.000300\n", "2020-01-13 11:22:46,671 Epoch 22 Step: 110300 Batch Loss: 1.483629 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-13 11:22:58,207 Epoch 22 Step: 110400 Batch Loss: 1.530232 Tokens per Sec: 19864, Lr: 0.000300\n", "2020-01-13 11:23:09,867 Epoch 22 Step: 110500 Batch Loss: 1.401563 Tokens per Sec: 19599, Lr: 0.000300\n", "2020-01-13 11:23:21,411 Epoch 22 Step: 110600 Batch Loss: 1.336294 Tokens per Sec: 19664, Lr: 0.000300\n", "2020-01-13 11:23:32,927 Epoch 22 Step: 110700 Batch Loss: 1.467191 Tokens per Sec: 19922, Lr: 0.000300\n", "2020-01-13 11:23:44,553 Epoch 22 Step: 110800 Batch Loss: 1.481768 Tokens per Sec: 19380, Lr: 0.000300\n", "2020-01-13 11:23:56,072 Epoch 22 Step: 110900 Batch Loss: 1.536275 Tokens per Sec: 19948, Lr: 0.000300\n", "2020-01-13 11:24:07,789 Epoch 22 Step: 111000 Batch Loss: 1.355148 Tokens per Sec: 19708, Lr: 0.000300\n", "2020-01-13 11:24:38,042 Example #0\n", "2020-01-13 11:24:38,043 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:24:38,043 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:24:38,043 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:24:38,043 Example #1\n", "2020-01-13 11:24:38,044 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:24:38,044 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:24:38,044 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye gaa nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ihe ịga nke ọma ná ndokwa ahụ ?\n", "2020-01-13 11:24:38,044 Example #2\n", "2020-01-13 11:24:38,045 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:24:38,045 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:24:38,045 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:24:38,045 Example #3\n", "2020-01-13 11:24:38,045 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:24:38,046 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:24:38,046 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ iji nweta mgbaghara Chineke .\n", "2020-01-13 11:24:38,046 Validation result (greedy) at epoch 22, step 111000: bleu: 31.70, loss: 36765.8398, ppl: 3.5366, duration: 30.2564s\n", "2020-01-13 11:24:49,658 Epoch 22 Step: 111100 Batch Loss: 1.404249 Tokens per Sec: 19342, Lr: 0.000300\n", "2020-01-13 11:25:01,339 Epoch 22 Step: 111200 Batch Loss: 1.469835 Tokens per Sec: 20015, Lr: 0.000300\n", "2020-01-13 11:25:12,907 Epoch 22 Step: 111300 Batch Loss: 1.608369 Tokens per Sec: 19949, Lr: 0.000300\n", "2020-01-13 11:25:24,626 Epoch 22 Step: 111400 Batch Loss: 1.118905 Tokens per Sec: 19837, Lr: 0.000300\n", "2020-01-13 11:25:36,253 Epoch 22 Step: 111500 Batch Loss: 1.374749 Tokens per Sec: 19977, Lr: 0.000300\n", "2020-01-13 11:25:47,903 Epoch 22 Step: 111600 Batch Loss: 1.403786 Tokens per Sec: 20133, Lr: 0.000300\n", "2020-01-13 11:25:59,535 Epoch 22 Step: 111700 Batch Loss: 1.381780 Tokens per Sec: 19930, Lr: 0.000300\n", "2020-01-13 11:26:11,085 Epoch 22 Step: 111800 Batch Loss: 1.329544 Tokens per Sec: 19710, Lr: 0.000300\n", "2020-01-13 11:26:22,561 Epoch 22 Step: 111900 Batch Loss: 1.357744 Tokens per Sec: 19596, Lr: 0.000300\n", "2020-01-13 11:26:34,085 Epoch 22 Step: 112000 Batch Loss: 1.346883 Tokens per Sec: 19967, Lr: 0.000300\n", "2020-01-13 11:27:04,265 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:27:04,265 Saving new checkpoint.\n", "2020-01-13 11:27:05,439 Example #0\n", "2020-01-13 11:27:05,440 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:27:05,440 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:27:05,440 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị mkpa n’imeri nchegbu .\n", "2020-01-13 11:27:05,440 Example #1\n", "2020-01-13 11:27:05,441 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:27:05,441 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:27:05,441 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye bụrụ ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ihe ịga nke ọma ná ndokwa ahụ ?\n", "2020-01-13 11:27:05,441 Example #2\n", "2020-01-13 11:27:05,442 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:27:05,442 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:27:05,442 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enyere ha aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 11:27:05,442 Example #3\n", "2020-01-13 11:27:05,443 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:27:05,443 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:27:05,443 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:27:05,443 Validation result (greedy) at epoch 22, step 112000: bleu: 31.62, loss: 36432.1367, ppl: 3.4963, duration: 31.3579s\n", "2020-01-13 11:27:17,144 Epoch 22 Step: 112100 Batch Loss: 1.293425 Tokens per Sec: 19654, Lr: 0.000300\n", "2020-01-13 11:27:28,617 Epoch 22 Step: 112200 Batch Loss: 1.314780 Tokens per Sec: 19602, Lr: 0.000300\n", "2020-01-13 11:27:37,497 Epoch 22: total training loss 7159.12\n", "2020-01-13 11:27:37,497 EPOCH 23\n", "2020-01-13 11:27:40,870 Epoch 23 Step: 112300 Batch Loss: 1.327793 Tokens per Sec: 16692, Lr: 0.000300\n", "2020-01-13 11:27:52,428 Epoch 23 Step: 112400 Batch Loss: 1.340257 Tokens per Sec: 19571, Lr: 0.000300\n", "2020-01-13 11:28:03,896 Epoch 23 Step: 112500 Batch Loss: 1.398959 Tokens per Sec: 19430, Lr: 0.000300\n", "2020-01-13 11:28:15,635 Epoch 23 Step: 112600 Batch Loss: 1.309027 Tokens per Sec: 19834, Lr: 0.000300\n", "2020-01-13 11:28:27,215 Epoch 23 Step: 112700 Batch Loss: 1.429103 Tokens per Sec: 19831, Lr: 0.000300\n", "2020-01-13 11:28:38,721 Epoch 23 Step: 112800 Batch Loss: 1.438486 Tokens per Sec: 19776, Lr: 0.000300\n", "2020-01-13 11:28:50,324 Epoch 23 Step: 112900 Batch Loss: 1.532924 Tokens per Sec: 19454, Lr: 0.000300\n", "2020-01-13 11:29:01,956 Epoch 23 Step: 113000 Batch Loss: 1.269101 Tokens per Sec: 19990, Lr: 0.000300\n", "2020-01-13 11:29:32,382 Example #0\n", "2020-01-13 11:29:32,382 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:29:32,383 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:29:32,383 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:29:32,383 Example #1\n", "2020-01-13 11:29:32,383 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:29:32,383 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:29:32,383 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye bụrụ ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ihe ịga nke ọma ahụ ?\n", "2020-01-13 11:29:32,384 Example #2\n", "2020-01-13 11:29:32,384 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:29:32,384 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:29:32,384 \tHypothesis: Ha aghọọla ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:29:32,384 Example #3\n", "2020-01-13 11:29:32,385 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:29:32,385 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:29:32,385 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:29:32,385 Validation result (greedy) at epoch 23, step 113000: bleu: 31.20, loss: 36667.8672, ppl: 3.5247, duration: 30.4293s\n", "2020-01-13 11:29:44,003 Epoch 23 Step: 113100 Batch Loss: 1.339065 Tokens per Sec: 19619, Lr: 0.000300\n", "2020-01-13 11:29:55,693 Epoch 23 Step: 113200 Batch Loss: 1.323088 Tokens per Sec: 19762, Lr: 0.000300\n", "2020-01-13 11:30:07,501 Epoch 23 Step: 113300 Batch Loss: 1.538257 Tokens per Sec: 19741, Lr: 0.000300\n", "2020-01-13 11:30:19,052 Epoch 23 Step: 113400 Batch Loss: 1.483964 Tokens per Sec: 20108, Lr: 0.000300\n", "2020-01-13 11:30:30,753 Epoch 23 Step: 113500 Batch Loss: 1.189327 Tokens per Sec: 19759, Lr: 0.000300\n", "2020-01-13 11:30:42,377 Epoch 23 Step: 113600 Batch Loss: 1.361309 Tokens per Sec: 19398, Lr: 0.000300\n", "2020-01-13 11:30:53,834 Epoch 23 Step: 113700 Batch Loss: 1.418874 Tokens per Sec: 19665, Lr: 0.000300\n", "2020-01-13 11:31:05,581 Epoch 23 Step: 113800 Batch Loss: 1.362274 Tokens per Sec: 19845, Lr: 0.000300\n", "2020-01-13 11:31:17,197 Epoch 23 Step: 113900 Batch Loss: 1.304226 Tokens per Sec: 19675, Lr: 0.000300\n", "2020-01-13 11:31:28,818 Epoch 23 Step: 114000 Batch Loss: 1.461660 Tokens per Sec: 20208, Lr: 0.000300\n", "2020-01-13 11:31:59,198 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:31:59,198 Saving new checkpoint.\n", "2020-01-13 11:32:00,428 Example #0\n", "2020-01-13 11:32:00,428 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:32:00,429 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:32:00,429 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:32:00,429 Example #1\n", "2020-01-13 11:32:00,429 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:32:00,429 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:32:00,429 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị ?\n", "2020-01-13 11:32:00,430 Example #2\n", "2020-01-13 11:32:00,430 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:32:00,430 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:32:00,430 \tHypothesis: Ha aghọọla ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 11:32:00,430 Example #3\n", "2020-01-13 11:32:00,431 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:32:00,431 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:32:00,431 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:32:00,431 Validation result (greedy) at epoch 23, step 114000: bleu: 31.47, loss: 36390.7578, ppl: 3.4913, duration: 31.6129s\n", "2020-01-13 11:32:12,455 Epoch 23 Step: 114100 Batch Loss: 1.366902 Tokens per Sec: 19193, Lr: 0.000300\n", "2020-01-13 11:32:24,021 Epoch 23 Step: 114200 Batch Loss: 1.464118 Tokens per Sec: 19814, Lr: 0.000300\n", "2020-01-13 11:32:35,737 Epoch 23 Step: 114300 Batch Loss: 1.236530 Tokens per Sec: 19718, Lr: 0.000300\n", "2020-01-13 11:32:47,110 Epoch 23 Step: 114400 Batch Loss: 1.043941 Tokens per Sec: 19498, Lr: 0.000300\n", "2020-01-13 11:32:58,791 Epoch 23 Step: 114500 Batch Loss: 1.303445 Tokens per Sec: 19851, Lr: 0.000300\n", "2020-01-13 11:33:10,499 Epoch 23 Step: 114600 Batch Loss: 1.158624 Tokens per Sec: 20136, Lr: 0.000300\n", "2020-01-13 11:33:21,978 Epoch 23 Step: 114700 Batch Loss: 1.452481 Tokens per Sec: 19392, Lr: 0.000300\n", "2020-01-13 11:33:33,613 Epoch 23 Step: 114800 Batch Loss: 1.186267 Tokens per Sec: 19716, Lr: 0.000300\n", "2020-01-13 11:33:45,217 Epoch 23 Step: 114900 Batch Loss: 1.458643 Tokens per Sec: 19680, Lr: 0.000300\n", "2020-01-13 11:33:56,692 Epoch 23 Step: 115000 Batch Loss: 1.272822 Tokens per Sec: 19535, Lr: 0.000300\n", "2020-01-13 11:34:27,109 Example #0\n", "2020-01-13 11:34:27,110 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:34:27,110 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:34:27,110 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ịkwụsị nchegbu .\n", "2020-01-13 11:34:27,110 Example #1\n", "2020-01-13 11:34:27,110 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:34:27,111 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:34:27,111 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 11:34:27,111 Example #2\n", "2020-01-13 11:34:27,111 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:34:27,111 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:34:27,111 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:34:27,112 Example #3\n", "2020-01-13 11:34:27,112 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:34:27,112 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:34:27,112 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:34:27,112 Validation result (greedy) at epoch 23, step 115000: bleu: 31.86, loss: 36508.3789, ppl: 3.5055, duration: 30.4195s\n", "2020-01-13 11:34:38,571 Epoch 23 Step: 115100 Batch Loss: 1.401277 Tokens per Sec: 19684, Lr: 0.000300\n", "2020-01-13 11:34:50,261 Epoch 23 Step: 115200 Batch Loss: 1.406464 Tokens per Sec: 19737, Lr: 0.000300\n", "2020-01-13 11:35:01,806 Epoch 23 Step: 115300 Batch Loss: 1.344046 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 11:35:13,360 Epoch 23 Step: 115400 Batch Loss: 1.578400 Tokens per Sec: 19627, Lr: 0.000300\n", "2020-01-13 11:35:25,094 Epoch 23 Step: 115500 Batch Loss: 1.219207 Tokens per Sec: 19784, Lr: 0.000300\n", "2020-01-13 11:35:36,631 Epoch 23 Step: 115600 Batch Loss: 1.558230 Tokens per Sec: 20399, Lr: 0.000300\n", "2020-01-13 11:35:48,329 Epoch 23 Step: 115700 Batch Loss: 1.394279 Tokens per Sec: 19071, Lr: 0.000300\n", "2020-01-13 11:35:59,953 Epoch 23 Step: 115800 Batch Loss: 1.326365 Tokens per Sec: 19868, Lr: 0.000300\n", "2020-01-13 11:36:11,603 Epoch 23 Step: 115900 Batch Loss: 1.298729 Tokens per Sec: 19797, Lr: 0.000300\n", "2020-01-13 11:36:23,318 Epoch 23 Step: 116000 Batch Loss: 1.471784 Tokens per Sec: 19719, Lr: 0.000300\n", "2020-01-13 11:36:53,765 Example #0\n", "2020-01-13 11:36:53,766 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:36:53,766 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:36:53,766 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:36:53,767 Example #1\n", "2020-01-13 11:36:53,767 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:36:53,767 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:36:53,767 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara imebi ?\n", "2020-01-13 11:36:53,767 Example #2\n", "2020-01-13 11:36:53,768 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:36:53,768 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:36:53,768 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 11:36:53,768 Example #3\n", "2020-01-13 11:36:53,769 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:36:53,769 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:36:53,769 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 11:36:53,769 Validation result (greedy) at epoch 23, step 116000: bleu: 31.21, loss: 36496.3672, ppl: 3.5040, duration: 30.4504s\n", "2020-01-13 11:37:05,572 Epoch 23 Step: 116100 Batch Loss: 1.496108 Tokens per Sec: 19053, Lr: 0.000300\n", "2020-01-13 11:37:17,477 Epoch 23 Step: 116200 Batch Loss: 1.456041 Tokens per Sec: 19383, Lr: 0.000300\n", "2020-01-13 11:37:29,243 Epoch 23 Step: 116300 Batch Loss: 1.612689 Tokens per Sec: 19417, Lr: 0.000300\n", "2020-01-13 11:37:41,019 Epoch 23 Step: 116400 Batch Loss: 1.365979 Tokens per Sec: 19507, Lr: 0.000300\n", "2020-01-13 11:37:52,702 Epoch 23 Step: 116500 Batch Loss: 1.238146 Tokens per Sec: 20104, Lr: 0.000300\n", "2020-01-13 11:38:04,389 Epoch 23 Step: 116600 Batch Loss: 1.637508 Tokens per Sec: 19955, Lr: 0.000300\n", "2020-01-13 11:38:16,175 Epoch 23 Step: 116700 Batch Loss: 1.264354 Tokens per Sec: 19503, Lr: 0.000300\n", "2020-01-13 11:38:27,862 Epoch 23 Step: 116800 Batch Loss: 1.438076 Tokens per Sec: 19993, Lr: 0.000300\n", "2020-01-13 11:38:39,621 Epoch 23 Step: 116900 Batch Loss: 1.352034 Tokens per Sec: 20075, Lr: 0.000300\n", "2020-01-13 11:38:51,304 Epoch 23 Step: 117000 Batch Loss: 1.431138 Tokens per Sec: 19287, Lr: 0.000300\n", "2020-01-13 11:39:21,599 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:39:21,599 Saving new checkpoint.\n", "2020-01-13 11:39:22,756 Example #0\n", "2020-01-13 11:39:22,757 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:39:22,757 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:39:22,757 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri mmetụta nke nchegbu .\n", "2020-01-13 11:39:22,757 Example #1\n", "2020-01-13 11:39:22,758 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:39:22,758 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:39:22,758 \tHypothesis: Gịnị ka ọ dị mkpa ime ka alụmdi na nwunye bụrụ ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:39:22,758 Example #2\n", "2020-01-13 11:39:22,758 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:39:22,758 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:39:22,758 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enyere ndị mmadụ aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 11:39:22,758 Example #3\n", "2020-01-13 11:39:22,759 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:39:22,759 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:39:22,759 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 11:39:22,759 Validation result (greedy) at epoch 23, step 117000: bleu: 31.78, loss: 36319.2227, ppl: 3.4828, duration: 31.4548s\n", "2020-01-13 11:39:34,591 Epoch 23 Step: 117100 Batch Loss: 1.412733 Tokens per Sec: 19589, Lr: 0.000300\n", "2020-01-13 11:39:46,350 Epoch 23 Step: 117200 Batch Loss: 1.503247 Tokens per Sec: 19456, Lr: 0.000300\n", "2020-01-13 11:39:57,838 Epoch 23 Step: 117300 Batch Loss: 1.317116 Tokens per Sec: 19233, Lr: 0.000300\n", "2020-01-13 11:40:06,644 Epoch 23: total training loss 7107.22\n", "2020-01-13 11:40:06,644 EPOCH 24\n", "2020-01-13 11:40:10,219 Epoch 24 Step: 117400 Batch Loss: 1.589048 Tokens per Sec: 15857, Lr: 0.000300\n", "2020-01-13 11:40:21,925 Epoch 24 Step: 117500 Batch Loss: 1.628106 Tokens per Sec: 20124, Lr: 0.000300\n", "2020-01-13 11:40:33,567 Epoch 24 Step: 117600 Batch Loss: 1.601985 Tokens per Sec: 19435, Lr: 0.000300\n", "2020-01-13 11:40:45,292 Epoch 24 Step: 117700 Batch Loss: 1.339547 Tokens per Sec: 19994, Lr: 0.000300\n", "2020-01-13 11:40:56,914 Epoch 24 Step: 117800 Batch Loss: 1.292286 Tokens per Sec: 19549, Lr: 0.000300\n", "2020-01-13 11:41:08,774 Epoch 24 Step: 117900 Batch Loss: 1.256783 Tokens per Sec: 19988, Lr: 0.000300\n", "2020-01-13 11:41:20,438 Epoch 24 Step: 118000 Batch Loss: 1.304759 Tokens per Sec: 19471, Lr: 0.000300\n", "2020-01-13 11:41:50,740 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:41:50,741 Saving new checkpoint.\n", "2020-01-13 11:41:51,848 Example #0\n", "2020-01-13 11:41:51,848 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:41:51,848 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:41:51,849 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:41:51,849 Example #1\n", "2020-01-13 11:41:51,849 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:41:51,849 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:41:51,849 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ belata ?\n", "2020-01-13 11:41:51,849 Example #2\n", "2020-01-13 11:41:51,850 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:41:51,850 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:41:51,850 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa àmà nye mba nile .\n", "2020-01-13 11:41:51,850 Example #3\n", "2020-01-13 11:41:51,850 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:41:51,850 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:41:51,850 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke iji nweta mgbaghara Chineke .\n", "2020-01-13 11:41:51,851 Validation result (greedy) at epoch 24, step 118000: bleu: 31.70, loss: 36303.4141, ppl: 3.4809, duration: 31.4117s\n", "2020-01-13 11:42:03,728 Epoch 24 Step: 118100 Batch Loss: 1.401519 Tokens per Sec: 19919, Lr: 0.000300\n", "2020-01-13 11:42:15,362 Epoch 24 Step: 118200 Batch Loss: 1.395374 Tokens per Sec: 19380, Lr: 0.000300\n", "2020-01-13 11:42:26,755 Epoch 24 Step: 118300 Batch Loss: 1.395636 Tokens per Sec: 19459, Lr: 0.000300\n", "2020-01-13 11:42:38,522 Epoch 24 Step: 118400 Batch Loss: 1.545624 Tokens per Sec: 19605, Lr: 0.000300\n", "2020-01-13 11:42:50,074 Epoch 24 Step: 118500 Batch Loss: 1.399362 Tokens per Sec: 19462, Lr: 0.000300\n", "2020-01-13 11:43:01,652 Epoch 24 Step: 118600 Batch Loss: 1.517129 Tokens per Sec: 19620, Lr: 0.000300\n", "2020-01-13 11:43:13,316 Epoch 24 Step: 118700 Batch Loss: 1.455075 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-13 11:43:24,984 Epoch 24 Step: 118800 Batch Loss: 1.537390 Tokens per Sec: 19832, Lr: 0.000300\n", "2020-01-13 11:43:36,796 Epoch 24 Step: 118900 Batch Loss: 1.530953 Tokens per Sec: 19709, Lr: 0.000300\n", "2020-01-13 11:43:48,469 Epoch 24 Step: 119000 Batch Loss: 1.531641 Tokens per Sec: 19769, Lr: 0.000300\n", "2020-01-13 11:44:18,870 Example #0\n", "2020-01-13 11:44:18,871 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:44:18,871 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:44:18,871 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’ileghara nchegbu anya .\n", "2020-01-13 11:44:18,871 Example #1\n", "2020-01-13 11:44:18,872 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:44:18,872 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:44:18,872 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:44:18,872 Example #2\n", "2020-01-13 11:44:18,873 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:44:18,873 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:44:18,873 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:44:18,873 Example #3\n", "2020-01-13 11:44:18,873 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:44:18,873 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:44:18,874 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 11:44:18,874 Validation result (greedy) at epoch 24, step 119000: bleu: 31.84, loss: 36508.1367, ppl: 3.5054, duration: 30.4040s\n", "2020-01-13 11:44:30,619 Epoch 24 Step: 119100 Batch Loss: 1.410116 Tokens per Sec: 19794, Lr: 0.000300\n", "2020-01-13 11:44:42,298 Epoch 24 Step: 119200 Batch Loss: 1.364428 Tokens per Sec: 19340, Lr: 0.000300\n", "2020-01-13 11:44:53,984 Epoch 24 Step: 119300 Batch Loss: 1.256656 Tokens per Sec: 19149, Lr: 0.000300\n", "2020-01-13 11:45:05,653 Epoch 24 Step: 119400 Batch Loss: 1.358683 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-13 11:45:17,335 Epoch 24 Step: 119500 Batch Loss: 1.534714 Tokens per Sec: 19662, Lr: 0.000300\n", "2020-01-13 11:45:29,153 Epoch 24 Step: 119600 Batch Loss: 1.237651 Tokens per Sec: 19492, Lr: 0.000300\n", "2020-01-13 11:45:40,735 Epoch 24 Step: 119700 Batch Loss: 1.449618 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-13 11:45:52,484 Epoch 24 Step: 119800 Batch Loss: 1.446198 Tokens per Sec: 19942, Lr: 0.000300\n", "2020-01-13 11:46:04,217 Epoch 24 Step: 119900 Batch Loss: 1.283477 Tokens per Sec: 19355, Lr: 0.000300\n", "2020-01-13 11:46:15,755 Epoch 24 Step: 120000 Batch Loss: 1.390353 Tokens per Sec: 19489, Lr: 0.000300\n", "2020-01-13 11:46:46,211 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:46:46,211 Saving new checkpoint.\n", "2020-01-13 11:46:47,626 Example #0\n", "2020-01-13 11:46:47,626 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:46:47,626 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:46:47,627 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:46:47,627 Example #1\n", "2020-01-13 11:46:47,627 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:46:47,627 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:46:47,627 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:46:47,628 Example #2\n", "2020-01-13 11:46:47,628 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:46:47,628 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:46:47,629 \tHypothesis: Ha aghọọla ndị enyi nke ụmụnna Kraịst , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa àmà nye mba nile .\n", "2020-01-13 11:46:47,629 Example #3\n", "2020-01-13 11:46:47,629 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:46:47,629 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:46:47,629 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:46:47,630 Validation result (greedy) at epoch 24, step 120000: bleu: 31.48, loss: 36251.6016, ppl: 3.4747, duration: 31.8740s\n", "2020-01-13 11:46:59,379 Epoch 24 Step: 120100 Batch Loss: 1.232890 Tokens per Sec: 19668, Lr: 0.000300\n", "2020-01-13 11:47:10,981 Epoch 24 Step: 120200 Batch Loss: 1.464792 Tokens per Sec: 19976, Lr: 0.000300\n", "2020-01-13 11:47:22,696 Epoch 24 Step: 120300 Batch Loss: 1.256210 Tokens per Sec: 19559, Lr: 0.000300\n", "2020-01-13 11:47:34,275 Epoch 24 Step: 120400 Batch Loss: 1.481860 Tokens per Sec: 19509, Lr: 0.000300\n", "2020-01-13 11:47:45,936 Epoch 24 Step: 120500 Batch Loss: 1.515104 Tokens per Sec: 19503, Lr: 0.000300\n", "2020-01-13 11:47:57,503 Epoch 24 Step: 120600 Batch Loss: 1.498316 Tokens per Sec: 19384, Lr: 0.000300\n", "2020-01-13 11:48:09,135 Epoch 24 Step: 120700 Batch Loss: 1.362162 Tokens per Sec: 19619, Lr: 0.000300\n", "2020-01-13 11:48:20,866 Epoch 24 Step: 120800 Batch Loss: 1.477822 Tokens per Sec: 19495, Lr: 0.000300\n", "2020-01-13 11:48:32,542 Epoch 24 Step: 120900 Batch Loss: 1.363859 Tokens per Sec: 19404, Lr: 0.000300\n", "2020-01-13 11:48:44,155 Epoch 24 Step: 121000 Batch Loss: 1.297128 Tokens per Sec: 19822, Lr: 0.000300\n", "2020-01-13 11:49:14,578 Example #0\n", "2020-01-13 11:49:14,578 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:49:14,578 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:49:14,579 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:49:14,579 Example #1\n", "2020-01-13 11:49:14,579 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:49:14,579 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:49:14,580 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mebie ndokwa ahụ ?\n", "2020-01-13 11:49:14,580 Example #2\n", "2020-01-13 11:49:14,580 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:49:14,580 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:49:14,580 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 11:49:14,581 Example #3\n", "2020-01-13 11:49:14,581 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:49:14,581 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:49:14,581 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:49:14,581 Validation result (greedy) at epoch 24, step 121000: bleu: 31.80, loss: 36308.1680, ppl: 3.4814, duration: 30.4263s\n", "2020-01-13 11:49:26,207 Epoch 24 Step: 121100 Batch Loss: 1.500369 Tokens per Sec: 19541, Lr: 0.000300\n", "2020-01-13 11:49:37,798 Epoch 24 Step: 121200 Batch Loss: 1.303082 Tokens per Sec: 19438, Lr: 0.000300\n", "2020-01-13 11:49:49,488 Epoch 24 Step: 121300 Batch Loss: 1.303256 Tokens per Sec: 19621, Lr: 0.000300\n", "2020-01-13 11:50:01,185 Epoch 24 Step: 121400 Batch Loss: 1.520947 Tokens per Sec: 19564, Lr: 0.000300\n", "2020-01-13 11:50:12,817 Epoch 24 Step: 121500 Batch Loss: 1.326652 Tokens per Sec: 18990, Lr: 0.000300\n", "2020-01-13 11:50:24,551 Epoch 24 Step: 121600 Batch Loss: 1.217717 Tokens per Sec: 20054, Lr: 0.000300\n", "2020-01-13 11:50:36,261 Epoch 24 Step: 121700 Batch Loss: 1.524670 Tokens per Sec: 19793, Lr: 0.000300\n", "2020-01-13 11:50:47,983 Epoch 24 Step: 121800 Batch Loss: 1.358674 Tokens per Sec: 19336, Lr: 0.000300\n", "2020-01-13 11:50:59,568 Epoch 24 Step: 121900 Batch Loss: 1.235791 Tokens per Sec: 19934, Lr: 0.000300\n", "2020-01-13 11:51:11,378 Epoch 24 Step: 122000 Batch Loss: 1.501952 Tokens per Sec: 19261, Lr: 0.000300\n", "2020-01-13 11:51:41,809 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:51:41,809 Saving new checkpoint.\n", "2020-01-13 11:51:42,988 Example #0\n", "2020-01-13 11:51:42,989 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:51:42,989 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:51:42,989 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:51:42,989 Example #1\n", "2020-01-13 11:51:42,989 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:51:42,989 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:51:42,989 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 11:51:42,990 Example #2\n", "2020-01-13 11:51:42,990 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:51:42,990 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:51:42,991 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:51:42,991 Example #3\n", "2020-01-13 11:51:42,992 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:51:42,992 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:51:42,992 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:51:42,992 Validation result (greedy) at epoch 24, step 122000: bleu: 31.83, loss: 36215.1016, ppl: 3.4703, duration: 31.6135s\n", "2020-01-13 11:51:54,599 Epoch 24 Step: 122100 Batch Loss: 1.424911 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-13 11:52:06,421 Epoch 24 Step: 122200 Batch Loss: 1.456620 Tokens per Sec: 19583, Lr: 0.000300\n", "2020-01-13 11:52:18,009 Epoch 24 Step: 122300 Batch Loss: 1.443486 Tokens per Sec: 19608, Lr: 0.000300\n", "2020-01-13 11:52:29,672 Epoch 24 Step: 122400 Batch Loss: 1.491012 Tokens per Sec: 19753, Lr: 0.000300\n", "2020-01-13 11:52:38,946 Epoch 24: total training loss 7071.01\n", "2020-01-13 11:52:38,946 EPOCH 25\n", "2020-01-13 11:52:41,956 Epoch 25 Step: 122500 Batch Loss: 1.194868 Tokens per Sec: 15976, Lr: 0.000300\n", "2020-01-13 11:52:53,648 Epoch 25 Step: 122600 Batch Loss: 1.360928 Tokens per Sec: 19928, Lr: 0.000300\n", "2020-01-13 11:53:05,441 Epoch 25 Step: 122700 Batch Loss: 1.381138 Tokens per Sec: 19430, Lr: 0.000300\n", "2020-01-13 11:53:17,235 Epoch 25 Step: 122800 Batch Loss: 1.539613 Tokens per Sec: 19398, Lr: 0.000300\n", "2020-01-13 11:53:28,833 Epoch 25 Step: 122900 Batch Loss: 1.518635 Tokens per Sec: 19814, Lr: 0.000300\n", "2020-01-13 11:53:40,605 Epoch 25 Step: 123000 Batch Loss: 1.189845 Tokens per Sec: 19294, Lr: 0.000300\n", "2020-01-13 11:54:11,088 Example #0\n", "2020-01-13 11:54:11,089 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:54:11,089 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:54:11,089 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:54:11,089 Example #1\n", "2020-01-13 11:54:11,090 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:54:11,090 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:54:11,090 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 11:54:11,090 Example #2\n", "2020-01-13 11:54:11,091 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:54:11,091 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:54:11,091 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:54:11,091 Example #3\n", "2020-01-13 11:54:11,092 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:54:11,092 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:54:11,092 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 11:54:11,092 Validation result (greedy) at epoch 25, step 123000: bleu: 32.13, loss: 36300.7422, ppl: 3.4806, duration: 30.4869s\n", "2020-01-13 11:54:22,786 Epoch 25 Step: 123100 Batch Loss: 1.529952 Tokens per Sec: 19616, Lr: 0.000300\n", "2020-01-13 11:54:34,531 Epoch 25 Step: 123200 Batch Loss: 1.369432 Tokens per Sec: 19602, Lr: 0.000300\n", "2020-01-13 11:54:46,276 Epoch 25 Step: 123300 Batch Loss: 1.248675 Tokens per Sec: 19416, Lr: 0.000300\n", "2020-01-13 11:54:57,923 Epoch 25 Step: 123400 Batch Loss: 1.334749 Tokens per Sec: 19284, Lr: 0.000300\n", "2020-01-13 11:55:09,675 Epoch 25 Step: 123500 Batch Loss: 1.247911 Tokens per Sec: 19281, Lr: 0.000300\n", "2020-01-13 11:55:21,390 Epoch 25 Step: 123600 Batch Loss: 1.348546 Tokens per Sec: 19840, Lr: 0.000300\n", "2020-01-13 11:55:33,235 Epoch 25 Step: 123700 Batch Loss: 1.333931 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 11:55:45,048 Epoch 25 Step: 123800 Batch Loss: 1.190676 Tokens per Sec: 19789, Lr: 0.000300\n", "2020-01-13 11:55:56,788 Epoch 25 Step: 123900 Batch Loss: 1.455952 Tokens per Sec: 19714, Lr: 0.000300\n", "2020-01-13 11:56:08,618 Epoch 25 Step: 124000 Batch Loss: 1.406281 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-13 11:56:39,080 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:56:39,080 Saving new checkpoint.\n", "2020-01-13 11:56:40,461 Example #0\n", "2020-01-13 11:56:40,462 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:56:40,462 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:56:40,462 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 11:56:40,462 Example #1\n", "2020-01-13 11:56:40,462 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:56:40,463 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:56:40,463 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 11:56:40,463 Example #2\n", "2020-01-13 11:56:40,463 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:56:40,463 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:56:40,463 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enyere ha aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:56:40,463 Example #3\n", "2020-01-13 11:56:40,464 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:56:40,464 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:56:40,464 \tHypothesis: Nke ahụ bụ ihe nke abụọ mere anyị ga - eji gbaghara Chineke .\n", "2020-01-13 11:56:40,464 Validation result (greedy) at epoch 25, step 124000: bleu: 31.86, loss: 36175.8320, ppl: 3.4656, duration: 31.8452s\n", "2020-01-13 11:56:52,193 Epoch 25 Step: 124100 Batch Loss: 1.237362 Tokens per Sec: 19353, Lr: 0.000300\n", "2020-01-13 11:57:03,893 Epoch 25 Step: 124200 Batch Loss: 1.505561 Tokens per Sec: 19673, Lr: 0.000300\n", "2020-01-13 11:57:15,576 Epoch 25 Step: 124300 Batch Loss: 1.442993 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-13 11:57:27,313 Epoch 25 Step: 124400 Batch Loss: 1.520522 Tokens per Sec: 19137, Lr: 0.000300\n", "2020-01-13 11:57:38,958 Epoch 25 Step: 124500 Batch Loss: 1.273744 Tokens per Sec: 19516, Lr: 0.000300\n", "2020-01-13 11:57:50,672 Epoch 25 Step: 124600 Batch Loss: 1.458600 Tokens per Sec: 19305, Lr: 0.000300\n", "2020-01-13 11:58:02,508 Epoch 25 Step: 124700 Batch Loss: 1.193100 Tokens per Sec: 19819, Lr: 0.000300\n", "2020-01-13 11:58:14,180 Epoch 25 Step: 124800 Batch Loss: 1.436715 Tokens per Sec: 19924, Lr: 0.000300\n", "2020-01-13 11:58:25,836 Epoch 25 Step: 124900 Batch Loss: 1.328820 Tokens per Sec: 19429, Lr: 0.000300\n", "2020-01-13 11:58:37,498 Epoch 25 Step: 125000 Batch Loss: 1.358875 Tokens per Sec: 19314, Lr: 0.000300\n", "2020-01-13 11:59:07,971 Hooray! New best validation result [ppl]!\n", "2020-01-13 11:59:07,971 Saving new checkpoint.\n", "2020-01-13 11:59:09,501 Example #0\n", "2020-01-13 11:59:09,502 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 11:59:09,502 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 11:59:09,503 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 11:59:09,503 Example #1\n", "2020-01-13 11:59:09,503 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 11:59:09,503 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 11:59:09,503 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan na - eme iji belata ndokwa ahụ ?\n", "2020-01-13 11:59:09,504 Example #2\n", "2020-01-13 11:59:09,504 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 11:59:09,504 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 11:59:09,504 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 11:59:09,505 Example #3\n", "2020-01-13 11:59:09,505 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 11:59:09,505 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 11:59:09,505 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 11:59:09,505 Validation result (greedy) at epoch 25, step 125000: bleu: 32.28, loss: 35992.8086, ppl: 3.4439, duration: 32.0068s\n", "2020-01-13 11:59:21,260 Epoch 25 Step: 125100 Batch Loss: 1.472388 Tokens per Sec: 19486, Lr: 0.000300\n", "2020-01-13 11:59:32,998 Epoch 25 Step: 125200 Batch Loss: 1.473169 Tokens per Sec: 19426, Lr: 0.000300\n", "2020-01-13 11:59:44,715 Epoch 25 Step: 125300 Batch Loss: 1.340676 Tokens per Sec: 20013, Lr: 0.000300\n", "2020-01-13 11:59:56,520 Epoch 25 Step: 125400 Batch Loss: 1.325613 Tokens per Sec: 19548, Lr: 0.000300\n", "2020-01-13 12:00:08,130 Epoch 25 Step: 125500 Batch Loss: 1.355253 Tokens per Sec: 19289, Lr: 0.000300\n", "2020-01-13 12:00:19,897 Epoch 25 Step: 125600 Batch Loss: 1.208830 Tokens per Sec: 19404, Lr: 0.000300\n", "2020-01-13 12:00:31,665 Epoch 25 Step: 125700 Batch Loss: 1.344555 Tokens per Sec: 19726, Lr: 0.000300\n", "2020-01-13 12:00:43,349 Epoch 25 Step: 125800 Batch Loss: 1.323563 Tokens per Sec: 19946, Lr: 0.000300\n", "2020-01-13 12:00:54,961 Epoch 25 Step: 125900 Batch Loss: 1.147937 Tokens per Sec: 19187, Lr: 0.000300\n", "2020-01-13 12:01:06,793 Epoch 25 Step: 126000 Batch Loss: 1.402936 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 12:01:37,157 Example #0\n", "2020-01-13 12:01:37,158 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:01:37,158 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:01:37,158 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:01:37,158 Example #1\n", "2020-01-13 12:01:37,159 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:01:37,159 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:01:37,159 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:01:37,159 Example #2\n", "2020-01-13 12:01:37,160 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:01:37,160 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:01:37,160 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 12:01:37,160 Example #3\n", "2020-01-13 12:01:37,161 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:01:37,161 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:01:37,161 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:01:37,161 Validation result (greedy) at epoch 25, step 126000: bleu: 31.96, loss: 36044.9688, ppl: 3.4501, duration: 30.3675s\n", "2020-01-13 12:01:48,873 Epoch 25 Step: 126100 Batch Loss: 1.387048 Tokens per Sec: 19427, Lr: 0.000300\n", "2020-01-13 12:02:00,470 Epoch 25 Step: 126200 Batch Loss: 1.404337 Tokens per Sec: 19775, Lr: 0.000300\n", "2020-01-13 12:02:12,192 Epoch 25 Step: 126300 Batch Loss: 1.313122 Tokens per Sec: 19376, Lr: 0.000300\n", "2020-01-13 12:02:23,937 Epoch 25 Step: 126400 Batch Loss: 1.349162 Tokens per Sec: 19806, Lr: 0.000300\n", "2020-01-13 12:02:35,610 Epoch 25 Step: 126500 Batch Loss: 1.271801 Tokens per Sec: 19895, Lr: 0.000300\n", "2020-01-13 12:02:47,316 Epoch 25 Step: 126600 Batch Loss: 1.402778 Tokens per Sec: 19093, Lr: 0.000300\n", "2020-01-13 12:02:59,020 Epoch 25 Step: 126700 Batch Loss: 1.464289 Tokens per Sec: 19621, Lr: 0.000300\n", "2020-01-13 12:03:10,731 Epoch 25 Step: 126800 Batch Loss: 1.523865 Tokens per Sec: 19302, Lr: 0.000300\n", "2020-01-13 12:03:22,473 Epoch 25 Step: 126900 Batch Loss: 1.616692 Tokens per Sec: 19774, Lr: 0.000300\n", "2020-01-13 12:03:34,163 Epoch 25 Step: 127000 Batch Loss: 1.440711 Tokens per Sec: 19403, Lr: 0.000300\n", "2020-01-13 12:04:04,628 Example #0\n", "2020-01-13 12:04:04,629 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:04:04,629 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:04:04,629 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa iji merie nchegbu .\n", "2020-01-13 12:04:04,630 Example #1\n", "2020-01-13 12:04:04,630 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:04:04,630 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:04:04,630 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye gaa nke ọma n’agbanyeghị mgbalị Setan mere iji mebie ndokwa ahụ ?\n", "2020-01-13 12:04:04,630 Example #2\n", "2020-01-13 12:04:04,631 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:04:04,631 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:04:04,631 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’inyere mba nile aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:04:04,631 Example #3\n", "2020-01-13 12:04:04,631 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:04:04,632 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:04:04,632 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:04:04,632 Validation result (greedy) at epoch 25, step 127000: bleu: 31.85, loss: 36066.2500, ppl: 3.4526, duration: 30.4685s\n", "2020-01-13 12:04:16,586 Epoch 25 Step: 127100 Batch Loss: 1.399919 Tokens per Sec: 19763, Lr: 0.000300\n", "2020-01-13 12:04:28,164 Epoch 25 Step: 127200 Batch Loss: 1.511395 Tokens per Sec: 19603, Lr: 0.000300\n", "2020-01-13 12:04:39,857 Epoch 25 Step: 127300 Batch Loss: 1.456437 Tokens per Sec: 19002, Lr: 0.000300\n", "2020-01-13 12:04:51,622 Epoch 25 Step: 127400 Batch Loss: 1.333248 Tokens per Sec: 19780, Lr: 0.000300\n", "2020-01-13 12:05:03,204 Epoch 25 Step: 127500 Batch Loss: 1.317252 Tokens per Sec: 19454, Lr: 0.000300\n", "2020-01-13 12:05:13,006 Epoch 25: total training loss 7023.27\n", "2020-01-13 12:05:13,006 EPOCH 26\n", "2020-01-13 12:05:15,688 Epoch 26 Step: 127600 Batch Loss: 1.167910 Tokens per Sec: 14783, Lr: 0.000300\n", "2020-01-13 12:05:27,595 Epoch 26 Step: 127700 Batch Loss: 1.399501 Tokens per Sec: 19687, Lr: 0.000300\n", "2020-01-13 12:05:39,315 Epoch 26 Step: 127800 Batch Loss: 1.356385 Tokens per Sec: 19396, Lr: 0.000300\n", "2020-01-13 12:05:50,979 Epoch 26 Step: 127900 Batch Loss: 1.520025 Tokens per Sec: 19281, Lr: 0.000300\n", "2020-01-13 12:06:02,669 Epoch 26 Step: 128000 Batch Loss: 1.463680 Tokens per Sec: 19354, Lr: 0.000300\n", "2020-01-13 12:06:33,219 Example #0\n", "2020-01-13 12:06:33,220 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:06:33,220 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:06:33,220 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:06:33,220 Example #1\n", "2020-01-13 12:06:33,221 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:06:33,221 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:06:33,221 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mee ka e nwee ihe ịga nke ọma ná mgbalị ndị a na - eme iji mebie ndokwa ahụ ?\n", "2020-01-13 12:06:33,221 Example #2\n", "2020-01-13 12:06:33,222 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:06:33,222 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:06:33,222 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’inye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 12:06:33,222 Example #3\n", "2020-01-13 12:06:33,223 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:06:33,223 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:06:33,223 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:06:33,223 Validation result (greedy) at epoch 26, step 128000: bleu: 32.15, loss: 36190.0781, ppl: 3.4673, duration: 30.5531s\n", "2020-01-13 12:06:44,796 Epoch 26 Step: 128100 Batch Loss: 1.339274 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-13 12:06:56,633 Epoch 26 Step: 128200 Batch Loss: 1.469348 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-13 12:07:08,390 Epoch 26 Step: 128300 Batch Loss: 1.327000 Tokens per Sec: 19667, Lr: 0.000300\n", "2020-01-13 12:07:20,107 Epoch 26 Step: 128400 Batch Loss: 1.446451 Tokens per Sec: 19736, Lr: 0.000300\n", "2020-01-13 12:07:31,952 Epoch 26 Step: 128500 Batch Loss: 1.327817 Tokens per Sec: 19810, Lr: 0.000300\n", "2020-01-13 12:07:43,701 Epoch 26 Step: 128600 Batch Loss: 1.475294 Tokens per Sec: 19552, Lr: 0.000300\n", "2020-01-13 12:07:55,394 Epoch 26 Step: 128700 Batch Loss: 1.403038 Tokens per Sec: 19776, Lr: 0.000300\n", "2020-01-13 12:08:07,138 Epoch 26 Step: 128800 Batch Loss: 1.502604 Tokens per Sec: 19395, Lr: 0.000300\n", "2020-01-13 12:08:18,889 Epoch 26 Step: 128900 Batch Loss: 1.550585 Tokens per Sec: 19787, Lr: 0.000300\n", "2020-01-13 12:08:30,569 Epoch 26 Step: 129000 Batch Loss: 1.258735 Tokens per Sec: 20147, Lr: 0.000300\n", "2020-01-13 12:09:01,246 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:09:01,247 Saving new checkpoint.\n", "2020-01-13 12:09:02,910 Example #0\n", "2020-01-13 12:09:02,911 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:09:02,911 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:09:02,911 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:09:02,911 Example #1\n", "2020-01-13 12:09:02,912 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:09:02,912 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:09:02,912 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan na - eme iji mebie ndokwa ahụ ?\n", "2020-01-13 12:09:02,912 Example #2\n", "2020-01-13 12:09:02,913 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:09:02,913 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:09:02,913 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:09:02,913 Example #3\n", "2020-01-13 12:09:02,914 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:09:02,914 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:09:02,914 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:09:02,914 Validation result (greedy) at epoch 26, step 129000: bleu: 32.15, loss: 35890.2188, ppl: 3.4318, duration: 32.3450s\n", "2020-01-13 12:09:14,766 Epoch 26 Step: 129100 Batch Loss: 1.245288 Tokens per Sec: 19281, Lr: 0.000300\n", "2020-01-13 12:09:26,528 Epoch 26 Step: 129200 Batch Loss: 1.308139 Tokens per Sec: 19127, Lr: 0.000300\n", "2020-01-13 12:09:38,500 Epoch 26 Step: 129300 Batch Loss: 1.365364 Tokens per Sec: 19148, Lr: 0.000300\n", "2020-01-13 12:09:50,201 Epoch 26 Step: 129400 Batch Loss: 1.391026 Tokens per Sec: 19205, Lr: 0.000300\n", "2020-01-13 12:10:01,973 Epoch 26 Step: 129500 Batch Loss: 1.301027 Tokens per Sec: 19895, Lr: 0.000300\n", "2020-01-13 12:10:13,704 Epoch 26 Step: 129600 Batch Loss: 1.363358 Tokens per Sec: 19090, Lr: 0.000300\n", "2020-01-13 12:10:25,379 Epoch 26 Step: 129700 Batch Loss: 1.315353 Tokens per Sec: 19536, Lr: 0.000300\n", "2020-01-13 12:10:37,257 Epoch 26 Step: 129800 Batch Loss: 1.260126 Tokens per Sec: 19437, Lr: 0.000300\n", "2020-01-13 12:10:48,975 Epoch 26 Step: 129900 Batch Loss: 1.272902 Tokens per Sec: 19051, Lr: 0.000300\n", "2020-01-13 12:11:00,792 Epoch 26 Step: 130000 Batch Loss: 1.361316 Tokens per Sec: 19544, Lr: 0.000300\n", "2020-01-13 12:11:31,402 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:11:31,402 Saving new checkpoint.\n", "2020-01-13 12:11:32,955 Example #0\n", "2020-01-13 12:11:32,955 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:11:32,955 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:11:32,955 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:11:32,955 Example #1\n", "2020-01-13 12:11:32,956 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:11:32,956 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:11:32,956 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji mebie ndokwa ahụ ?\n", "2020-01-13 12:11:32,956 Example #2\n", "2020-01-13 12:11:32,956 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:11:32,956 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:11:32,956 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 12:11:32,956 Example #3\n", "2020-01-13 12:11:32,957 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:11:32,957 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:11:32,957 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:11:32,957 Validation result (greedy) at epoch 26, step 130000: bleu: 32.10, loss: 35861.1133, ppl: 3.4284, duration: 32.1644s\n", "2020-01-13 12:11:44,703 Epoch 26 Step: 130100 Batch Loss: 1.264485 Tokens per Sec: 19634, Lr: 0.000300\n", "2020-01-13 12:11:56,411 Epoch 26 Step: 130200 Batch Loss: 1.201716 Tokens per Sec: 19682, Lr: 0.000300\n", "2020-01-13 12:12:08,336 Epoch 26 Step: 130300 Batch Loss: 1.265616 Tokens per Sec: 20141, Lr: 0.000300\n", "2020-01-13 12:12:19,941 Epoch 26 Step: 130400 Batch Loss: 1.385936 Tokens per Sec: 19411, Lr: 0.000300\n", "2020-01-13 12:12:31,664 Epoch 26 Step: 130500 Batch Loss: 1.374363 Tokens per Sec: 19693, Lr: 0.000300\n", "2020-01-13 12:12:43,375 Epoch 26 Step: 130600 Batch Loss: 1.316820 Tokens per Sec: 19248, Lr: 0.000300\n", "2020-01-13 12:12:55,135 Epoch 26 Step: 130700 Batch Loss: 1.275297 Tokens per Sec: 19573, Lr: 0.000300\n", "2020-01-13 12:13:06,985 Epoch 26 Step: 130800 Batch Loss: 1.275390 Tokens per Sec: 19491, Lr: 0.000300\n", "2020-01-13 12:13:18,677 Epoch 26 Step: 130900 Batch Loss: 1.267945 Tokens per Sec: 19769, Lr: 0.000300\n", "2020-01-13 12:13:30,437 Epoch 26 Step: 131000 Batch Loss: 1.354882 Tokens per Sec: 19564, Lr: 0.000300\n", "2020-01-13 12:14:01,086 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:14:01,087 Saving new checkpoint.\n", "2020-01-13 12:14:02,257 Example #0\n", "2020-01-13 12:14:02,258 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:14:02,258 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:14:02,258 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:14:02,258 Example #1\n", "2020-01-13 12:14:02,259 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:14:02,259 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:14:02,259 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:14:02,259 Example #2\n", "2020-01-13 12:14:02,260 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:14:02,260 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:14:02,260 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst , na - enye aka dị oké ọnụ ahịa n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 12:14:02,260 Example #3\n", "2020-01-13 12:14:02,261 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:14:02,261 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:14:02,261 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ iji nweta mgbaghara Chineke .\n", "2020-01-13 12:14:02,261 Validation result (greedy) at epoch 26, step 131000: bleu: 32.12, loss: 35857.8398, ppl: 3.4280, duration: 31.8239s\n", "2020-01-13 12:14:14,044 Epoch 26 Step: 131100 Batch Loss: 1.415601 Tokens per Sec: 19095, Lr: 0.000300\n", "2020-01-13 12:14:25,939 Epoch 26 Step: 131200 Batch Loss: 1.175217 Tokens per Sec: 19079, Lr: 0.000300\n", "2020-01-13 12:14:37,826 Epoch 26 Step: 131300 Batch Loss: 1.204309 Tokens per Sec: 18955, Lr: 0.000300\n", "2020-01-13 12:14:49,562 Epoch 26 Step: 131400 Batch Loss: 1.356799 Tokens per Sec: 19729, Lr: 0.000300\n", "2020-01-13 12:15:01,303 Epoch 26 Step: 131500 Batch Loss: 1.231179 Tokens per Sec: 19453, Lr: 0.000300\n", "2020-01-13 12:15:12,978 Epoch 26 Step: 131600 Batch Loss: 1.237851 Tokens per Sec: 19446, Lr: 0.000300\n", "2020-01-13 12:15:24,706 Epoch 26 Step: 131700 Batch Loss: 1.410905 Tokens per Sec: 19479, Lr: 0.000300\n", "2020-01-13 12:15:36,491 Epoch 26 Step: 131800 Batch Loss: 1.163134 Tokens per Sec: 19317, Lr: 0.000300\n", "2020-01-13 12:15:48,314 Epoch 26 Step: 131900 Batch Loss: 1.325410 Tokens per Sec: 19582, Lr: 0.000300\n", "2020-01-13 12:16:00,075 Epoch 26 Step: 132000 Batch Loss: 1.343850 Tokens per Sec: 19518, Lr: 0.000300\n", "2020-01-13 12:16:30,668 Example #0\n", "2020-01-13 12:16:30,669 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:16:30,669 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:16:30,669 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:16:30,669 Example #1\n", "2020-01-13 12:16:30,670 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:16:30,670 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:16:30,670 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mebie ndokwa ahụ ?\n", "2020-01-13 12:16:30,670 Example #2\n", "2020-01-13 12:16:30,670 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:16:30,670 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:16:30,670 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 12:16:30,671 Example #3\n", "2020-01-13 12:16:30,671 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:16:30,671 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:16:30,671 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:16:30,671 Validation result (greedy) at epoch 26, step 132000: bleu: 32.29, loss: 35877.5859, ppl: 3.4303, duration: 30.5955s\n", "2020-01-13 12:16:42,241 Epoch 26 Step: 132100 Batch Loss: 1.235485 Tokens per Sec: 19657, Lr: 0.000300\n", "2020-01-13 12:16:53,923 Epoch 26 Step: 132200 Batch Loss: 1.437476 Tokens per Sec: 19510, Lr: 0.000300\n", "2020-01-13 12:17:05,655 Epoch 26 Step: 132300 Batch Loss: 1.481672 Tokens per Sec: 19899, Lr: 0.000300\n", "2020-01-13 12:17:17,468 Epoch 26 Step: 132400 Batch Loss: 1.272865 Tokens per Sec: 19262, Lr: 0.000300\n", "2020-01-13 12:17:29,228 Epoch 26 Step: 132500 Batch Loss: 1.351633 Tokens per Sec: 19783, Lr: 0.000300\n", "2020-01-13 12:17:40,947 Epoch 26 Step: 132600 Batch Loss: 1.347314 Tokens per Sec: 19834, Lr: 0.000300\n", "2020-01-13 12:17:50,329 Epoch 26: total training loss 6976.79\n", "2020-01-13 12:17:50,330 EPOCH 27\n", "2020-01-13 12:17:53,425 Epoch 27 Step: 132700 Batch Loss: 1.398000 Tokens per Sec: 16813, Lr: 0.000300\n", "2020-01-13 12:18:05,125 Epoch 27 Step: 132800 Batch Loss: 1.417186 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-13 12:18:16,754 Epoch 27 Step: 132900 Batch Loss: 1.434021 Tokens per Sec: 19718, Lr: 0.000300\n", "2020-01-13 12:18:28,501 Epoch 27 Step: 133000 Batch Loss: 1.331869 Tokens per Sec: 19560, Lr: 0.000300\n", "2020-01-13 12:18:58,987 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:18:58,988 Saving new checkpoint.\n", "2020-01-13 12:19:00,134 Example #0\n", "2020-01-13 12:19:00,135 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:19:00,135 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:19:00,135 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:19:00,135 Example #1\n", "2020-01-13 12:19:00,135 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:19:00,135 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:19:00,135 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 12:19:00,136 Example #2\n", "2020-01-13 12:19:00,136 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:19:00,136 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:19:00,136 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:19:00,136 Example #3\n", "2020-01-13 12:19:00,136 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:19:00,136 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:19:00,136 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ iji nweta mgbaghara Chineke .\n", "2020-01-13 12:19:00,137 Validation result (greedy) at epoch 27, step 133000: bleu: 32.07, loss: 35831.9023, ppl: 3.4249, duration: 31.6350s\n", "2020-01-13 12:19:11,851 Epoch 27 Step: 133100 Batch Loss: 1.627468 Tokens per Sec: 19608, Lr: 0.000300\n", "2020-01-13 12:19:23,415 Epoch 27 Step: 133200 Batch Loss: 1.331038 Tokens per Sec: 19093, Lr: 0.000300\n", "2020-01-13 12:19:35,017 Epoch 27 Step: 133300 Batch Loss: 1.429288 Tokens per Sec: 19698, Lr: 0.000300\n", "2020-01-13 12:19:46,763 Epoch 27 Step: 133400 Batch Loss: 1.202139 Tokens per Sec: 19460, Lr: 0.000300\n", "2020-01-13 12:19:58,478 Epoch 27 Step: 133500 Batch Loss: 1.527866 Tokens per Sec: 19572, Lr: 0.000300\n", "2020-01-13 12:20:10,304 Epoch 27 Step: 133600 Batch Loss: 1.297069 Tokens per Sec: 19384, Lr: 0.000300\n", "2020-01-13 12:20:22,192 Epoch 27 Step: 133700 Batch Loss: 1.320838 Tokens per Sec: 18989, Lr: 0.000300\n", "2020-01-13 12:20:33,918 Epoch 27 Step: 133800 Batch Loss: 1.427597 Tokens per Sec: 18976, Lr: 0.000300\n", "2020-01-13 12:20:45,788 Epoch 27 Step: 133900 Batch Loss: 1.503206 Tokens per Sec: 18740, Lr: 0.000300\n", "2020-01-13 12:20:57,848 Epoch 27 Step: 134000 Batch Loss: 1.332279 Tokens per Sec: 19362, Lr: 0.000300\n", "2020-01-13 12:21:28,357 Example #0\n", "2020-01-13 12:21:28,357 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:21:28,358 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:21:28,358 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 12:21:28,358 Example #1\n", "2020-01-13 12:21:28,358 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:21:28,358 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:21:28,358 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye gaa nke ọma n’agbanyeghị mgbalị Setan mere ime iji belata ndokwa ahụ ?\n", "2020-01-13 12:21:28,358 Example #2\n", "2020-01-13 12:21:28,358 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:21:28,358 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:21:28,359 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:21:28,359 Example #3\n", "2020-01-13 12:21:28,359 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:21:28,359 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:21:28,359 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:21:28,359 Validation result (greedy) at epoch 27, step 134000: bleu: 32.19, loss: 35833.2578, ppl: 3.4251, duration: 30.5102s\n", "2020-01-13 12:21:40,029 Epoch 27 Step: 134100 Batch Loss: 1.464202 Tokens per Sec: 19567, Lr: 0.000300\n", "2020-01-13 12:21:51,647 Epoch 27 Step: 134200 Batch Loss: 1.352506 Tokens per Sec: 19491, Lr: 0.000300\n", "2020-01-13 12:22:03,426 Epoch 27 Step: 134300 Batch Loss: 1.351145 Tokens per Sec: 20077, Lr: 0.000300\n", "2020-01-13 12:22:15,228 Epoch 27 Step: 134400 Batch Loss: 1.391674 Tokens per Sec: 19684, Lr: 0.000300\n", "2020-01-13 12:22:26,946 Epoch 27 Step: 134500 Batch Loss: 1.343308 Tokens per Sec: 19602, Lr: 0.000300\n", "2020-01-13 12:22:38,597 Epoch 27 Step: 134600 Batch Loss: 1.322925 Tokens per Sec: 19460, Lr: 0.000300\n", "2020-01-13 12:22:50,269 Epoch 27 Step: 134700 Batch Loss: 1.559427 Tokens per Sec: 19251, Lr: 0.000300\n", "2020-01-13 12:23:02,059 Epoch 27 Step: 134800 Batch Loss: 1.429120 Tokens per Sec: 19206, Lr: 0.000300\n", "2020-01-13 12:23:13,770 Epoch 27 Step: 134900 Batch Loss: 1.359448 Tokens per Sec: 19850, Lr: 0.000300\n", "2020-01-13 12:23:25,515 Epoch 27 Step: 135000 Batch Loss: 1.383114 Tokens per Sec: 19742, Lr: 0.000300\n", "2020-01-13 12:23:55,879 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:23:55,880 Saving new checkpoint.\n", "2020-01-13 12:23:57,123 Example #0\n", "2020-01-13 12:23:57,124 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:23:57,124 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:23:57,124 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 12:23:57,125 Example #1\n", "2020-01-13 12:23:57,125 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:23:57,125 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:23:57,125 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:23:57,125 Example #2\n", "2020-01-13 12:23:57,126 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:23:57,126 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:23:57,126 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị mmadụ aka ikwusa “ ozi ọma nke a nke alaeze ” maka ịgbara mba nile àmà .\n", "2020-01-13 12:23:57,126 Example #3\n", "2020-01-13 12:23:57,126 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:23:57,127 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:23:57,127 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:23:57,127 Validation result (greedy) at epoch 27, step 135000: bleu: 32.15, loss: 35694.8594, ppl: 3.4088, duration: 31.6109s\n", "2020-01-13 12:24:08,984 Epoch 27 Step: 135100 Batch Loss: 1.100607 Tokens per Sec: 19714, Lr: 0.000300\n", "2020-01-13 12:24:20,733 Epoch 27 Step: 135200 Batch Loss: 1.527930 Tokens per Sec: 19659, Lr: 0.000300\n", "2020-01-13 12:24:32,535 Epoch 27 Step: 135300 Batch Loss: 1.371745 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 12:24:44,314 Epoch 27 Step: 135400 Batch Loss: 1.324196 Tokens per Sec: 19833, Lr: 0.000300\n", "2020-01-13 12:24:56,005 Epoch 27 Step: 135500 Batch Loss: 1.251041 Tokens per Sec: 19627, Lr: 0.000300\n", "2020-01-13 12:25:07,815 Epoch 27 Step: 135600 Batch Loss: 1.317714 Tokens per Sec: 19838, Lr: 0.000300\n", "2020-01-13 12:25:19,499 Epoch 27 Step: 135700 Batch Loss: 1.298770 Tokens per Sec: 19410, Lr: 0.000300\n", "2020-01-13 12:25:31,199 Epoch 27 Step: 135800 Batch Loss: 1.360097 Tokens per Sec: 19118, Lr: 0.000300\n", "2020-01-13 12:25:43,098 Epoch 27 Step: 135900 Batch Loss: 1.419179 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-13 12:25:54,756 Epoch 27 Step: 136000 Batch Loss: 1.320132 Tokens per Sec: 19415, Lr: 0.000300\n", "2020-01-13 12:26:25,226 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:26:25,227 Saving new checkpoint.\n", "2020-01-13 12:26:26,797 Example #0\n", "2020-01-13 12:26:26,797 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:26:26,797 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:26:26,797 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa iji merie nchegbu .\n", "2020-01-13 12:26:26,798 Example #1\n", "2020-01-13 12:26:26,798 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:26:26,798 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:26:26,798 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:26:26,798 Example #2\n", "2020-01-13 12:26:26,798 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:26:26,798 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:26:26,798 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 12:26:26,799 Example #3\n", "2020-01-13 12:26:26,799 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:26:26,799 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:26:26,799 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 12:26:26,799 Validation result (greedy) at epoch 27, step 136000: bleu: 32.15, loss: 35681.3555, ppl: 3.4073, duration: 32.0429s\n", "2020-01-13 12:26:38,577 Epoch 27 Step: 136100 Batch Loss: 1.272493 Tokens per Sec: 19786, Lr: 0.000300\n", "2020-01-13 12:26:50,346 Epoch 27 Step: 136200 Batch Loss: 1.489324 Tokens per Sec: 19956, Lr: 0.000300\n", "2020-01-13 12:27:02,065 Epoch 27 Step: 136300 Batch Loss: 1.259221 Tokens per Sec: 19503, Lr: 0.000300\n", "2020-01-13 12:27:13,682 Epoch 27 Step: 136400 Batch Loss: 1.253890 Tokens per Sec: 19347, Lr: 0.000300\n", "2020-01-13 12:27:25,298 Epoch 27 Step: 136500 Batch Loss: 1.363444 Tokens per Sec: 19580, Lr: 0.000300\n", "2020-01-13 12:27:36,879 Epoch 27 Step: 136600 Batch Loss: 1.712445 Tokens per Sec: 19976, Lr: 0.000300\n", "2020-01-13 12:27:48,498 Epoch 27 Step: 136700 Batch Loss: 1.266759 Tokens per Sec: 19244, Lr: 0.000300\n", "2020-01-13 12:28:00,217 Epoch 27 Step: 136800 Batch Loss: 1.386005 Tokens per Sec: 19790, Lr: 0.000300\n", "2020-01-13 12:28:11,963 Epoch 27 Step: 136900 Batch Loss: 1.366809 Tokens per Sec: 19415, Lr: 0.000300\n", "2020-01-13 12:28:23,691 Epoch 27 Step: 137000 Batch Loss: 1.388435 Tokens per Sec: 19517, Lr: 0.000300\n", "2020-01-13 12:28:54,157 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:28:54,158 Saving new checkpoint.\n", "2020-01-13 12:28:55,327 Example #0\n", "2020-01-13 12:28:55,327 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:28:55,327 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:28:55,327 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:28:55,327 Example #1\n", "2020-01-13 12:28:55,328 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:28:55,328 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:28:55,328 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime iji belata ndokwa ahụ ?\n", "2020-01-13 12:28:55,328 Example #2\n", "2020-01-13 12:28:55,328 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:28:55,328 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:28:55,328 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:28:55,329 Example #3\n", "2020-01-13 12:28:55,329 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:28:55,329 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:28:55,329 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:28:55,329 Validation result (greedy) at epoch 27, step 137000: bleu: 32.48, loss: 35481.6055, ppl: 3.3840, duration: 31.6379s\n", "2020-01-13 12:29:07,448 Epoch 27 Step: 137100 Batch Loss: 1.492572 Tokens per Sec: 18944, Lr: 0.000300\n", "2020-01-13 12:29:19,117 Epoch 27 Step: 137200 Batch Loss: 1.355958 Tokens per Sec: 19606, Lr: 0.000300\n", "2020-01-13 12:29:30,841 Epoch 27 Step: 137300 Batch Loss: 1.601299 Tokens per Sec: 19486, Lr: 0.000300\n", "2020-01-13 12:29:42,458 Epoch 27 Step: 137400 Batch Loss: 1.312521 Tokens per Sec: 19454, Lr: 0.000300\n", "2020-01-13 12:29:54,051 Epoch 27 Step: 137500 Batch Loss: 1.246457 Tokens per Sec: 19036, Lr: 0.000300\n", "2020-01-13 12:30:05,862 Epoch 27 Step: 137600 Batch Loss: 1.383525 Tokens per Sec: 19583, Lr: 0.000300\n", "2020-01-13 12:30:17,575 Epoch 27 Step: 137700 Batch Loss: 1.310647 Tokens per Sec: 19560, Lr: 0.000300\n", "2020-01-13 12:30:27,618 Epoch 27: total training loss 6960.38\n", "2020-01-13 12:30:27,618 EPOCH 28\n", "2020-01-13 12:30:29,863 Epoch 28 Step: 137800 Batch Loss: 1.327351 Tokens per Sec: 14511, Lr: 0.000300\n", "2020-01-13 12:30:41,519 Epoch 28 Step: 137900 Batch Loss: 1.326732 Tokens per Sec: 19526, Lr: 0.000300\n", "2020-01-13 12:30:53,169 Epoch 28 Step: 138000 Batch Loss: 1.323774 Tokens per Sec: 19311, Lr: 0.000300\n", "2020-01-13 12:31:23,640 Example #0\n", "2020-01-13 12:31:23,640 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:31:23,640 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:31:23,641 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:31:23,641 Example #1\n", "2020-01-13 12:31:23,641 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:31:23,641 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:31:23,642 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye gaa nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:31:23,642 Example #2\n", "2020-01-13 12:31:23,642 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:31:23,642 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:31:23,642 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị ọzọ aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:31:23,642 Example #3\n", "2020-01-13 12:31:23,643 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:31:23,643 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:31:23,643 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:31:23,643 Validation result (greedy) at epoch 28, step 138000: bleu: 32.18, loss: 35539.5938, ppl: 3.3907, duration: 30.4735s\n", "2020-01-13 12:31:35,377 Epoch 28 Step: 138100 Batch Loss: 1.523471 Tokens per Sec: 20029, Lr: 0.000300\n", "2020-01-13 12:31:47,099 Epoch 28 Step: 138200 Batch Loss: 1.398128 Tokens per Sec: 19696, Lr: 0.000300\n", "2020-01-13 12:31:58,699 Epoch 28 Step: 138300 Batch Loss: 1.554618 Tokens per Sec: 19283, Lr: 0.000300\n", "2020-01-13 12:32:10,387 Epoch 28 Step: 138400 Batch Loss: 1.345787 Tokens per Sec: 19598, Lr: 0.000300\n", "2020-01-13 12:32:22,014 Epoch 28 Step: 138500 Batch Loss: 1.331176 Tokens per Sec: 19366, Lr: 0.000300\n", "2020-01-13 12:32:33,812 Epoch 28 Step: 138600 Batch Loss: 1.270469 Tokens per Sec: 19317, Lr: 0.000300\n", "2020-01-13 12:32:45,494 Epoch 28 Step: 138700 Batch Loss: 1.382943 Tokens per Sec: 19478, Lr: 0.000300\n", "2020-01-13 12:32:57,159 Epoch 28 Step: 138800 Batch Loss: 1.378035 Tokens per Sec: 19767, Lr: 0.000300\n", "2020-01-13 12:33:08,813 Epoch 28 Step: 138900 Batch Loss: 1.293519 Tokens per Sec: 19737, Lr: 0.000300\n", "2020-01-13 12:33:20,600 Epoch 28 Step: 139000 Batch Loss: 1.394765 Tokens per Sec: 19974, Lr: 0.000300\n", "2020-01-13 12:33:50,909 Example #0\n", "2020-01-13 12:33:50,909 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:33:50,910 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:33:50,910 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:33:50,910 Example #1\n", "2020-01-13 12:33:50,910 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:33:50,910 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:33:50,911 \tHypothesis: Gịnị dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:33:50,911 Example #2\n", "2020-01-13 12:33:50,911 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:33:50,911 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:33:50,911 \tHypothesis: Ha aghọọla ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enyere ha aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaa mba nile àmà .\n", "2020-01-13 12:33:50,911 Example #3\n", "2020-01-13 12:33:50,912 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:33:50,912 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:33:50,912 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:33:50,912 Validation result (greedy) at epoch 28, step 139000: bleu: 31.97, loss: 35491.4414, ppl: 3.3851, duration: 30.3116s\n", "2020-01-13 12:34:02,453 Epoch 28 Step: 139100 Batch Loss: 1.264484 Tokens per Sec: 19139, Lr: 0.000300\n", "2020-01-13 12:34:14,037 Epoch 28 Step: 139200 Batch Loss: 1.186768 Tokens per Sec: 19363, Lr: 0.000300\n", "2020-01-13 12:34:25,709 Epoch 28 Step: 139300 Batch Loss: 1.336586 Tokens per Sec: 19671, Lr: 0.000300\n", "2020-01-13 12:34:37,376 Epoch 28 Step: 139400 Batch Loss: 1.317461 Tokens per Sec: 19863, Lr: 0.000300\n", "2020-01-13 12:34:49,109 Epoch 28 Step: 139500 Batch Loss: 1.200219 Tokens per Sec: 19766, Lr: 0.000300\n", "2020-01-13 12:35:00,905 Epoch 28 Step: 139600 Batch Loss: 1.438324 Tokens per Sec: 19603, Lr: 0.000300\n", "2020-01-13 12:35:12,740 Epoch 28 Step: 139700 Batch Loss: 1.433507 Tokens per Sec: 19805, Lr: 0.000300\n", "2020-01-13 12:35:24,451 Epoch 28 Step: 139800 Batch Loss: 1.317658 Tokens per Sec: 19609, Lr: 0.000300\n", "2020-01-13 12:35:36,181 Epoch 28 Step: 139900 Batch Loss: 1.118819 Tokens per Sec: 19414, Lr: 0.000300\n", "2020-01-13 12:35:47,936 Epoch 28 Step: 140000 Batch Loss: 1.273166 Tokens per Sec: 19502, Lr: 0.000300\n", "2020-01-13 12:36:18,642 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:36:18,643 Saving new checkpoint.\n", "2020-01-13 12:36:19,877 Example #0\n", "2020-01-13 12:36:19,877 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:36:19,878 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:36:19,878 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:36:19,878 Example #1\n", "2020-01-13 12:36:19,878 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:36:19,879 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:36:19,879 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ belata ?\n", "2020-01-13 12:36:19,879 Example #2\n", "2020-01-13 12:36:19,879 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:36:19,880 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:36:19,880 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:36:19,880 Example #3\n", "2020-01-13 12:36:19,880 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:36:19,881 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:36:19,881 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:36:19,881 Validation result (greedy) at epoch 28, step 140000: bleu: 32.48, loss: 35443.4570, ppl: 3.3795, duration: 31.9443s\n", "2020-01-13 12:36:32,332 Epoch 28 Step: 140100 Batch Loss: 1.299769 Tokens per Sec: 18565, Lr: 0.000300\n", "2020-01-13 12:36:44,277 Epoch 28 Step: 140200 Batch Loss: 1.338072 Tokens per Sec: 19291, Lr: 0.000300\n", "2020-01-13 12:36:56,124 Epoch 28 Step: 140300 Batch Loss: 1.361111 Tokens per Sec: 19199, Lr: 0.000300\n", "2020-01-13 12:37:07,868 Epoch 28 Step: 140400 Batch Loss: 1.342048 Tokens per Sec: 19605, Lr: 0.000300\n", "2020-01-13 12:37:19,680 Epoch 28 Step: 140500 Batch Loss: 1.520007 Tokens per Sec: 19916, Lr: 0.000300\n", "2020-01-13 12:37:31,484 Epoch 28 Step: 140600 Batch Loss: 1.337826 Tokens per Sec: 19442, Lr: 0.000300\n", "2020-01-13 12:37:43,359 Epoch 28 Step: 140700 Batch Loss: 1.417471 Tokens per Sec: 19932, Lr: 0.000300\n", "2020-01-13 12:37:55,176 Epoch 28 Step: 140800 Batch Loss: 1.533373 Tokens per Sec: 19447, Lr: 0.000300\n", "2020-01-13 12:38:06,915 Epoch 28 Step: 140900 Batch Loss: 1.319189 Tokens per Sec: 19435, Lr: 0.000300\n", "2020-01-13 12:38:18,755 Epoch 28 Step: 141000 Batch Loss: 1.207387 Tokens per Sec: 19605, Lr: 0.000300\n", "2020-01-13 12:38:49,372 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:38:49,372 Saving new checkpoint.\n", "2020-01-13 12:38:50,619 Example #0\n", "2020-01-13 12:38:50,619 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:38:50,619 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:38:50,619 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:38:50,620 Example #1\n", "2020-01-13 12:38:50,620 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:38:50,620 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:38:50,620 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:38:50,620 Example #2\n", "2020-01-13 12:38:50,620 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:38:50,621 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:38:50,621 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ụzọ bara uru n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 12:38:50,621 Example #3\n", "2020-01-13 12:38:50,621 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:38:50,621 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:38:50,621 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:38:50,621 Validation result (greedy) at epoch 28, step 141000: bleu: 32.26, loss: 35394.0195, ppl: 3.3738, duration: 31.8656s\n", "2020-01-13 12:39:02,660 Epoch 28 Step: 141100 Batch Loss: 1.301500 Tokens per Sec: 19453, Lr: 0.000300\n", "2020-01-13 12:39:14,493 Epoch 28 Step: 141200 Batch Loss: 1.400424 Tokens per Sec: 19049, Lr: 0.000300\n", "2020-01-13 12:39:26,449 Epoch 28 Step: 141300 Batch Loss: 1.512962 Tokens per Sec: 19886, Lr: 0.000300\n", "2020-01-13 12:39:38,222 Epoch 28 Step: 141400 Batch Loss: 1.290766 Tokens per Sec: 19310, Lr: 0.000300\n", "2020-01-13 12:39:50,021 Epoch 28 Step: 141500 Batch Loss: 1.336910 Tokens per Sec: 19502, Lr: 0.000300\n", "2020-01-13 12:40:01,820 Epoch 28 Step: 141600 Batch Loss: 1.339895 Tokens per Sec: 19437, Lr: 0.000300\n", "2020-01-13 12:40:13,355 Epoch 28 Step: 141700 Batch Loss: 1.273788 Tokens per Sec: 19275, Lr: 0.000300\n", "2020-01-13 12:40:25,034 Epoch 28 Step: 141800 Batch Loss: 1.325456 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-13 12:40:36,724 Epoch 28 Step: 141900 Batch Loss: 1.373513 Tokens per Sec: 19485, Lr: 0.000300\n", "2020-01-13 12:40:48,415 Epoch 28 Step: 142000 Batch Loss: 1.363788 Tokens per Sec: 19682, Lr: 0.000300\n", "2020-01-13 12:41:18,664 Example #0\n", "2020-01-13 12:41:18,665 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:41:18,665 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:41:18,665 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:41:18,665 Example #1\n", "2020-01-13 12:41:18,666 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:41:18,666 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:41:18,666 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:41:18,666 Example #2\n", "2020-01-13 12:41:18,667 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:41:18,667 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:41:18,667 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka dị oké ọnụ ahịa n’ikwusa “ ozi ọma nke a nke alaeze ” maka ịgba àmà nye mba nile .\n", "2020-01-13 12:41:18,667 Example #3\n", "2020-01-13 12:41:18,667 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:41:18,668 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:41:18,668 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:41:18,668 Validation result (greedy) at epoch 28, step 142000: bleu: 32.27, loss: 35572.0547, ppl: 3.3945, duration: 30.2529s\n", "2020-01-13 12:41:30,352 Epoch 28 Step: 142100 Batch Loss: 1.245610 Tokens per Sec: 19734, Lr: 0.000300\n", "2020-01-13 12:41:41,956 Epoch 28 Step: 142200 Batch Loss: 1.318712 Tokens per Sec: 19716, Lr: 0.000300\n", "2020-01-13 12:41:53,576 Epoch 28 Step: 142300 Batch Loss: 1.283223 Tokens per Sec: 19947, Lr: 0.000300\n", "2020-01-13 12:42:05,260 Epoch 28 Step: 142400 Batch Loss: 1.343531 Tokens per Sec: 19491, Lr: 0.000300\n", "2020-01-13 12:42:16,806 Epoch 28 Step: 142500 Batch Loss: 1.363649 Tokens per Sec: 19981, Lr: 0.000300\n", "2020-01-13 12:42:28,477 Epoch 28 Step: 142600 Batch Loss: 1.055509 Tokens per Sec: 19470, Lr: 0.000300\n", "2020-01-13 12:42:40,239 Epoch 28 Step: 142700 Batch Loss: 1.324614 Tokens per Sec: 19982, Lr: 0.000300\n", "2020-01-13 12:42:51,851 Epoch 28 Step: 142800 Batch Loss: 1.804749 Tokens per Sec: 19255, Lr: 0.000300\n", "2020-01-13 12:43:01,497 Epoch 28: total training loss 6905.11\n", "2020-01-13 12:43:01,497 EPOCH 29\n", "2020-01-13 12:43:04,280 Epoch 29 Step: 142900 Batch Loss: 1.471391 Tokens per Sec: 16272, Lr: 0.000300\n", "2020-01-13 12:43:15,972 Epoch 29 Step: 143000 Batch Loss: 1.356720 Tokens per Sec: 19581, Lr: 0.000300\n", "2020-01-13 12:43:46,257 Example #0\n", "2020-01-13 12:43:46,257 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:43:46,257 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:43:46,258 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:43:46,258 Example #1\n", "2020-01-13 12:43:46,258 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:43:46,258 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:43:46,258 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:43:46,259 Example #2\n", "2020-01-13 12:43:46,259 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:43:46,259 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:43:46,259 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:43:46,259 Example #3\n", "2020-01-13 12:43:46,260 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:43:46,260 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:43:46,260 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:43:46,260 Validation result (greedy) at epoch 29, step 143000: bleu: 32.67, loss: 35452.1836, ppl: 3.3805, duration: 30.2878s\n", "2020-01-13 12:43:57,845 Epoch 29 Step: 143100 Batch Loss: 1.252704 Tokens per Sec: 20181, Lr: 0.000300\n", "2020-01-13 12:44:09,466 Epoch 29 Step: 143200 Batch Loss: 1.381806 Tokens per Sec: 19569, Lr: 0.000300\n", "2020-01-13 12:44:21,094 Epoch 29 Step: 143300 Batch Loss: 1.303119 Tokens per Sec: 19577, Lr: 0.000300\n", "2020-01-13 12:44:32,683 Epoch 29 Step: 143400 Batch Loss: 1.361259 Tokens per Sec: 19888, Lr: 0.000300\n", "2020-01-13 12:44:44,360 Epoch 29 Step: 143500 Batch Loss: 1.246078 Tokens per Sec: 20021, Lr: 0.000300\n", "2020-01-13 12:44:56,024 Epoch 29 Step: 143600 Batch Loss: 1.282547 Tokens per Sec: 19212, Lr: 0.000300\n", "2020-01-13 12:45:07,575 Epoch 29 Step: 143700 Batch Loss: 1.340485 Tokens per Sec: 20482, Lr: 0.000300\n", "2020-01-13 12:45:19,371 Epoch 29 Step: 143800 Batch Loss: 1.313793 Tokens per Sec: 19561, Lr: 0.000300\n", "2020-01-13 12:45:30,996 Epoch 29 Step: 143900 Batch Loss: 1.271453 Tokens per Sec: 19666, Lr: 0.000300\n", "2020-01-13 12:45:42,565 Epoch 29 Step: 144000 Batch Loss: 1.269315 Tokens per Sec: 19829, Lr: 0.000300\n", "2020-01-13 12:46:12,993 Example #0\n", "2020-01-13 12:46:12,994 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:46:12,994 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:46:12,994 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ ihe dị oké mkpa anyị ga - eme ka anyị ghara ichegbu onwe anyị .\n", "2020-01-13 12:46:12,994 Example #1\n", "2020-01-13 12:46:12,994 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:46:12,994 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:46:12,994 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:46:12,994 Example #2\n", "2020-01-13 12:46:12,995 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:46:12,995 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:46:12,995 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị mmadụ aka ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 12:46:12,995 Example #3\n", "2020-01-13 12:46:12,995 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:46:12,995 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:46:12,995 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:46:12,995 Validation result (greedy) at epoch 29, step 144000: bleu: 32.05, loss: 35434.4375, ppl: 3.3785, duration: 30.4303s\n", "2020-01-13 12:46:24,674 Epoch 29 Step: 144100 Batch Loss: 1.226082 Tokens per Sec: 20269, Lr: 0.000300\n", "2020-01-13 12:46:36,404 Epoch 29 Step: 144200 Batch Loss: 1.484063 Tokens per Sec: 19915, Lr: 0.000300\n", "2020-01-13 12:46:48,075 Epoch 29 Step: 144300 Batch Loss: 1.435733 Tokens per Sec: 19511, Lr: 0.000300\n", "2020-01-13 12:46:59,708 Epoch 29 Step: 144400 Batch Loss: 1.439178 Tokens per Sec: 20063, Lr: 0.000300\n", "2020-01-13 12:47:11,403 Epoch 29 Step: 144500 Batch Loss: 1.246164 Tokens per Sec: 19283, Lr: 0.000300\n", "2020-01-13 12:47:23,085 Epoch 29 Step: 144600 Batch Loss: 1.423842 Tokens per Sec: 19656, Lr: 0.000300\n", "2020-01-13 12:47:34,635 Epoch 29 Step: 144700 Batch Loss: 1.300477 Tokens per Sec: 19594, Lr: 0.000300\n", "2020-01-13 12:47:46,381 Epoch 29 Step: 144800 Batch Loss: 1.271068 Tokens per Sec: 19624, Lr: 0.000300\n", "2020-01-13 12:47:57,930 Epoch 29 Step: 144900 Batch Loss: 1.391522 Tokens per Sec: 19629, Lr: 0.000300\n", "2020-01-13 12:48:09,603 Epoch 29 Step: 145000 Batch Loss: 1.238255 Tokens per Sec: 19430, Lr: 0.000300\n", "2020-01-13 12:48:39,921 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:48:39,921 Saving new checkpoint.\n", "2020-01-13 12:48:41,099 Example #0\n", "2020-01-13 12:48:41,100 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:48:41,100 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:48:41,100 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:48:41,100 Example #1\n", "2020-01-13 12:48:41,100 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:48:41,100 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:48:41,100 \tHypothesis: Gịnị ka anyị kwesịrị ime iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:48:41,100 Example #2\n", "2020-01-13 12:48:41,101 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:48:41,101 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:48:41,101 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị ọzọ aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:48:41,101 Example #3\n", "2020-01-13 12:48:41,101 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:48:41,101 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:48:41,101 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:48:41,101 Validation result (greedy) at epoch 29, step 145000: bleu: 32.72, loss: 35308.9766, ppl: 3.3640, duration: 31.4982s\n", "2020-01-13 12:48:52,795 Epoch 29 Step: 145100 Batch Loss: 1.452450 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-13 12:49:04,445 Epoch 29 Step: 145200 Batch Loss: 1.272621 Tokens per Sec: 19537, Lr: 0.000300\n", "2020-01-13 12:49:16,086 Epoch 29 Step: 145300 Batch Loss: 1.393054 Tokens per Sec: 19492, Lr: 0.000300\n", "2020-01-13 12:49:27,634 Epoch 29 Step: 145400 Batch Loss: 1.523235 Tokens per Sec: 20102, Lr: 0.000300\n", "2020-01-13 12:49:39,337 Epoch 29 Step: 145500 Batch Loss: 1.046832 Tokens per Sec: 19416, Lr: 0.000300\n", "2020-01-13 12:49:51,097 Epoch 29 Step: 145600 Batch Loss: 1.407286 Tokens per Sec: 19982, Lr: 0.000300\n", "2020-01-13 12:50:02,703 Epoch 29 Step: 145700 Batch Loss: 1.133283 Tokens per Sec: 19573, Lr: 0.000300\n", "2020-01-13 12:50:14,335 Epoch 29 Step: 145800 Batch Loss: 1.428934 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-13 12:50:25,989 Epoch 29 Step: 145900 Batch Loss: 1.244907 Tokens per Sec: 19673, Lr: 0.000300\n", "2020-01-13 12:50:37,607 Epoch 29 Step: 146000 Batch Loss: 1.085371 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-13 12:51:07,965 Example #0\n", "2020-01-13 12:51:07,966 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:51:07,966 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:51:07,966 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:51:07,966 Example #1\n", "2020-01-13 12:51:07,967 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:51:07,967 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:51:07,967 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji mee ka ndokwa ahụ ghara ịdị irè ?\n", "2020-01-13 12:51:07,967 Example #2\n", "2020-01-13 12:51:07,968 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:51:07,968 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:51:07,968 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enyere ndị ọzọ aka ikwusa “ ozi ọma nke a nke alaeze ” iji gbaara mba nile àmà .\n", "2020-01-13 12:51:07,968 Example #3\n", "2020-01-13 12:51:07,969 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:51:07,969 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:51:07,969 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:51:07,969 Validation result (greedy) at epoch 29, step 146000: bleu: 32.49, loss: 35516.0195, ppl: 3.3880, duration: 30.3625s\n", "2020-01-13 12:51:19,557 Epoch 29 Step: 146100 Batch Loss: 1.537432 Tokens per Sec: 19708, Lr: 0.000300\n", "2020-01-13 12:51:31,153 Epoch 29 Step: 146200 Batch Loss: 1.302258 Tokens per Sec: 19354, Lr: 0.000300\n", "2020-01-13 12:51:42,662 Epoch 29 Step: 146300 Batch Loss: 1.394275 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-13 12:51:54,370 Epoch 29 Step: 146400 Batch Loss: 1.389265 Tokens per Sec: 19886, Lr: 0.000300\n", "2020-01-13 12:52:06,092 Epoch 29 Step: 146500 Batch Loss: 1.507195 Tokens per Sec: 19497, Lr: 0.000300\n", "2020-01-13 12:52:17,695 Epoch 29 Step: 146600 Batch Loss: 1.506721 Tokens per Sec: 19727, Lr: 0.000300\n", "2020-01-13 12:52:29,435 Epoch 29 Step: 146700 Batch Loss: 1.367379 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-13 12:52:41,033 Epoch 29 Step: 146800 Batch Loss: 1.376219 Tokens per Sec: 19970, Lr: 0.000300\n", "2020-01-13 12:52:52,649 Epoch 29 Step: 146900 Batch Loss: 1.306855 Tokens per Sec: 19730, Lr: 0.000300\n", "2020-01-13 12:53:04,284 Epoch 29 Step: 147000 Batch Loss: 1.249705 Tokens per Sec: 19530, Lr: 0.000300\n", "2020-01-13 12:53:34,575 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:53:34,576 Saving new checkpoint.\n", "2020-01-13 12:53:35,767 Example #0\n", "2020-01-13 12:53:35,767 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:53:35,767 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:53:35,767 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:53:35,768 Example #1\n", "2020-01-13 12:53:35,768 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:53:35,768 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:53:35,768 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:53:35,768 Example #2\n", "2020-01-13 12:53:35,768 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:53:35,768 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:53:35,769 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka agbara mba nile àmà .\n", "2020-01-13 12:53:35,769 Example #3\n", "2020-01-13 12:53:35,769 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:53:35,769 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:53:35,769 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:53:35,769 Validation result (greedy) at epoch 29, step 147000: bleu: 32.79, loss: 35249.8672, ppl: 3.3571, duration: 31.4851s\n", "2020-01-13 12:53:47,427 Epoch 29 Step: 147100 Batch Loss: 1.277642 Tokens per Sec: 19466, Lr: 0.000300\n", "2020-01-13 12:53:59,083 Epoch 29 Step: 147200 Batch Loss: 1.234863 Tokens per Sec: 19601, Lr: 0.000300\n", "2020-01-13 12:54:10,532 Epoch 29 Step: 147300 Batch Loss: 1.368220 Tokens per Sec: 19940, Lr: 0.000300\n", "2020-01-13 12:54:22,114 Epoch 29 Step: 147400 Batch Loss: 1.243698 Tokens per Sec: 19460, Lr: 0.000300\n", "2020-01-13 12:54:33,640 Epoch 29 Step: 147500 Batch Loss: 1.243023 Tokens per Sec: 19651, Lr: 0.000300\n", "2020-01-13 12:54:45,223 Epoch 29 Step: 147600 Batch Loss: 1.262264 Tokens per Sec: 19737, Lr: 0.000300\n", "2020-01-13 12:54:56,810 Epoch 29 Step: 147700 Batch Loss: 1.522949 Tokens per Sec: 19759, Lr: 0.000300\n", "2020-01-13 12:55:08,305 Epoch 29 Step: 147800 Batch Loss: 1.286098 Tokens per Sec: 20031, Lr: 0.000300\n", "2020-01-13 12:55:19,998 Epoch 29 Step: 147900 Batch Loss: 1.325384 Tokens per Sec: 19879, Lr: 0.000300\n", "2020-01-13 12:55:28,873 Epoch 29: total training loss 6876.00\n", "2020-01-13 12:55:28,874 EPOCH 30\n", "2020-01-13 12:55:32,243 Epoch 30 Step: 148000 Batch Loss: 1.376072 Tokens per Sec: 15906, Lr: 0.000300\n", "2020-01-13 12:56:02,503 Example #0\n", "2020-01-13 12:56:02,505 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:56:02,505 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:56:02,505 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:56:02,505 Example #1\n", "2020-01-13 12:56:02,506 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:56:02,506 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:56:02,506 \tHypothesis: Gịnị ka ọ dị mkpa iji nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:56:02,506 Example #2\n", "2020-01-13 12:56:02,507 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:56:02,507 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:56:02,507 \tHypothesis: Ha aghọọla ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 12:56:02,507 Example #3\n", "2020-01-13 12:56:02,507 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:56:02,508 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:56:02,508 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 12:56:02,508 Validation result (greedy) at epoch 30, step 148000: bleu: 32.60, loss: 35284.1406, ppl: 3.3611, duration: 30.2638s\n", "2020-01-13 12:56:14,139 Epoch 30 Step: 148100 Batch Loss: 1.323182 Tokens per Sec: 19728, Lr: 0.000300\n", "2020-01-13 12:56:25,754 Epoch 30 Step: 148200 Batch Loss: 1.537606 Tokens per Sec: 20301, Lr: 0.000300\n", "2020-01-13 12:56:37,381 Epoch 30 Step: 148300 Batch Loss: 1.413900 Tokens per Sec: 20029, Lr: 0.000300\n", "2020-01-13 12:56:48,961 Epoch 30 Step: 148400 Batch Loss: 1.316383 Tokens per Sec: 19910, Lr: 0.000300\n", "2020-01-13 12:57:00,400 Epoch 30 Step: 148500 Batch Loss: 1.415486 Tokens per Sec: 19942, Lr: 0.000300\n", "2020-01-13 12:57:12,133 Epoch 30 Step: 148600 Batch Loss: 1.356358 Tokens per Sec: 19549, Lr: 0.000300\n", "2020-01-13 12:57:23,681 Epoch 30 Step: 148700 Batch Loss: 1.311939 Tokens per Sec: 19755, Lr: 0.000300\n", "2020-01-13 12:57:35,214 Epoch 30 Step: 148800 Batch Loss: 1.243227 Tokens per Sec: 19750, Lr: 0.000300\n", "2020-01-13 12:57:46,784 Epoch 30 Step: 148900 Batch Loss: 1.067185 Tokens per Sec: 19358, Lr: 0.000300\n", "2020-01-13 12:57:58,294 Epoch 30 Step: 149000 Batch Loss: 1.355296 Tokens per Sec: 20100, Lr: 0.000300\n", "2020-01-13 12:58:28,434 Hooray! New best validation result [ppl]!\n", "2020-01-13 12:58:28,435 Saving new checkpoint.\n", "2020-01-13 12:58:29,614 Example #0\n", "2020-01-13 12:58:29,615 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 12:58:29,615 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 12:58:29,615 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 12:58:29,615 Example #1\n", "2020-01-13 12:58:29,616 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 12:58:29,616 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 12:58:29,617 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 12:58:29,617 Example #2\n", "2020-01-13 12:58:29,617 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 12:58:29,617 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 12:58:29,618 \tHypothesis: Ha aghọwo ndị enyi Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 12:58:29,618 Example #3\n", "2020-01-13 12:58:29,618 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 12:58:29,618 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 12:58:29,619 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 12:58:29,619 Validation result (greedy) at epoch 30, step 149000: bleu: 32.18, loss: 35224.4102, ppl: 3.3542, duration: 31.3248s\n", "2020-01-13 12:58:41,254 Epoch 30 Step: 149100 Batch Loss: 1.322980 Tokens per Sec: 19981, Lr: 0.000300\n", "2020-01-13 12:58:52,780 Epoch 30 Step: 149200 Batch Loss: 1.356173 Tokens per Sec: 19647, Lr: 0.000300\n", "2020-01-13 12:59:04,219 Epoch 30 Step: 149300 Batch Loss: 1.367113 Tokens per Sec: 19528, Lr: 0.000300\n", "2020-01-13 12:59:15,807 Epoch 30 Step: 149400 Batch Loss: 1.556852 Tokens per Sec: 19836, Lr: 0.000300\n", "2020-01-13 12:59:27,374 Epoch 30 Step: 149500 Batch Loss: 1.392129 Tokens per Sec: 20009, Lr: 0.000300\n", "2020-01-13 12:59:39,063 Epoch 30 Step: 149600 Batch Loss: 1.508906 Tokens per Sec: 20218, Lr: 0.000300\n", "2020-01-13 12:59:50,512 Epoch 30 Step: 149700 Batch Loss: 1.327532 Tokens per Sec: 19839, Lr: 0.000300\n", "2020-01-13 13:00:02,095 Epoch 30 Step: 149800 Batch Loss: 1.103278 Tokens per Sec: 19694, Lr: 0.000300\n", "2020-01-13 13:00:13,621 Epoch 30 Step: 149900 Batch Loss: 1.461658 Tokens per Sec: 19918, Lr: 0.000300\n", "2020-01-13 13:00:25,182 Epoch 30 Step: 150000 Batch Loss: 1.359764 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-13 13:00:55,355 Hooray! New best validation result [ppl]!\n", "2020-01-13 13:00:55,356 Saving new checkpoint.\n", "2020-01-13 13:00:56,492 Example #0\n", "2020-01-13 13:00:56,493 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 13:00:56,493 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 13:00:56,493 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 13:00:56,493 Example #1\n", "2020-01-13 13:00:56,493 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 13:00:56,493 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 13:00:56,493 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan na - eme iji belata ndokwa ahụ ?\n", "2020-01-13 13:00:56,493 Example #2\n", "2020-01-13 13:00:56,494 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 13:00:56,494 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 13:00:56,494 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 13:00:56,494 Example #3\n", "2020-01-13 13:00:56,494 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 13:00:56,495 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 13:00:56,495 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 13:00:56,495 Validation result (greedy) at epoch 30, step 150000: bleu: 32.38, loss: 35125.5586, ppl: 3.3428, duration: 31.3119s\n", "2020-01-13 13:01:08,159 Epoch 30 Step: 150100 Batch Loss: 1.475303 Tokens per Sec: 19943, Lr: 0.000300\n", "2020-01-13 13:01:19,675 Epoch 30 Step: 150200 Batch Loss: 1.373203 Tokens per Sec: 19723, Lr: 0.000300\n", "2020-01-13 13:01:31,227 Epoch 30 Step: 150300 Batch Loss: 1.326650 Tokens per Sec: 19764, Lr: 0.000300\n", "2020-01-13 13:01:42,691 Epoch 30 Step: 150400 Batch Loss: 1.324686 Tokens per Sec: 19903, Lr: 0.000300\n", "2020-01-13 13:01:54,272 Epoch 30 Step: 150500 Batch Loss: 1.287261 Tokens per Sec: 19749, Lr: 0.000300\n", "2020-01-13 13:02:05,776 Epoch 30 Step: 150600 Batch Loss: 1.133312 Tokens per Sec: 19980, Lr: 0.000300\n", "2020-01-13 13:02:17,405 Epoch 30 Step: 150700 Batch Loss: 1.241699 Tokens per Sec: 19584, Lr: 0.000300\n", "2020-01-13 13:02:29,066 Epoch 30 Step: 150800 Batch Loss: 1.369120 Tokens per Sec: 19821, Lr: 0.000300\n", "2020-01-13 13:02:40,504 Epoch 30 Step: 150900 Batch Loss: 1.390543 Tokens per Sec: 20141, Lr: 0.000300\n", "2020-01-13 13:02:51,992 Epoch 30 Step: 151000 Batch Loss: 1.263605 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-13 13:03:22,268 Example #0\n", "2020-01-13 13:03:22,269 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 13:03:22,269 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 13:03:22,269 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 13:03:22,270 Example #1\n", "2020-01-13 13:03:22,270 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 13:03:22,270 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 13:03:22,270 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 13:03:22,270 Example #2\n", "2020-01-13 13:03:22,271 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 13:03:22,271 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 13:03:22,271 \tHypothesis: Ha aghọwo ndị enyi nke ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 13:03:22,271 Example #3\n", "2020-01-13 13:03:22,271 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 13:03:22,271 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 13:03:22,271 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke ịgbaghara Chineke .\n", "2020-01-13 13:03:22,272 Validation result (greedy) at epoch 30, step 151000: bleu: 32.74, loss: 35151.5078, ppl: 3.3458, duration: 30.2794s\n", "2020-01-13 13:03:33,717 Epoch 30 Step: 151100 Batch Loss: 1.398665 Tokens per Sec: 19478, Lr: 0.000300\n", "2020-01-13 13:03:45,262 Epoch 30 Step: 151200 Batch Loss: 1.458701 Tokens per Sec: 19721, Lr: 0.000300\n", "2020-01-13 13:03:56,706 Epoch 30 Step: 151300 Batch Loss: 1.357356 Tokens per Sec: 19690, Lr: 0.000300\n", "2020-01-13 13:04:08,273 Epoch 30 Step: 151400 Batch Loss: 1.381232 Tokens per Sec: 19739, Lr: 0.000300\n", "2020-01-13 13:04:19,827 Epoch 30 Step: 151500 Batch Loss: 1.372755 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-13 13:04:31,406 Epoch 30 Step: 151600 Batch Loss: 1.362655 Tokens per Sec: 20038, Lr: 0.000300\n", "2020-01-13 13:04:42,903 Epoch 30 Step: 151700 Batch Loss: 1.336761 Tokens per Sec: 20099, Lr: 0.000300\n", "2020-01-13 13:04:54,333 Epoch 30 Step: 151800 Batch Loss: 1.338451 Tokens per Sec: 19390, Lr: 0.000300\n", "2020-01-13 13:05:05,980 Epoch 30 Step: 151900 Batch Loss: 1.208525 Tokens per Sec: 19953, Lr: 0.000300\n", "2020-01-13 13:05:17,701 Epoch 30 Step: 152000 Batch Loss: 1.288622 Tokens per Sec: 20408, Lr: 0.000300\n", "2020-01-13 13:05:47,922 Example #0\n", "2020-01-13 13:05:47,923 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 13:05:47,923 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 13:05:47,923 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị n’anya bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 13:05:47,923 Example #1\n", "2020-01-13 13:05:47,924 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 13:05:47,924 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 13:05:47,924 \tHypothesis: Gịnị ka ọ dị mkpa ka anyị nwee ihe ịga nke ọma n’alụmdi na nwunye n’agbanyeghị mgbalị Setan mere ime iji belata ndokwa ahụ ?\n", "2020-01-13 13:05:47,924 Example #2\n", "2020-01-13 13:05:47,924 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 13:05:47,925 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 13:05:47,925 \tHypothesis: Ha aghọwo ndị enyi na - eguzosi ike n’ihe nke ụmụnna Kraịst , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 13:05:47,925 Example #3\n", "2020-01-13 13:05:47,925 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 13:05:47,925 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 13:05:47,925 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ nke inweta mgbaghara Chineke .\n", "2020-01-13 13:05:47,926 Validation result (greedy) at epoch 30, step 152000: bleu: 32.01, loss: 35281.7812, ppl: 3.3608, duration: 30.2242s\n", "2020-01-13 13:05:59,569 Epoch 30 Step: 152100 Batch Loss: 1.413295 Tokens per Sec: 19739, Lr: 0.000300\n", "2020-01-13 13:06:11,173 Epoch 30 Step: 152200 Batch Loss: 1.367998 Tokens per Sec: 19942, Lr: 0.000300\n", "2020-01-13 13:06:22,543 Epoch 30 Step: 152300 Batch Loss: 1.498731 Tokens per Sec: 19779, Lr: 0.000300\n", "2020-01-13 13:06:34,131 Epoch 30 Step: 152400 Batch Loss: 1.434919 Tokens per Sec: 19719, Lr: 0.000300\n", "2020-01-13 13:06:45,499 Epoch 30 Step: 152500 Batch Loss: 1.225013 Tokens per Sec: 19614, Lr: 0.000300\n", "2020-01-13 13:06:57,049 Epoch 30 Step: 152600 Batch Loss: 1.618147 Tokens per Sec: 20318, Lr: 0.000300\n", "2020-01-13 13:07:08,537 Epoch 30 Step: 152700 Batch Loss: 1.291323 Tokens per Sec: 19509, Lr: 0.000300\n", "2020-01-13 13:07:20,129 Epoch 30 Step: 152800 Batch Loss: 1.265202 Tokens per Sec: 20075, Lr: 0.000300\n", "2020-01-13 13:07:31,631 Epoch 30 Step: 152900 Batch Loss: 1.481055 Tokens per Sec: 19496, Lr: 0.000300\n", "2020-01-13 13:07:43,274 Epoch 30 Step: 153000 Batch Loss: 1.384856 Tokens per Sec: 20221, Lr: 0.000300\n", "2020-01-13 13:08:13,372 Example #0\n", "2020-01-13 13:08:13,372 \tSource: Knowing that we have a heavenly Father who loves and cares for us is a vital step in overcoming feelings of anxiety .\n", "2020-01-13 13:08:13,372 \tReference: Otu ihe dị ezigbo mkpa ga - eme ka obi na - eru anyị ala bụ ịmata na anyị nwere Nna bí n’eluigwe , onye hụrụ anyị n’anya ma na - eche gbasara anyị .\n", "2020-01-13 13:08:13,373 \tHypothesis: Ịmara na anyị nwere Nna nke eluigwe nke hụrụ anyị n’anya ma na - eche banyere anyị bụ nzọụkwụ dị oké mkpa n’imeri nchegbu .\n", "2020-01-13 13:08:13,373 Example #1\n", "2020-01-13 13:08:13,373 \tSource: What is needed to make a success of marriage in spite of Satan’s efforts to undermine that arrangement ?\n", "2020-01-13 13:08:13,374 \tReference: Olee ihe dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị ndị Setan na - eme iji mebie ndokwa a ?\n", "2020-01-13 13:08:13,374 \tHypothesis: Gịnị dị mkpa iji mee ka alụmdi na nwunye nwee ihe ịga nke ọma n’agbanyeghị mgbalị Setan mere iji belata ndokwa ahụ ?\n", "2020-01-13 13:08:13,374 Example #2\n", "2020-01-13 13:08:13,374 \tSource: They have become the loyal companions of Christ’s brothers , giving valuable assistance in preaching “ this good news of the kingdom ” for a witness to all the nations .\n", "2020-01-13 13:08:13,374 \tReference: Ha aghọwo ezi ndị enyi nke ụmụnna Kraịst , na - enyere ha nnọọ aka n’ikwusa “ ozi ọma nke a nke alaeze ” ka ọ bụrụ àmà nye mba nile .\n", "2020-01-13 13:08:13,375 \tHypothesis: Ha aghọwo ndị enyi ụmụnna Kraịst na - eguzosi ike n’ihe , na - enye aka n’ikwusa “ ozi ọma nke a nke alaeze ” maka àmà nye mba nile .\n", "2020-01-13 13:08:13,375 Example #3\n", "2020-01-13 13:08:13,375 \tSource: That is the second step toward gaining God’s forgiveness .\n", "2020-01-13 13:08:13,375 \tReference: Nke ahụ bụ ihe nke abụọ mmadụ ga - eme ka Chineke wee gbaghara ya mmehie ya .\n", "2020-01-13 13:08:13,375 \tHypothesis: Nke ahụ bụ nzọụkwụ nke abụọ n’inweta mgbaghara Chineke .\n", "2020-01-13 13:08:13,376 Validation result (greedy) at epoch 30, step 153000: bleu: 32.41, loss: 35196.8438, ppl: 3.3510, duration: 30.0968s\n", "2020-01-13 13:08:22,594 Epoch 30: total training loss 6858.33\n", "2020-01-13 13:08:22,594 Training ended after 30 epochs.\n", "2020-01-13 13:08:22,595 Best validation result (greedy) at step 150000: 3.34 ppl.\n", "2020-01-13 13:08:53,492 dev bleu: 33.51 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-13 13:08:53,497 Translations saved to: /content/drive/My Drive/masakhane/en-ig-baseline/models/enig_transformer/00150000.hyps.dev\n", "2020-01-13 13:09:33,429 test bleu: 34.85 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-13 13:09:33,435 Translations saved to: /content/drive/My Drive/masakhane/en-ig-baseline/models/enig_transformer/00150000.hyps.test\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "MBoDS09JM807", "colab": {} }, "source": [ "# Copy the created models from the notebook storage to google drive for persistant storage \n", "!cp -r joeynmt/models/${src}${tgt}_transformer/* \"$gdrive_path/models/${src}${tgt}_transformer/\"" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "n94wlrCjVc17", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "outputId": "6063ada8-67aa-4b61-a891-2b559e52be8b" }, "source": [ "# Output our validation accuracy\n", "! cat \"$gdrive_path/models/${src}${tgt}_transformer/validations.txt\"" ], "execution_count": 5, "outputs": [ { "output_type": "stream", "text": [ "Steps: 3000\tLoss: 83568.36719\tPPL: 17.65772\tbleu: 6.67840\tLR: 0.00030000\t*\n", "Steps: 4000\tLoss: 77520.81250\tPPL: 14.34493\tbleu: 8.67495\tLR: 0.00030000\t*\n", "Steps: 5000\tLoss: 73115.91406\tPPL: 12.33026\tbleu: 11.28064\tLR: 0.00030000\t*\n", "Steps: 6000\tLoss: 69396.67969\tPPL: 10.85118\tbleu: 12.26420\tLR: 0.00030000\t*\n", "Steps: 7000\tLoss: 66300.96875\tPPL: 9.75631\tbleu: 13.61827\tLR: 0.00030000\t*\n", "Steps: 8000\tLoss: 63550.63672\tPPL: 8.87662\tbleu: 15.64658\tLR: 0.00030000\t*\n", "Steps: 9000\tLoss: 61479.98828\tPPL: 8.26706\tbleu: 16.98874\tLR: 0.00030000\t*\n", "Steps: 10000\tLoss: 60167.51562\tPPL: 7.90255\tbleu: 17.48440\tLR: 0.00030000\t*\n", "Steps: 11000\tLoss: 57920.73047\tPPL: 7.31548\tbleu: 18.17835\tLR: 0.00030000\t*\n", "Steps: 12000\tLoss: 56567.29297\tPPL: 6.98310\tbleu: 19.00077\tLR: 0.00030000\t*\n", "Steps: 13000\tLoss: 55469.25391\tPPL: 6.72456\tbleu: 19.48250\tLR: 0.00030000\t*\n", "Steps: 14000\tLoss: 54584.30469\tPPL: 6.52318\tbleu: 19.73311\tLR: 0.00030000\t*\n", "Steps: 15000\tLoss: 53304.84766\tPPL: 6.24265\tbleu: 21.19042\tLR: 0.00030000\t*\n", "Steps: 16000\tLoss: 52256.05078\tPPL: 6.02171\tbleu: 21.92399\tLR: 0.00030000\t*\n", "Steps: 17000\tLoss: 51747.31641\tPPL: 5.91737\tbleu: 22.14443\tLR: 0.00030000\t*\n", "Steps: 18000\tLoss: 50969.61328\tPPL: 5.76135\tbleu: 22.59666\tLR: 0.00030000\t*\n", "Steps: 19000\tLoss: 50282.28125\tPPL: 5.62689\tbleu: 22.21672\tLR: 0.00030000\t*\n", "Steps: 20000\tLoss: 49837.39453\tPPL: 5.54154\tbleu: 22.51348\tLR: 0.00030000\t*\n", "Steps: 21000\tLoss: 49994.65234\tPPL: 5.57156\tbleu: 22.34879\tLR: 0.00030000\t\n", "Steps: 22000\tLoss: 48712.21875\tPPL: 5.33140\tbleu: 23.90408\tLR: 0.00030000\t*\n", "Steps: 23000\tLoss: 48266.23828\tPPL: 5.25033\tbleu: 23.76070\tLR: 0.00030000\t*\n", "Steps: 24000\tLoss: 47492.01953\tPPL: 5.11252\tbleu: 23.99398\tLR: 0.00030000\t*\n", "Steps: 25000\tLoss: 47284.97656\tPPL: 5.07628\tbleu: 24.36099\tLR: 0.00030000\t*\n", "Steps: 26000\tLoss: 46902.22656\tPPL: 5.00996\tbleu: 24.64886\tLR: 0.00030000\t*\n", "Steps: 27000\tLoss: 46475.46484\tPPL: 4.93704\tbleu: 24.91732\tLR: 0.00030000\t*\n", "Steps: 28000\tLoss: 46186.91016\tPPL: 4.88834\tbleu: 24.93075\tLR: 0.00030000\t*\n", "Steps: 29000\tLoss: 45840.37109\tPPL: 4.83048\tbleu: 25.27666\tLR: 0.00030000\t*\n", "Steps: 30000\tLoss: 45774.98828\tPPL: 4.81964\tbleu: 24.95561\tLR: 0.00030000\t*\n", "Steps: 31000\tLoss: 45119.13672\tPPL: 4.71225\tbleu: 25.69623\tLR: 0.00030000\t*\n", "Steps: 32000\tLoss: 45010.52734\tPPL: 4.69470\tbleu: 25.93226\tLR: 0.00030000\t*\n", "Steps: 33000\tLoss: 44686.97656\tPPL: 4.64280\tbleu: 26.27874\tLR: 0.00030000\t*\n", "Steps: 34000\tLoss: 44360.42578\tPPL: 4.59101\tbleu: 26.24386\tLR: 0.00030000\t*\n", "Steps: 35000\tLoss: 44092.75000\tPPL: 4.54898\tbleu: 26.52347\tLR: 0.00030000\t*\n", "Steps: 36000\tLoss: 44133.37500\tPPL: 4.55533\tbleu: 26.56090\tLR: 0.00030000\t\n", "Steps: 37000\tLoss: 43614.83203\tPPL: 4.47489\tbleu: 26.94671\tLR: 0.00030000\t*\n", "Steps: 38000\tLoss: 43402.36328\tPPL: 4.44235\tbleu: 26.77713\tLR: 0.00030000\t*\n", "Steps: 39000\tLoss: 43109.53516\tPPL: 4.39788\tbleu: 27.12385\tLR: 0.00030000\t*\n", "Steps: 40000\tLoss: 42814.11719\tPPL: 4.35347\tbleu: 27.21125\tLR: 0.00030000\t*\n", "Steps: 41000\tLoss: 42751.39844\tPPL: 4.34409\tbleu: 26.84300\tLR: 0.00030000\t*\n", "Steps: 42000\tLoss: 42714.25781\tPPL: 4.33856\tbleu: 27.50681\tLR: 0.00030000\t*\n", "Steps: 43000\tLoss: 42399.37891\tPPL: 4.29187\tbleu: 27.76200\tLR: 0.00030000\t*\n", "Steps: 44000\tLoss: 42369.60156\tPPL: 4.28748\tbleu: 27.88503\tLR: 0.00030000\t*\n", "Steps: 45000\tLoss: 42453.73438\tPPL: 4.29989\tbleu: 27.24461\tLR: 0.00030000\t\n", "Steps: 46000\tLoss: 41889.99219\tPPL: 4.21741\tbleu: 27.43188\tLR: 0.00030000\t*\n", "Steps: 47000\tLoss: 41891.52734\tPPL: 4.21764\tbleu: 27.45075\tLR: 0.00030000\t\n", "Steps: 48000\tLoss: 41463.82812\tPPL: 4.15611\tbleu: 28.36278\tLR: 0.00030000\t*\n", "Steps: 49000\tLoss: 41426.28516\tPPL: 4.15075\tbleu: 28.19761\tLR: 0.00030000\t*\n", "Steps: 50000\tLoss: 41242.36719\tPPL: 4.12461\tbleu: 28.04727\tLR: 0.00030000\t*\n", "Steps: 51000\tLoss: 41116.91797\tPPL: 4.10687\tbleu: 28.68308\tLR: 0.00030000\t*\n", "Steps: 52000\tLoss: 40960.64062\tPPL: 4.08488\tbleu: 28.72994\tLR: 0.00030000\t*\n", "Steps: 53000\tLoss: 40996.71875\tPPL: 4.08994\tbleu: 28.54314\tLR: 0.00030000\t\n", "Steps: 54000\tLoss: 40663.82812\tPPL: 4.04343\tbleu: 28.72820\tLR: 0.00030000\t*\n", "Steps: 55000\tLoss: 40711.65234\tPPL: 4.05008\tbleu: 28.54645\tLR: 0.00030000\t\n", "Steps: 56000\tLoss: 40371.34375\tPPL: 4.00301\tbleu: 28.81082\tLR: 0.00030000\t*\n", "Steps: 57000\tLoss: 40384.28906\tPPL: 4.00479\tbleu: 28.97612\tLR: 0.00030000\t\n", "Steps: 58000\tLoss: 40312.20703\tPPL: 3.99488\tbleu: 29.02898\tLR: 0.00030000\t*\n", "Steps: 59000\tLoss: 40167.60938\tPPL: 3.97508\tbleu: 28.96208\tLR: 0.00030000\t*\n", "Steps: 60000\tLoss: 40124.05469\tPPL: 3.96914\tbleu: 28.66090\tLR: 0.00030000\t*\n", "Steps: 61000\tLoss: 39974.74609\tPPL: 3.94883\tbleu: 29.20435\tLR: 0.00030000\t*\n", "Steps: 62000\tLoss: 39907.77734\tPPL: 3.93975\tbleu: 29.42488\tLR: 0.00030000\t*\n", "Steps: 63000\tLoss: 39881.38672\tPPL: 3.93618\tbleu: 29.18782\tLR: 0.00030000\t*\n", "Steps: 64000\tLoss: 39645.29688\tPPL: 3.90439\tbleu: 29.49697\tLR: 0.00030000\t*\n", "Steps: 65000\tLoss: 39436.23828\tPPL: 3.87644\tbleu: 29.68634\tLR: 0.00030000\t*\n", "Steps: 66000\tLoss: 39632.55078\tPPL: 3.90268\tbleu: 29.69056\tLR: 0.00030000\t\n", "Steps: 67000\tLoss: 39369.90234\tPPL: 3.86762\tbleu: 29.50983\tLR: 0.00030000\t*\n", "Steps: 68000\tLoss: 39250.31641\tPPL: 3.85176\tbleu: 29.43483\tLR: 0.00030000\t*\n", "Steps: 69000\tLoss: 39097.39844\tPPL: 3.83158\tbleu: 29.29125\tLR: 0.00030000\t*\n", "Steps: 70000\tLoss: 39143.30469\tPPL: 3.83762\tbleu: 29.83764\tLR: 0.00030000\t\n", "Steps: 71000\tLoss: 38920.75391\tPPL: 3.80839\tbleu: 29.52076\tLR: 0.00030000\t*\n", "Steps: 72000\tLoss: 38924.00000\tPPL: 3.80882\tbleu: 29.97546\tLR: 0.00030000\t\n", "Steps: 73000\tLoss: 38899.25781\tPPL: 3.80558\tbleu: 30.53851\tLR: 0.00030000\t*\n", "Steps: 74000\tLoss: 39001.88281\tPPL: 3.81902\tbleu: 30.03282\tLR: 0.00030000\t\n", "Steps: 75000\tLoss: 38816.98047\tPPL: 3.79484\tbleu: 29.89008\tLR: 0.00030000\t*\n", "Steps: 76000\tLoss: 38396.95703\tPPL: 3.74047\tbleu: 30.25173\tLR: 0.00030000\t*\n", "Steps: 77000\tLoss: 38646.83594\tPPL: 3.77272\tbleu: 30.20167\tLR: 0.00030000\t\n", "Steps: 78000\tLoss: 38506.51562\tPPL: 3.75458\tbleu: 30.19281\tLR: 0.00030000\t\n", "Steps: 79000\tLoss: 38293.32422\tPPL: 3.72717\tbleu: 30.14734\tLR: 0.00030000\t*\n", "Steps: 80000\tLoss: 38362.47266\tPPL: 3.73604\tbleu: 30.20012\tLR: 0.00030000\t\n", "Steps: 81000\tLoss: 38221.57812\tPPL: 3.71800\tbleu: 30.71949\tLR: 0.00030000\t*\n", "Steps: 82000\tLoss: 38144.27734\tPPL: 3.70814\tbleu: 30.74893\tLR: 0.00030000\t*\n", "Steps: 83000\tLoss: 38377.18359\tPPL: 3.73793\tbleu: 30.54819\tLR: 0.00030000\t\n", "Steps: 84000\tLoss: 38040.39844\tPPL: 3.69493\tbleu: 30.56526\tLR: 0.00030000\t*\n", "Steps: 85000\tLoss: 37951.75781\tPPL: 3.68369\tbleu: 30.24329\tLR: 0.00030000\t*\n", "Steps: 86000\tLoss: 37918.74219\tPPL: 3.67952\tbleu: 30.55983\tLR: 0.00030000\t*\n", "Steps: 87000\tLoss: 37812.84375\tPPL: 3.66615\tbleu: 30.70135\tLR: 0.00030000\t*\n", "Steps: 88000\tLoss: 37695.82031\tPPL: 3.65144\tbleu: 30.78618\tLR: 0.00030000\t*\n", "Steps: 89000\tLoss: 37639.46875\tPPL: 3.64438\tbleu: 30.94853\tLR: 0.00030000\t*\n", "Steps: 90000\tLoss: 37498.48438\tPPL: 3.62677\tbleu: 30.86842\tLR: 0.00030000\t*\n", "Steps: 91000\tLoss: 37695.02734\tPPL: 3.65134\tbleu: 30.64309\tLR: 0.00030000\t\n", "Steps: 92000\tLoss: 37499.25781\tPPL: 3.62687\tbleu: 31.00045\tLR: 0.00030000\t\n", "Steps: 93000\tLoss: 37487.34375\tPPL: 3.62538\tbleu: 30.86697\tLR: 0.00030000\t*\n", "Steps: 94000\tLoss: 37562.56250\tPPL: 3.63476\tbleu: 30.70545\tLR: 0.00030000\t\n", "Steps: 95000\tLoss: 37418.16406\tPPL: 3.61677\tbleu: 30.63523\tLR: 0.00030000\t*\n", "Steps: 96000\tLoss: 37366.03516\tPPL: 3.61030\tbleu: 30.50881\tLR: 0.00030000\t*\n", "Steps: 97000\tLoss: 37499.60156\tPPL: 3.62691\tbleu: 31.12342\tLR: 0.00030000\t\n", "Steps: 98000\tLoss: 37291.81641\tPPL: 3.60111\tbleu: 30.98905\tLR: 0.00030000\t*\n", "Steps: 99000\tLoss: 37241.01953\tPPL: 3.59483\tbleu: 31.43791\tLR: 0.00030000\t*\n", "Steps: 100000\tLoss: 37314.00391\tPPL: 3.60385\tbleu: 31.04619\tLR: 0.00030000\t\n", "Steps: 101000\tLoss: 37252.94141\tPPL: 3.59630\tbleu: 31.47170\tLR: 0.00030000\t\n", "Steps: 102000\tLoss: 37017.06641\tPPL: 3.56727\tbleu: 30.96088\tLR: 0.00030000\t*\n", "Steps: 103000\tLoss: 37028.41016\tPPL: 3.56867\tbleu: 31.50601\tLR: 0.00030000\t\n", "Steps: 104000\tLoss: 36833.23828\tPPL: 3.54482\tbleu: 31.60679\tLR: 0.00030000\t*\n", "Steps: 105000\tLoss: 36887.79688\tPPL: 3.55147\tbleu: 31.45789\tLR: 0.00030000\t\n", "Steps: 106000\tLoss: 36941.38672\tPPL: 3.55801\tbleu: 30.65397\tLR: 0.00030000\t\n", "Steps: 107000\tLoss: 36944.26953\tPPL: 3.55836\tbleu: 31.43947\tLR: 0.00030000\t\n", "Steps: 108000\tLoss: 36782.40234\tPPL: 3.53863\tbleu: 30.92038\tLR: 0.00030000\t*\n", "Steps: 109000\tLoss: 36783.05469\tPPL: 3.53871\tbleu: 31.21205\tLR: 0.00030000\t\n", "Steps: 110000\tLoss: 36687.45703\tPPL: 3.52710\tbleu: 31.76447\tLR: 0.00030000\t*\n", "Steps: 111000\tLoss: 36765.83984\tPPL: 3.53662\tbleu: 31.69732\tLR: 0.00030000\t\n", "Steps: 112000\tLoss: 36432.13672\tPPL: 3.49630\tbleu: 31.62174\tLR: 0.00030000\t*\n", "Steps: 113000\tLoss: 36667.86719\tPPL: 3.52473\tbleu: 31.20313\tLR: 0.00030000\t\n", "Steps: 114000\tLoss: 36390.75781\tPPL: 3.49133\tbleu: 31.46945\tLR: 0.00030000\t*\n", "Steps: 115000\tLoss: 36508.37891\tPPL: 3.50547\tbleu: 31.86044\tLR: 0.00030000\t\n", "Steps: 116000\tLoss: 36496.36719\tPPL: 3.50402\tbleu: 31.21253\tLR: 0.00030000\t\n", "Steps: 117000\tLoss: 36319.22266\tPPL: 3.48276\tbleu: 31.77832\tLR: 0.00030000\t*\n", "Steps: 118000\tLoss: 36303.41406\tPPL: 3.48087\tbleu: 31.69550\tLR: 0.00030000\t*\n", "Steps: 119000\tLoss: 36508.13672\tPPL: 3.50544\tbleu: 31.84348\tLR: 0.00030000\t\n", "Steps: 120000\tLoss: 36251.60156\tPPL: 3.47468\tbleu: 31.47552\tLR: 0.00030000\t*\n", "Steps: 121000\tLoss: 36308.16797\tPPL: 3.48144\tbleu: 31.80225\tLR: 0.00030000\t\n", "Steps: 122000\tLoss: 36215.10156\tPPL: 3.47033\tbleu: 31.82576\tLR: 0.00030000\t*\n", "Steps: 123000\tLoss: 36300.74219\tPPL: 3.48055\tbleu: 32.12937\tLR: 0.00030000\t\n", "Steps: 124000\tLoss: 36175.83203\tPPL: 3.46565\tbleu: 31.85990\tLR: 0.00030000\t*\n", "Steps: 125000\tLoss: 35992.80859\tPPL: 3.44392\tbleu: 32.28213\tLR: 0.00030000\t*\n", "Steps: 126000\tLoss: 36044.96875\tPPL: 3.45010\tbleu: 31.96445\tLR: 0.00030000\t\n", "Steps: 127000\tLoss: 36066.25000\tPPL: 3.45262\tbleu: 31.85338\tLR: 0.00030000\t\n", "Steps: 128000\tLoss: 36190.07812\tPPL: 3.46734\tbleu: 32.14739\tLR: 0.00030000\t\n", "Steps: 129000\tLoss: 35890.21875\tPPL: 3.43181\tbleu: 32.15164\tLR: 0.00030000\t*\n", "Steps: 130000\tLoss: 35861.11328\tPPL: 3.42838\tbleu: 32.09584\tLR: 0.00030000\t*\n", "Steps: 131000\tLoss: 35857.83984\tPPL: 3.42799\tbleu: 32.12135\tLR: 0.00030000\t*\n", "Steps: 132000\tLoss: 35877.58594\tPPL: 3.43032\tbleu: 32.28765\tLR: 0.00030000\t\n", "Steps: 133000\tLoss: 35831.90234\tPPL: 3.42494\tbleu: 32.07184\tLR: 0.00030000\t*\n", "Steps: 134000\tLoss: 35833.25781\tPPL: 3.42510\tbleu: 32.19481\tLR: 0.00030000\t\n", "Steps: 135000\tLoss: 35694.85938\tPPL: 3.40885\tbleu: 32.14511\tLR: 0.00030000\t*\n", "Steps: 136000\tLoss: 35681.35547\tPPL: 3.40727\tbleu: 32.15160\tLR: 0.00030000\t*\n", "Steps: 137000\tLoss: 35481.60547\tPPL: 3.38396\tbleu: 32.48063\tLR: 0.00030000\t*\n", "Steps: 138000\tLoss: 35539.59375\tPPL: 3.39071\tbleu: 32.18120\tLR: 0.00030000\t\n", "Steps: 139000\tLoss: 35491.44141\tPPL: 3.38511\tbleu: 31.96799\tLR: 0.00030000\t\n", "Steps: 140000\tLoss: 35443.45703\tPPL: 3.37953\tbleu: 32.48048\tLR: 0.00030000\t*\n", "Steps: 141000\tLoss: 35394.01953\tPPL: 3.37380\tbleu: 32.25657\tLR: 0.00030000\t*\n", "Steps: 142000\tLoss: 35572.05469\tPPL: 3.39450\tbleu: 32.26613\tLR: 0.00030000\t\n", "Steps: 143000\tLoss: 35452.18359\tPPL: 3.38055\tbleu: 32.66673\tLR: 0.00030000\t\n", "Steps: 144000\tLoss: 35434.43750\tPPL: 3.37848\tbleu: 32.04748\tLR: 0.00030000\t\n", "Steps: 145000\tLoss: 35308.97656\tPPL: 3.36395\tbleu: 32.72358\tLR: 0.00030000\t*\n", "Steps: 146000\tLoss: 35516.01953\tPPL: 3.38797\tbleu: 32.49188\tLR: 0.00030000\t\n", "Steps: 147000\tLoss: 35249.86719\tPPL: 3.35713\tbleu: 32.79495\tLR: 0.00030000\t*\n", "Steps: 148000\tLoss: 35284.14062\tPPL: 3.36108\tbleu: 32.59983\tLR: 0.00030000\t\n", "Steps: 149000\tLoss: 35224.41016\tPPL: 3.35419\tbleu: 32.18214\tLR: 0.00030000\t*\n", "Steps: 150000\tLoss: 35125.55859\tPPL: 3.34282\tbleu: 32.38306\tLR: 0.00030000\t*\n", "Steps: 151000\tLoss: 35151.50781\tPPL: 3.34580\tbleu: 32.73611\tLR: 0.00030000\t\n", "Steps: 152000\tLoss: 35281.78125\tPPL: 3.36081\tbleu: 32.01410\tLR: 0.00030000\t\n", "Steps: 153000\tLoss: 35196.84375\tPPL: 3.35102\tbleu: 32.40648\tLR: 0.00030000\t\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "66WhRE9lIhoD", "colab": { "base_uri": "https://localhost:8080/", "height": 68 }, "outputId": "e6e62ffb-bcda-4525-9d75-694fcd42f069" }, "source": [ "# Test our model\n", "! cd joeynmt; python3 -m joeynmt test \"$gdrive_path/models/${src}${tgt}_transformer/config.yaml\"" ], "execution_count": 6, "outputs": [ { "output_type": "stream", "text": [ "2020-01-16 07:54:25,438 Hello! This is Joey-NMT.\n", "2020-01-16 07:55:11,822 dev bleu: 33.51 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-16 07:55:52,469 test bleu: 34.85 [Beam search decoding with beam size = 5 and alpha = 1.0]\n" ], "name": "stdout" } ] } ] }