{ "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": "03097f1d-1b9a-4283-ceab-7eecad1d483c", "colab": { "base_uri": "https://localhost:8080/", "height": 124 } }, "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 = \"yo\" \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": "18382b63-9a4b-4264-9fc2-08004c0d2e48", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "!echo $gdrive_path" ], "execution_count": 3, "outputs": [ { "output_type": "stream", "text": [ "/content/drive/My Drive/masakhane/en-yo-baseline\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "gA75Fs9ys8Y9", "outputId": "7e1f2c7c-c6ef-430d-8d2a-fc3016ffad01", "colab": { "base_uri": "https://localhost:8080/", "height": 124 } }, "source": [ "# Install opus-tools\n", "! pip install opustools-pkg" ], "execution_count": 4, "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 27.1MB/s eta 0:00:01\r\u001b[K |████████ | 20kB 2.9MB/s eta 0:00:01\r\u001b[K |████████████▏ | 30kB 4.3MB/s eta 0:00:01\r\u001b[K |████████████████▏ | 40kB 2.8MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 51kB 3.5MB/s eta 0:00:01\r\u001b[K |████████████████████████▎ | 61kB 4.2MB/s eta 0:00:01\r\u001b[K |████████████████████████████▎ | 71kB 4.8MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 81kB 4.0MB/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": "7a289989-f091-49ed-ef19-54e4174bc88c", "colab": { "base_uri": "https://localhost:8080/", "height": 208 } }, "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": 5, "outputs": [ { "output_type": "stream", "text": [ "\n", "Alignment file /proj/nlpl/data/OPUS/JW300/latest/xml/en-yo.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-yo.xml.gz\n", " 263 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/en.zip\n", " 58 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/yo.zip\n", "\n", " 325 MB Total size\n", "./JW300_latest_xml_en-yo.xml.gz ... 100% of 4 MB\n", "./JW300_latest_xml_en.zip ... 100% of 263 MB\n", "./JW300_latest_xml_yo.zip ... 100% of 58 MB\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "n48GDRnP8y2G", "colab_type": "code", "outputId": "ab5302df-8ac1-4088-e130-a3c0c9b96dbb", "colab": { "base_uri": "https://localhost:8080/", "height": 590 } }, "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": 6, "outputs": [ { "output_type": "stream", "text": [ "--2020-01-21 16:23:26-- 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-21 16:23:26 (8.85 MB/s) - ‘test.en-any.en’ saved [277791/277791]\n", "\n", "--2020-01-21 16:23:28-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-yo.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: 201994 (197K) [text/plain]\n", "Saving to: ‘test.en-yo.en’\n", "\n", "test.en-yo.en 100%[===================>] 197.26K --.-KB/s in 0.03s \n", "\n", "2020-01-21 16:23:29 (7.35 MB/s) - ‘test.en-yo.en’ saved [201994/201994]\n", "\n", "--2020-01-21 16:23:32-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-yo.yo\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: 280073 (274K) [text/plain]\n", "Saving to: ‘test.en-yo.yo’\n", "\n", "test.en-yo.yo 100%[===================>] 273.51K --.-KB/s in 0.03s \n", "\n", "2020-01-21 16:23:32 (8.51 MB/s) - ‘test.en-yo.yo’ saved [280073/280073]\n", "\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "NqDG-CI28y2L", "colab_type": "code", "outputId": "d31aae6c-d35b-4e3a-c0ea-e8f391652a45", "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": 7, "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": "ba66f662-b565-4df0-acfc-fcaf1e90370d", "colab": { "base_uri": "https://localhost:8080/", "height": 161 } }, "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": 8, "outputs": [ { "output_type": "stream", "text": [ "Loaded data and skipped 5663/474986 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 ?Lílo Àkàbà — Ǹjẹ́ O Máa Ń Ṣe Àyẹ̀wò Wọ̀nyí Tó...
1By Awake !Látọwọ́ akọ̀ròyìn Jí !
2correspondent in Irelandní Ireland
\n", "
" ], "text/plain": [ " source_sentence target_sentence\n", "0 Using Ladders — Do You Make These Safety Checks ? Lílo Àkàbà — Ǹjẹ́ O Máa Ń Ṣe Àyẹ̀wò Wọ̀nyí Tó...\n", "1 By Awake ! Látọwọ́ akọ̀ròyìn Jí !\n", "2 correspondent in Ireland ní Ireland" ] }, "metadata": { "tags": [] }, "execution_count": 8 } ] }, { "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": "5120d265-9464-4d26-8925-2b3a60bafa43", "colab": { "base_uri": "https://localhost:8080/", "height": 191 } }, "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": 9, "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": "f5f2d680-6b03-4da8-eba5-7c2b65e1079c", "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": 10, "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.6MB/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=144665 sha256=fd1515bba22c499853c139298a9add9ae7a8d737aefaf790fdef5254ca011a4b\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.62 0.24 percent complete\n", "00:00:38.87 0.48 percent complete\n", "00:00:58.47 0.72 percent complete\n", "00:01:17.94 0.96 percent complete\n", "00:01:37.80 1.20 percent complete\n", "00:01:57.53 1.43 percent complete\n", "00:02:17.17 1.67 percent complete\n", "00:02:36.74 1.91 percent complete\n", "00:02:55.76 2.15 percent complete\n", "00:03:14.93 2.39 percent complete\n", "00:03:33.46 2.63 percent complete\n", "00:03:53.03 2.87 percent complete\n", "00:04:12.56 3.11 percent complete\n", "00:04:33.17 3.35 percent complete\n", "00:04:52.85 3.59 percent complete\n", "00:05:12.30 3.82 percent complete\n", "00:05:31.70 4.06 percent complete\n", "00:05:51.01 4.30 percent complete\n", "00:06:09.94 4.54 percent complete\n", "00:06:29.30 4.78 percent complete\n", "00:06:48.41 5.02 percent complete\n", "00:07:08.50 5.26 percent complete\n", "00:07:28.03 5.50 percent complete\n", "00:07:47.48 5.74 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:08:07.18 5.98 percent complete\n", "00:08:26.95 6.22 percent complete\n", "00:08:46.17 6.45 percent complete\n", "00:09:05.54 6.69 percent complete\n", "00:09:24.48 6.93 percent complete\n", "00:09:44.94 7.17 percent complete\n", "00:10:04.68 7.41 percent complete\n", "00:10:23.79 7.65 percent complete\n", "00:10:42.93 7.89 percent complete\n", "00:11:01.29 8.13 percent complete\n", "00:11:19.77 8.37 percent complete\n", "00:11:38.11 8.61 percent complete\n", "00:11:57.24 8.84 percent complete\n", "00:12:16.38 9.08 percent complete\n", "00:12:35.37 9.32 percent complete\n", "00:12:54.20 9.56 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:13:13.30 9.80 percent complete\n", "00:13:31.85 10.04 percent complete\n", "00:13:50.72 10.28 percent complete\n", "00:14:09.44 10.52 percent complete\n", "00:14:27.98 10.76 percent complete\n", "00:14:47.84 11.00 percent complete\n", "00:15:07.03 11.24 percent complete\n", "00:15:25.84 11.47 percent complete\n", "00:15:44.35 11.71 percent complete\n", "00:16:03.08 11.95 percent complete\n", "00:16:22.63 12.19 percent complete\n", "00:16:42.32 12.43 percent complete\n", "00:17:01.34 12.67 percent complete\n", "00:17:21.43 12.91 percent complete\n", "00:17:40.27 13.15 percent complete\n", "00:17:58.78 13.39 percent complete\n", "00:18:17.63 13.63 percent complete\n", "00:18:36.65 13.86 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:18:55.58 14.10 percent complete\n", "00:19:13.84 14.34 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:19:32.29 14.58 percent complete\n", "00:19:51.94 14.82 percent complete\n", "00:20:10.28 15.06 percent complete\n", "00:20:28.54 15.30 percent complete\n", "00:20:47.07 15.54 percent complete\n", "00:21:05.89 15.78 percent complete\n", "00:21:25.50 16.02 percent complete\n", "00:21:43.73 16.26 percent complete\n", "00:22:02.15 16.49 percent complete\n", "00:22:21.46 16.73 percent complete\n", "00:22:40.80 16.97 percent complete\n", "00:22:59.36 17.21 percent complete\n", "00:23:17.84 17.45 percent complete\n", "00:23:35.85 17.69 percent complete\n", "00:23:54.39 17.93 percent complete\n", "00:24:12.90 18.17 percent complete\n", "00:24:30.76 18.41 percent complete\n", "00:24:49.37 18.65 percent complete\n", "00:25:08.36 18.88 percent complete\n", "00:25:26.58 19.12 percent complete\n", "00:25:45.01 19.36 percent complete\n", "00:26:03.81 19.60 percent complete\n", "00:26:22.49 19.84 percent complete\n", "00:26:41.05 20.08 percent complete\n", "00:26:58.97 20.32 percent complete\n", "00:27:17.36 20.56 percent complete\n", "00:27:36.45 20.80 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:27:55.44 21.04 percent complete\n", "00:28:13.96 21.28 percent complete\n", "00:28:32.59 21.51 percent complete\n", "00:28:51.27 21.75 percent complete\n", "00:29:09.53 21.99 percent complete\n", "00:29:28.05 22.23 percent complete\n", "00:29:47.21 22.47 percent complete\n", "00:30:05.99 22.71 percent complete\n", "00:30:24.83 22.95 percent complete\n", "00:30:43.50 23.19 percent complete\n", "00:31:01.26 23.43 percent complete\n", "00:31:19.92 23.67 percent complete\n", "00:31:38.25 23.90 percent complete\n", "00:31:56.96 24.14 percent complete\n", "00:32:15.59 24.38 percent complete\n", "00:32:34.99 24.62 percent complete\n", "00:32:53.40 24.86 percent complete\n", "00:33:11.86 25.10 percent complete\n", "00:33:30.48 25.34 percent complete\n", "00:33:48.92 25.58 percent complete\n", "00:34:07.22 25.82 percent complete\n", "00:34:25.54 26.06 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:34:43.80 26.29 percent complete\n", "00:35:02.98 26.53 percent complete\n", "00:35:21.95 26.77 percent complete\n", "00:35:40.60 27.01 percent complete\n", "00:35:59.19 27.25 percent complete\n", "00:36:17.89 27.49 percent complete\n", "00:36:36.61 27.73 percent complete\n", "00:36:55.44 27.97 percent complete\n", "00:37:14.28 28.21 percent complete\n", "00:37:34.08 28.45 percent complete\n", "00:37:52.48 28.69 percent complete\n", "00:38:11.36 28.92 percent complete\n", "00:38:29.64 29.16 percent complete\n", "00:38:48.55 29.40 percent complete\n", "00:39:06.68 29.64 percent complete\n", "00:39:25.26 29.88 percent complete\n", "00:39:43.63 30.12 percent complete\n", "00:40:02.94 30.36 percent complete\n", "00:40:21.91 30.60 percent complete\n", "00:40:40.69 30.84 percent complete\n", "00:40:59.50 31.08 percent complete\n", "00:41:18.10 31.31 percent complete\n", "00:41:36.83 31.55 percent complete\n", "00:41:55.20 31.79 percent complete\n", "00:42:13.90 32.03 percent complete\n", "00:42:33.68 32.27 percent complete\n", "00:42:52.56 32.51 percent complete\n", "00:43:10.97 32.75 percent complete\n", "00:43:29.56 32.99 percent complete\n", "00:43:47.92 33.23 percent complete\n", "00:44:06.25 33.47 percent complete\n", "00:44:24.32 33.71 percent complete\n", "00:44:42.56 33.94 percent complete\n", "00:45:01.95 34.18 percent complete\n", "00:45:20.52 34.42 percent complete\n", "00:45:38.82 34.66 percent complete\n", "00:45:57.10 34.90 percent complete\n", "00:46:15.80 35.14 percent complete\n", "00:46:33.88 35.38 percent complete\n", "00:46:52.41 35.62 percent complete\n", "00:47:11.25 35.86 percent complete\n", "00:47:30.51 36.10 percent complete\n", "00:47:49.28 36.33 percent complete\n", "00:48:07.40 36.57 percent complete\n", "00:48:25.73 36.81 percent complete\n", "00:48:44.53 37.05 percent complete\n", "00:49:02.59 37.29 percent complete\n", "00:49:21.82 37.53 percent complete\n", "00:49:40.73 37.77 percent complete\n", "00:49:58.75 38.01 percent complete\n", "00:50:17.25 38.25 percent complete\n", "00:50:35.33 38.49 percent complete\n", "00:50:53.75 38.73 percent complete\n", "00:51:12.11 38.96 percent complete\n", "00:51:30.58 39.20 percent complete\n", "00:51:48.88 39.44 percent complete\n", "00:52:07.95 39.68 percent complete\n", "00:52:26.39 39.92 percent complete\n", "00:52:45.57 40.16 percent complete\n", "00:53:04.37 40.40 percent complete\n", "00:53:22.38 40.64 percent complete\n", "00:53:40.80 40.88 percent complete\n", "00:53:59.44 41.12 percent complete\n", "00:54:18.21 41.35 percent complete\n", "00:54:36.72 41.59 percent complete\n", "00:54:55.55 41.83 percent complete\n", "00:55:15.06 42.07 percent complete\n", "00:55:33.01 42.31 percent complete\n", "00:55:51.62 42.55 percent complete\n", "00:56:10.71 42.79 percent complete\n", "00:56:29.35 43.03 percent complete\n", "00:56:47.45 43.27 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:06.04 43.51 percent complete\n", "00:57:24.85 43.75 percent complete\n", "00:57:44.12 43.98 percent complete\n", "00:58:02.12 44.22 percent complete\n", "00:58:20.85 44.46 percent complete\n", "00:58:40.45 44.70 percent complete\n", "00:58:59.56 44.94 percent complete\n", "00:59:19.29 45.18 percent complete\n", "00:59:38.22 45.42 percent complete\n", "00:59:56.75 45.66 percent complete\n", "01:00:16.58 45.90 percent complete\n", "01:00:34.73 46.14 percent complete\n", "01:00:53.06 46.37 percent complete\n", "01:01:11.67 46.61 percent complete\n", "01:01:30.49 46.85 percent complete\n", "01:01:48.65 47.09 percent complete\n", "01:02:08.04 47.33 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:02:26.57 47.57 percent complete\n", "01:02:46.44 47.81 percent complete\n", "01:03:05.10 48.05 percent complete\n", "01:03:23.77 48.29 percent complete\n", "01:03:42.62 48.53 percent complete\n", "01:04:01.65 48.77 percent complete\n", "01:04:20.25 49.00 percent complete\n", "01:04:38.41 49.24 percent complete\n", "01:04:56.63 49.48 percent complete\n", "01:05:16.45 49.72 percent complete\n", "01:05:35.48 49.96 percent complete\n", "01:05:53.35 50.20 percent complete\n", "01:06:11.84 50.44 percent complete\n", "01:06:30.09 50.68 percent complete\n", "01:06:48.84 50.92 percent complete\n", "01:07:07.71 51.16 percent complete\n", "01:07:26.40 51.39 percent complete\n", "01:07:45.94 51.63 percent complete\n", "01:08:04.23 51.87 percent complete\n", "01:08:22.80 52.11 percent complete\n", "01:08:42.03 52.35 percent complete\n", "01:09:01.27 52.59 percent complete\n", "01:09:20.45 52.83 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:09:38.94 53.07 percent complete\n", "01:09:57.32 53.31 percent complete\n", "01:10:16.58 53.55 percent complete\n", "01:10:35.06 53.79 percent complete\n", "01:10:54.01 54.02 percent complete\n", "01:11:12.42 54.26 percent complete\n", "01:11:30.86 54.50 percent complete\n", "01:11:49.60 54.74 percent complete\n", "01:12:08.24 54.98 percent complete\n", "01:12:26.57 55.22 percent complete\n", "01:12:45.65 55.46 percent complete\n", "01:13:04.17 55.70 percent complete\n", "01:13:22.79 55.94 percent complete\n", "01:13:41.30 56.18 percent complete\n", "01:13:59.73 56.41 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:14:18.89 56.65 percent complete\n", "01:14:37.39 56.89 percent complete\n", "01:14:56.03 57.13 percent complete\n", "01:15:15.13 57.37 percent complete\n", "01:15:33.99 57.61 percent complete\n", "01:15:52.70 57.85 percent complete\n", "01:16:11.24 58.09 percent complete\n", "01:16:29.90 58.33 percent complete\n", "01:16:48.61 58.57 percent complete\n", "01:17:08.01 58.81 percent complete\n", "01:17:27.25 59.04 percent complete\n", "01:17:47.11 59.28 percent complete\n", "01:18:05.96 59.52 percent complete\n", "01:18:24.73 59.76 percent complete\n", "01:18:43.18 60.00 percent complete\n", "01:19:01.97 60.24 percent complete\n", "01:19:20.15 60.48 percent complete\n", "01:19:39.09 60.72 percent complete\n", "01:19:57.95 60.96 percent complete\n", "01:20:17.25 61.20 percent complete\n", "01:20:36.46 61.43 percent complete\n", "01:20:54.45 61.67 percent complete\n", "01:21:13.23 61.91 percent complete\n", "01:21:32.32 62.15 percent complete\n", "01:21:51.75 62.39 percent complete\n", "01:22:10.57 62.63 percent complete\n", "01:22:28.75 62.87 percent complete\n", "01:22:47.87 63.11 percent complete\n", "01:23:06.68 63.35 percent complete\n", "01:23:25.63 63.59 percent complete\n", "01:23:44.42 63.83 percent complete\n", "01:24:03.32 64.06 percent complete\n", "01:24:22.12 64.30 percent complete\n", "01:24:41.06 64.54 percent complete\n", "01:24:59.61 64.78 percent complete\n", "01:25:18.53 65.02 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:25:37.34 65.26 percent complete\n", "01:25:55.56 65.50 percent complete\n", "01:26:13.70 65.74 percent complete\n", "01:26:32.70 65.98 percent complete\n", "01:26:51.29 66.22 percent complete\n", "01:27:10.08 66.45 percent complete\n", "01:27:28.77 66.69 percent complete\n", "01:27:47.49 66.93 percent complete\n", "01:28:07.07 67.17 percent complete\n", "01:28:25.66 67.41 percent complete\n", "01:28:44.05 67.65 percent complete\n", "01:29:02.84 67.89 percent complete\n", "01:29:20.95 68.13 percent complete\n", "01:29:39.94 68.37 percent complete\n", "01:29:58.57 68.61 percent complete\n", "01:30:17.04 68.85 percent complete\n", "01:30:36.42 69.08 percent complete\n", "01:30:55.25 69.32 percent complete\n", "01:31:14.00 69.56 percent complete\n", "01:31:31.82 69.80 percent complete\n", "01:31:50.05 70.04 percent complete\n", "01:32:08.54 70.28 percent complete\n", "01:32:27.76 70.52 percent complete\n", "01:32:46.47 70.76 percent complete\n", "01:33:06.31 71.00 percent complete\n", "01:33:25.21 71.24 percent complete\n", "01:33:44.40 71.47 percent complete\n", "01:34:02.65 71.71 percent complete\n", "01:34:21.11 71.95 percent complete\n", "01:34:39.77 72.19 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:34:59.09 72.43 percent complete\n", "01:35:17.59 72.67 percent complete\n", "01:35:37.09 72.91 percent complete\n", "01:35:55.92 73.15 percent complete\n", "01:36:14.56 73.39 percent complete\n", "01:36:33.25 73.63 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:36:52.29 73.86 percent complete\n", "01:37:11.15 74.10 percent complete\n", "01:37:29.58 74.34 percent complete\n", "01:37:48.38 74.58 percent complete\n", "01:38:08.69 74.82 percent complete\n", "01:38:27.32 75.06 percent complete\n", "01:38:45.93 75.30 percent complete\n", "01:39:04.71 75.54 percent complete\n", "01:39:23.31 75.78 percent complete\n", "01:39:41.46 76.02 percent complete\n", "01:39:59.63 76.26 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '․ ․ ․ ․ ․']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:40:18.36 76.49 percent complete\n", "01:40:38.09 76.73 percent complete\n", "01:40:56.50 76.97 percent complete\n", "01:41:15.09 77.21 percent complete\n", "01:41:34.25 77.45 percent complete\n", "01:41:52.93 77.69 percent complete\n", "01:42:11.38 77.93 percent complete\n", "01:42:30.32 78.17 percent complete\n", "01:42:49.31 78.41 percent complete\n", "01:43:09.28 78.65 percent complete\n", "01:43:28.27 78.88 percent complete\n", "01:43:46.40 79.12 percent complete\n", "01:44:05.30 79.36 percent complete\n", "01:44:24.42 79.60 percent complete\n", "01:44:42.89 79.84 percent complete\n", "01:45:01.27 80.08 percent complete\n", "01:45:20.08 80.32 percent complete\n", "01:45:39.83 80.56 percent complete\n", "01:45:58.65 80.80 percent complete\n", "01:46:17.32 81.04 percent complete\n", "01:46:35.50 81.28 percent complete\n", "01:46:54.40 81.51 percent complete\n", "01:47:12.70 81.75 percent complete\n", "01:47:31.23 81.99 percent complete\n", "01:47:49.81 82.23 percent complete\n", "01:48:08.64 82.47 percent complete\n", "01:48:27.84 82.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": [ "01:48:47.19 82.95 percent complete\n", "01:49:05.59 83.19 percent complete\n", "01:49:24.17 83.43 percent complete\n", "01:49:42.93 83.67 percent complete\n", "01:50:01.91 83.90 percent complete\n", "01:50:20.70 84.14 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:50:39.58 84.38 percent complete\n", "01:50:58.91 84.62 percent complete\n", "01:51:17.49 84.86 percent complete\n", "01:51:35.95 85.10 percent complete\n", "01:51:54.91 85.34 percent complete\n", "01:52:13.58 85.58 percent complete\n", "01:52:32.69 85.82 percent complete\n", "01:52:51.64 86.06 percent complete\n", "01:53:10.71 86.30 percent complete\n", "01:53:29.47 86.53 percent complete\n", "01:53:48.19 86.77 percent complete\n", "01:54:06.78 87.01 percent complete\n", "01:54:25.35 87.25 percent complete\n", "01:54:43.68 87.49 percent complete\n", "01:55:02.05 87.73 percent complete\n", "01:55:20.36 87.97 percent complete\n", "01:55:39.03 88.21 percent complete\n", "01:55:58.20 88.45 percent complete\n", "01:56:17.05 88.69 percent complete\n", "01:56:35.76 88.92 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:56:55.29 89.16 percent complete\n", "01:57:14.21 89.40 percent complete\n", "01:57:32.95 89.64 percent complete\n", "01:57:52.26 89.88 percent complete\n", "01:58:10.93 90.12 percent complete\n", "01:58:30.70 90.36 percent complete\n", "01:58:48.84 90.60 percent complete\n", "01:59:07.96 90.84 percent complete\n", "01:59:26.54 91.08 percent complete\n", "01:59:44.74 91.32 percent complete\n", "02:00:03.52 91.55 percent complete\n", "02:00:21.78 91.79 percent complete\n", "02:00:40.33 92.03 percent complete\n", "02:01:00.03 92.27 percent complete\n", "02:01:19.22 92.51 percent complete\n", "02:01:37.74 92.75 percent complete\n", "02:01:57.02 92.99 percent complete\n", "02:02:15.38 93.23 percent complete\n", "02:02:34.27 93.47 percent complete\n", "02:02:53.77 93.71 percent complete\n", "02:03:12.57 93.94 percent complete\n", "02:03:31.85 94.18 percent complete\n", "02:03:50.08 94.42 percent complete\n", "02:04:08.99 94.66 percent complete\n", "02:04:27.62 94.90 percent complete\n", "02:04:46.47 95.14 percent complete\n", "02:05:04.58 95.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": [ "02:05:23.47 95.62 percent complete\n", "02:05:41.66 95.86 percent complete\n", "02:06:01.08 96.10 percent complete\n", "02:06:19.74 96.34 percent complete\n", "02:06:38.08 96.57 percent complete\n", "02:06:56.29 96.81 percent complete\n", "02:07:15.01 97.05 percent complete\n", "02:07:32.97 97.29 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:07:51.51 97.53 percent complete\n", "02:08:10.33 97.77 percent complete\n", "02:08:29.75 98.01 percent complete\n", "02:08:47.94 98.25 percent complete\n", "02:09:06.43 98.49 percent complete\n", "02:09:24.52 98.73 percent complete\n", "02:09:43.32 98.96 percent complete\n", "02:10:01.52 99.20 percent complete\n", "02:10:20.36 99.44 percent complete\n", "02:10:39.06 99.68 percent complete\n", "02:10:58.18 99.92 percent complete\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "hxxBOCA-xXhy", "outputId": "6d586587-1157-4e8f-917d-bad538b13032", "colab": { "base_uri": "https://localhost:8080/", "height": 836 } }, "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": 11, "outputs": [ { "output_type": "stream", "text": [ "==> train.en <==\n", "TRAIN YOUR CHILDREN : “ I teach my children to check the expiration date of any packaged food items , such as snacks , before they buy them . ” ​ — Ruth , Nigeria\n", "When she replied that she was , he explained that he and his mother were trying to assist his sister with a school report on Canadians .\n", "Through the prophet Zephaniah , Jehovah answers : “ That day is a day of fury , a day of distress and of anguish , a day of storm and of desolation , a day of darkness and of gloominess , a day of clouds and of thick gloom . ”\n", "We do not require that people simply do as we tell them , but we give them convincing reasons to obey Christ’s command .\n", "Still , Jehovah can annihilate any rebel in the lake of fire , denying him any hope of a resurrection .\n", "Lucaris was arrested , and on July 27 , 1638 , he was taken on board a small boat as if for banishment .\n", "Yes , Jehovah remembered their faithful course .\n", "□ To appear tough\n", "During the ensuing confrontation , we Witnesses had to make our position clear to the agitated rebels and also explain our stand to the military guards .\n", "( See opening image . ) ( c ) Why should this Bible account about Samuel be of special interest to elders today ?\n", "\n", "==> train.yo <==\n", "KỌ́ ÀWỌN ỌMỌ RẸ : “ Mo kọ́ àwọn ọmọ mi pé kí wọ́n tó ra oúnjẹ bí ìpápánu , tó wà nínú agolo , ike , bébà , tàbí ọ̀rá , kí wọ́n máa yẹ ara oúnjẹ náà wò kí wọ́n lè mọ déètì tó máa bà jẹ́ . ” — Ruth , Nàìjíríà\n", "Nígbà tó sọ fún ọ̀dọ́kùnrin náà pé Kánádà lòun ti wá , ọ̀dọ́kùnrin náà sọ fún un pé òun àti màmá òun fẹ́ ran àbúrò òun obìnrin kan lọ́wọ́ láti kó ọ̀rọ̀ kan jọ nípa àwọn ará Kánádà , èyí tó fẹ́ mu lọ sílé ìwé .\n", "Jèhófà gbẹnu wòlíì Sefanáyà sọ ìdí rẹ̀ fún wa , ó ní : “ Ọjọ́ yẹn jẹ́ ọjọ́ ìbínú kíkan , ọjọ́ wàhálà àti làásìgbò , ọjọ́ ìjì àti ìsọdahoro , ọjọ́ òkùnkùn àti ìṣúdùdù , ọjọ́ àwọsánmà àti ìṣúdùdù tí ó nípọn . ”\n", "A ò fẹ́ káwọn èèyàn wulẹ̀ ṣe ohun tá a sọ fún wọn nìkan , àmọ́ à tún ń fún wọn ní ẹ̀rí tó dájú nípa ìdí tó fi yẹ kí wọ́n ṣègbọràn sí àṣẹ Kristi .\n", "Síbẹ̀ , Jèhófà lè pa ọlọ̀tẹ̀ èyíkéyìí run nípa sísọ ọ sínú adágún iná , tó túmọ̀ sí pé onítọ̀hún máa kú láìsí ìrètí kankan láti tún jíǹde .\n", "Ní wọ́n bá fi ọlọ́pàá mú Lucaris , nígbà tó sì di July 27 , 1638 , wọ́n fi ọkọ̀ ojú omi wà á lọ bí ẹni pé wọ́n fẹ́ gbé e lọ sí ilẹ̀ mìíràn .\n", "Bẹ́ẹ̀ ni o , Jèhófà kò gbàgbé ìṣòtítọ́ wọn .\n", "□ Kí wọ́n má bàa fojú ọ̀dẹ̀ wò mí\n", "Lákòókò tí àríyànjiyàn náà ń lọ lọ́wọ́ , àwa Ẹlẹ́rìí jẹ́ káwọn ọlọ̀tẹ̀ tínú ń bí yìí mọ̀ pé a ò lọ́wọ́ sí nǹkan tí wọ́n ń ṣe , a sì tún ṣàlàyé irú ẹni tá a jẹ́ fáwọn ológun tó ń ṣọ́ ọgbà ẹ̀wọ̀n náà .\n", "( Wo àwòrán tó wà níbẹ̀rẹ̀ àpilẹ̀kọ yìí . ) ( d ) Kí nìdí tó fi yẹ kí àwọn alàgbà lóde òní fún àkọsílẹ̀ Bíbélì yìí nípa Sámúẹ́lì láfiyèsí àrà ọ̀tọ̀ ?\n", "==> dev.en <==\n", "He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "Now I had to find a legitimate line of work .\n", "Do I value material things more than my relationship with Jehovah and with people ?\n", "He has far more experience and stamina than you do , but he patiently walks near you .\n", "According to Harkavy’s Students ’ Hebrew and Chaldee Dictionary , ʽadh means “ duration , everlastingness , eternity , for ever . ”\n", "Why is rendering proper honor to elders a concern ?\n", "Jeremiah would rather be alone than be corrupted by bad companions .\n", "In years gone by , we believed that Jehovah became displeased with his people because they did not have a zealous share in the preaching work during World War I .\n", "Rather , they need to use a translation of the Bible in their own language .\n", "On a more personal level , showing honor to those to whom it is due keeps us from becoming self - centered .\n", "\n", "==> dev.yo <==\n", "Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "Gẹ́gẹ́ bí Harkavy’s Students ’ Hebrew and Chaldee Dictionary ṣe sọ , ʽadh túmọ̀ sí “ àkókò gígùn , àìnípẹ̀kun , títí gbére , títí láé . ”\n", "Kí nìdí tí kò fi yẹ ká máa gbé àwọn alàgbà gẹ̀gẹ̀ ju bó ṣe yẹ lọ ?\n", "Jeremáyà gbà kóun dá wà ju pé káwọn ọ̀rẹ́ burúkú wá kéèràn ran òun .\n", "Láwọn ọdún mélòó kan sẹ́yìn , a gbà pé inú Jèhófà ò dùn sáwọn èèyàn rẹ̀ torí pé wọn ò fìtara wàásù lásìkò Ogun Àgbáyé Kìíní .\n", "Àfi kí wọ́n ka Bíbélì tí wọ́n tú sí èdè wọn .\n", "Tó bá ti mọ́ wa lára láti máa bọlá fáwọn míì , a ò ní máa ro tara wa nìkan .\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": "fbf0388a-a973-465a-b457-cfdf1bd3df79", "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": 12, "outputs": [ { "output_type": "stream", "text": [ "Cloning into 'joeynmt'...\n", "remote: Enumerating objects: 20, done.\u001b[K\n", "remote: Counting objects: 5% (1/20)\u001b[K\rremote: Counting objects: 10% (2/20)\u001b[K\rremote: Counting objects: 15% (3/20)\u001b[K\rremote: Counting objects: 20% (4/20)\u001b[K\rremote: Counting objects: 25% (5/20)\u001b[K\rremote: Counting objects: 30% (6/20)\u001b[K\rremote: Counting objects: 35% (7/20)\u001b[K\rremote: Counting objects: 40% (8/20)\u001b[K\rremote: Counting objects: 45% (9/20)\u001b[K\rremote: Counting objects: 50% (10/20)\u001b[K\rremote: Counting objects: 55% (11/20)\u001b[K\rremote: Counting objects: 60% (12/20)\u001b[K\rremote: Counting objects: 65% (13/20)\u001b[K\rremote: Counting objects: 70% (14/20)\u001b[K\rremote: Counting objects: 75% (15/20)\u001b[K\rremote: Counting objects: 80% (16/20)\u001b[K\rremote: Counting objects: 85% (17/20)\u001b[K\rremote: Counting objects: 90% (18/20)\u001b[K\rremote: Counting objects: 95% (19/20)\u001b[K\rremote: Counting objects: 100% (20/20)\u001b[K\rremote: Counting objects: 100% (20/20), done.\u001b[K\n", "remote: Compressing objects: 5% (1/17)\u001b[K\rremote: Compressing objects: 11% (2/17)\u001b[K\rremote: Compressing objects: 17% (3/17)\u001b[K\rremote: Compressing objects: 23% (4/17)\u001b[K\rremote: Compressing objects: 29% (5/17)\u001b[K\rremote: Compressing objects: 35% (6/17)\u001b[K\rremote: Compressing objects: 41% (7/17)\u001b[K\rremote: Compressing objects: 47% (8/17)\u001b[K\rremote: Compressing objects: 52% (9/17)\u001b[K\rremote: Compressing objects: 58% (10/17)\u001b[K\rremote: Compressing objects: 64% (11/17)\u001b[K\rremote: Compressing objects: 70% (12/17)\u001b[K\rremote: Compressing objects: 76% (13/17)\u001b[K\rremote: Compressing objects: 82% (14/17)\u001b[K\rremote: Compressing objects: 88% (15/17)\u001b[K\rremote: Compressing objects: 94% (16/17)\u001b[K\rremote: Compressing objects: 100% (17/17)\u001b[K\rremote: Compressing objects: 100% (17/17), done.\u001b[K\n", "Receiving objects: 0% (1/2204) \rReceiving objects: 1% (23/2204) \rReceiving objects: 2% (45/2204) \rReceiving objects: 3% (67/2204) \rReceiving objects: 4% (89/2204) \rReceiving objects: 5% (111/2204) \rReceiving objects: 6% (133/2204) \rReceiving objects: 7% (155/2204) \rReceiving objects: 8% (177/2204) \rReceiving objects: 9% (199/2204) \rReceiving objects: 10% (221/2204) \rReceiving objects: 11% (243/2204) \rReceiving objects: 12% (265/2204) \rReceiving objects: 13% (287/2204) \rReceiving objects: 14% (309/2204) \rReceiving objects: 15% (331/2204) \rReceiving objects: 16% (353/2204) \rReceiving objects: 17% (375/2204) \rReceiving objects: 18% (397/2204) \rReceiving objects: 19% (419/2204) \rReceiving objects: 20% (441/2204) \rReceiving objects: 21% (463/2204) \rReceiving objects: 22% (485/2204) \rReceiving objects: 23% (507/2204) \rReceiving objects: 24% (529/2204) \rReceiving objects: 25% (551/2204) \rReceiving objects: 26% (574/2204) \rReceiving objects: 27% (596/2204) \rReceiving objects: 28% (618/2204) \rReceiving objects: 29% (640/2204) \rReceiving objects: 30% (662/2204) \rReceiving objects: 31% (684/2204) \rReceiving objects: 32% (706/2204) \rReceiving objects: 33% (728/2204) \rReceiving objects: 34% (750/2204) \rReceiving objects: 35% (772/2204) \rReceiving objects: 36% (794/2204) \rReceiving objects: 37% (816/2204) \rReceiving objects: 38% (838/2204) \rReceiving objects: 39% (860/2204) \rReceiving objects: 40% (882/2204) \rReceiving objects: 41% (904/2204) \rReceiving objects: 42% (926/2204) \rReceiving objects: 43% (948/2204) \rReceiving objects: 44% (970/2204) \rReceiving objects: 45% (992/2204) \rReceiving objects: 46% (1014/2204) \rReceiving objects: 47% (1036/2204) \rReceiving objects: 48% (1058/2204) \rReceiving objects: 49% (1080/2204) \rReceiving objects: 50% (1102/2204) \rReceiving objects: 51% (1125/2204) \rReceiving objects: 52% (1147/2204) \rReceiving objects: 53% (1169/2204) \rReceiving objects: 54% (1191/2204) \rReceiving objects: 55% (1213/2204) \rReceiving objects: 56% (1235/2204) \rReceiving objects: 57% (1257/2204) \rReceiving objects: 58% (1279/2204) \rReceiving objects: 59% (1301/2204) \rReceiving objects: 60% (1323/2204) \rReceiving objects: 61% (1345/2204) \rReceiving objects: 62% (1367/2204) \rReceiving objects: 63% (1389/2204) \rReceiving objects: 64% (1411/2204) \rReceiving objects: 65% (1433/2204) \rReceiving objects: 66% (1455/2204) \rReceiving objects: 67% (1477/2204) \rReceiving objects: 68% (1499/2204) \rReceiving objects: 69% (1521/2204) \rReceiving objects: 70% (1543/2204) \rReceiving objects: 71% (1565/2204) \rReceiving objects: 72% (1587/2204) \rReceiving objects: 73% (1609/2204) \rReceiving objects: 74% (1631/2204) \rReceiving objects: 75% (1653/2204) \rReceiving objects: 76% (1676/2204) \rReceiving objects: 77% (1698/2204) \rReceiving objects: 78% (1720/2204) \rReceiving objects: 79% (1742/2204) \rReceiving objects: 80% (1764/2204) \rremote: Total 2204 (delta 8), reused 5 (delta 3), pack-reused 2184\u001b[K\n", "Receiving objects: 81% (1786/2204) \rReceiving objects: 82% (1808/2204) \rReceiving objects: 83% (1830/2204) \rReceiving objects: 84% (1852/2204) \rReceiving objects: 85% (1874/2204) \rReceiving objects: 86% (1896/2204) \rReceiving objects: 87% (1918/2204) \rReceiving objects: 88% (1940/2204) \rReceiving objects: 89% (1962/2204) \rReceiving objects: 90% (1984/2204) \rReceiving objects: 91% (2006/2204) \rReceiving objects: 92% (2028/2204) \rReceiving objects: 93% (2050/2204) \rReceiving objects: 94% (2072/2204) \rReceiving objects: 95% (2094/2204) \rReceiving objects: 96% (2116/2204) \rReceiving objects: 97% (2138/2204) \rReceiving objects: 98% (2160/2204) \rReceiving objects: 99% (2182/2204) \rReceiving objects: 100% (2204/2204) \rReceiving objects: 100% (2204/2204), 2.61 MiB | 7.76 MiB/s, done.\n", "Resolving deltas: 100% (1529/1529), 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 10.6MB/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 18.7MB/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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: scipy>=0.14.0 in /usr/local/lib/python3.6/dist-packages (from seaborn->joeynmt==0.0.1) (1.4.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", "Collecting isort<5,>=4.2.5\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/e5/b0/c121fd1fa3419ea9bfd55c7f9c4fedfec5143208d8c7ad3ce3db6c623c21/isort-4.3.21-py2.py3-none-any.whl (42kB)\n", "\u001b[K |████████████████████████████████| 51kB 9.3MB/s \n", "\u001b[?25hCollecting mccabe<0.7,>=0.6\n", " Downloading https://files.pythonhosted.org/packages/87/89/479dc97e18549e21354893e4ee4ef36db1d237534982482c3681ee6e7b57/mccabe-0.6.1-py2.py3-none-any.whl\n", "Collecting astroid<2.4,>=2.3.0\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/ad/ae/86734823047962e7b8c8529186a1ac4a7ca19aaf1aa0c7713c022ef593fd/astroid-2.3.3-py3-none-any.whl (205kB)\n", "\u001b[K |████████████████████████████████| 215kB 22.5MB/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: 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: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (3.0.4)\n", "Requirement already satisfied: idna<2.9,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (2.8)\n", "Requirement already satisfied: urllib3<1.25,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (1.24.3)\n", "Requirement already satisfied: 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 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 11.1MB/s \n", "\u001b[?25hCollecting 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 56kB/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=768a43442f19aab7311ddea6301dcbe387b1f35dfea59bf31533e4f7f3c01e07\n", " Stored in directory: /tmp/pip-ephem-wheel-cache-j1sy5ta1/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=aa7cac6c20fa36e91f1219823b78cebcdae10abcfab18f02c0aff6050f4b94d3\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, isort, mccabe, lazy-object-proxy, typed-ast, astroid, 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 number 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": "529df750-07e3-42ca-d77f-60f4022eedba", "colab": { "base_uri": "https://localhost:8080/", "height": 416 } }, "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 Yoruba Sentences\"\n", "! tail -n 5 test.bpe.$tgt\n", "! echo \"Combined BPE Vocab\"\n", "! tail -n 10 joeynmt/data/$src$tgt/vocab.txt # Herman" ], "execution_count": 13, "outputs": [ { "output_type": "stream", "text": [ "bpe.codes.4000\tdev.en\t test.bpe.yo test.yo\t train.en\n", "dev.bpe.en\tdev.yo\t test.en\t train.bpe.en train.yo\n", "dev.bpe.yo\ttest.bpe.en test.en-any.en train.bpe.yo\n", "bpe.codes.4000\tdev.en\ttest.bpe.en test.en-any.en train.bpe.en train.yo\n", "dev.bpe.en\tdev.yo\ttest.bpe.yo test.en-any.en.1 train.bpe.yo\n", "dev.bpe.yo\tmodels\ttest.en test.yo\t train.en\n", "BPE Yoruba Sentences\n", "A@@ p@@ at@@ a ńlá ti ìgbàgbọ́ ( Wo ìpín@@ rọ̀ 12 - 14 )\n", "À@@ ṣí@@ borí ìgb@@ àlà ( Wo ìpín@@ rọ̀ 15 - 18 )\n", "Mo ti rí i pé àwọn èèyàn máa ń fẹ́ gb@@ ọ́@@ rọ̀ wa tí wọ́n bá rí i pé a lóye Bíbélì dáadáa , a sì fẹ́ ran àwọn lọ́wọ́ . ”\n", "I@@ dà ẹ̀mí ( Wo ìpín@@ rọ̀ 19 - 20 )\n", "Ó dájú pé lọ́@@ lá ìt@@ ì@@ lẹ́yìn Jèhófà , a máa dúró gb@@ ọ@@ in - in , Èṣù ò sì ní rí wa gbé ṣe .\n", "Combined BPE Vocab\n", "œ@@\n", "Ísír@@\n", "Isra@@\n", "̃\n", "×\n", "ô\n", "ʺ\n", "bítì\n", "Pété@@\n", "Jóò@@\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "IlMitUHR8Qy-", "outputId": "dc358872-f17c-4dbf-c788-9ee943092180", "colab": { "base_uri": "https://localhost:8080/", "height": 69 } }, "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": 14, "outputs": [ { "output_type": "stream", "text": [ "bpe.codes.4000\tdev.en\ttest.bpe.en test.en-any.en train.bpe.en train.yo\n", "dev.bpe.en\tdev.yo\ttest.bpe.yo test.en-any.en.1 train.bpe.yo\n", "dev.bpe.yo\tmodels\ttest.en test.yo\t train.en\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: \"data/{name}/train.bpe\"\n", " dev: \"data/{name}/dev.bpe\"\n", " test: \"data/{name}/test.bpe\"\n", " level: \"bpe\"\n", " lowercase: False\n", " max_sent_length: 100\n", " src_vocab: \"data/{name}/vocab.txt\"\n", " trg_vocab: \"data/{name}/vocab.txt\"\n", "\n", "testing:\n", " beam_size: 5\n", " alpha: 1.0\n", "\n", "training:\n", " #load_model: \"{gdrive_path}/models/{name}_transformer/1.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: \"models/{name}_transformer\"\n", " overwrite: False # 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)" ], "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": "a44ef9c4-9750-4f10-e41b-630c9c2523b4", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "# Train the model\n", "# You can press Ctrl-C to stop. And then run the next cell to save your checkpoints! \n", "!cd joeynmt; python3 -m joeynmt train configs/transformer_$src$tgt.yaml" ], "execution_count": 16, "outputs": [ { "output_type": "stream", "text": [ "2020-01-21 18:46:07,171 Hello! This is Joey-NMT.\n", "2020-01-21 18:46:08,293 Total params: 12188160\n", "2020-01-21 18:46:08,295 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-21 18:46:17,335 cfg.name : enyo_transformer\n", "2020-01-21 18:46:17,335 cfg.data.src : en\n", "2020-01-21 18:46:17,335 cfg.data.trg : yo\n", "2020-01-21 18:46:17,335 cfg.data.train : data/enyo/train.bpe\n", "2020-01-21 18:46:17,335 cfg.data.dev : data/enyo/dev.bpe\n", "2020-01-21 18:46:17,335 cfg.data.test : data/enyo/test.bpe\n", "2020-01-21 18:46:17,335 cfg.data.level : bpe\n", "2020-01-21 18:46:17,335 cfg.data.lowercase : False\n", "2020-01-21 18:46:17,335 cfg.data.max_sent_length : 100\n", "2020-01-21 18:46:17,335 cfg.data.src_vocab : data/enyo/vocab.txt\n", "2020-01-21 18:46:17,335 cfg.data.trg_vocab : data/enyo/vocab.txt\n", "2020-01-21 18:46:17,335 cfg.testing.beam_size : 5\n", "2020-01-21 18:46:17,335 cfg.testing.alpha : 1.0\n", "2020-01-21 18:46:17,335 cfg.training.random_seed : 42\n", "2020-01-21 18:46:17,335 cfg.training.optimizer : adam\n", "2020-01-21 18:46:17,335 cfg.training.normalization : tokens\n", "2020-01-21 18:46:17,336 cfg.training.adam_betas : [0.9, 0.999]\n", "2020-01-21 18:46:17,336 cfg.training.scheduling : plateau\n", "2020-01-21 18:46:17,336 cfg.training.patience : 5\n", "2020-01-21 18:46:17,336 cfg.training.learning_rate_factor : 0.5\n", "2020-01-21 18:46:17,336 cfg.training.learning_rate_warmup : 1000\n", "2020-01-21 18:46:17,336 cfg.training.decrease_factor : 0.7\n", "2020-01-21 18:46:17,336 cfg.training.loss : crossentropy\n", "2020-01-21 18:46:17,336 cfg.training.learning_rate : 0.0003\n", "2020-01-21 18:46:17,336 cfg.training.learning_rate_min : 1e-08\n", "2020-01-21 18:46:17,336 cfg.training.weight_decay : 0.0\n", "2020-01-21 18:46:17,336 cfg.training.label_smoothing : 0.1\n", "2020-01-21 18:46:17,336 cfg.training.batch_size : 4096\n", "2020-01-21 18:46:17,336 cfg.training.batch_type : token\n", "2020-01-21 18:46:17,336 cfg.training.eval_batch_size : 3600\n", "2020-01-21 18:46:17,336 cfg.training.eval_batch_type : token\n", "2020-01-21 18:46:17,336 cfg.training.batch_multiplier : 1\n", "2020-01-21 18:46:17,336 cfg.training.early_stopping_metric : ppl\n", "2020-01-21 18:46:17,336 cfg.training.epochs : 30\n", "2020-01-21 18:46:17,336 cfg.training.validation_freq : 1000\n", "2020-01-21 18:46:17,336 cfg.training.logging_freq : 100\n", "2020-01-21 18:46:17,336 cfg.training.eval_metric : bleu\n", "2020-01-21 18:46:17,336 cfg.training.model_dir : models/enyo_transformer\n", "2020-01-21 18:46:17,336 cfg.training.overwrite : False\n", "2020-01-21 18:46:17,336 cfg.training.shuffle : True\n", "2020-01-21 18:46:17,336 cfg.training.use_cuda : True\n", "2020-01-21 18:46:17,336 cfg.training.max_output_length : 100\n", "2020-01-21 18:46:17,336 cfg.training.print_valid_sents : [0, 1, 2, 3]\n", "2020-01-21 18:46:17,336 cfg.training.keep_last_ckpts : 3\n", "2020-01-21 18:46:17,337 cfg.model.initializer : xavier\n", "2020-01-21 18:46:17,337 cfg.model.bias_initializer : zeros\n", "2020-01-21 18:46:17,337 cfg.model.init_gain : 1.0\n", "2020-01-21 18:46:17,337 cfg.model.embed_initializer : xavier\n", "2020-01-21 18:46:17,337 cfg.model.embed_init_gain : 1.0\n", "2020-01-21 18:46:17,337 cfg.model.tied_embeddings : True\n", "2020-01-21 18:46:17,337 cfg.model.tied_softmax : True\n", "2020-01-21 18:46:17,337 cfg.model.encoder.type : transformer\n", "2020-01-21 18:46:17,337 cfg.model.encoder.num_layers : 6\n", "2020-01-21 18:46:17,337 cfg.model.encoder.num_heads : 4\n", "2020-01-21 18:46:17,337 cfg.model.encoder.embeddings.embedding_dim : 256\n", "2020-01-21 18:46:17,337 cfg.model.encoder.embeddings.scale : True\n", "2020-01-21 18:46:17,337 cfg.model.encoder.embeddings.dropout : 0.2\n", "2020-01-21 18:46:17,337 cfg.model.encoder.hidden_size : 256\n", "2020-01-21 18:46:17,337 cfg.model.encoder.ff_size : 1024\n", "2020-01-21 18:46:17,337 cfg.model.encoder.dropout : 0.3\n", "2020-01-21 18:46:17,337 cfg.model.decoder.type : transformer\n", "2020-01-21 18:46:17,337 cfg.model.decoder.num_layers : 6\n", "2020-01-21 18:46:17,337 cfg.model.decoder.num_heads : 4\n", "2020-01-21 18:46:17,337 cfg.model.decoder.embeddings.embedding_dim : 256\n", "2020-01-21 18:46:17,337 cfg.model.decoder.embeddings.scale : True\n", "2020-01-21 18:46:17,337 cfg.model.decoder.embeddings.dropout : 0.2\n", "2020-01-21 18:46:17,337 cfg.model.decoder.hidden_size : 256\n", "2020-01-21 18:46:17,337 cfg.model.decoder.ff_size : 1024\n", "2020-01-21 18:46:17,337 cfg.model.decoder.dropout : 0.3\n", "2020-01-21 18:46:17,337 Data set sizes: \n", "\ttrain 415100,\n", "\tvalid 1000,\n", "\ttest 2662\n", "2020-01-21 18:46:17,338 First training example:\n", "\t[SRC] T@@ R@@ A@@ IN Y@@ O@@ U@@ R C@@ H@@ I@@ L@@ D@@ R@@ E@@ N : “ I teach my children to ch@@ ec@@ k the exp@@ ir@@ ation d@@ ate of any p@@ ack@@ aged food it@@ em@@ s , such as s@@ n@@ ac@@ ks , before they bu@@ y them . ” ​ — Ru@@ th , N@@ ig@@ er@@ ia\n", "\t[TRG] K@@ Ọ́ ÀWỌN Ọ@@ M@@ Ọ R@@ Ẹ : “ Mo kọ́ àwọn ọmọ mi pé kí wọ́n tó ra oúnjẹ bí ìp@@ á@@ p@@ án@@ u , tó wà nínú ag@@ ol@@ o , i@@ ke , bé@@ bà , tàbí ọ̀r@@ á , kí wọ́n máa yẹ ara oúnjẹ náà wò kí wọ́n lè mọ dé@@ è@@ tì tó máa bà jẹ́ . ” — Ru@@ th , N@@ àì@@ jí@@ ríà\n", "2020-01-21 18:46:17,338 First 10 words (src): (0) (1) (2) (3) (4) , (5) . (6) the (7) tó (8) a (9) to\n", "2020-01-21 18:46:17,338 First 10 words (trg): (0) (1) (2) (3) (4) , (5) . (6) the (7) tó (8) a (9) to\n", "2020-01-21 18:46:17,338 Number of Src words (types): 4406\n", "2020-01-21 18:46:17,339 Number of Trg words (types): 4406\n", "2020-01-21 18:46:17,339 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=4406),\n", "\ttrg_embed=Embeddings(embedding_dim=256, vocab_size=4406))\n", "2020-01-21 18:46:17,343 EPOCH 1\n", "2020-01-21 18:46:29,738 Epoch 1 Step: 100 Batch Loss: 5.656287 Tokens per Sec: 18685, Lr: 0.000300\n", "2020-01-21 18:46:41,318 Epoch 1 Step: 200 Batch Loss: 5.147936 Tokens per Sec: 19662, Lr: 0.000300\n", "2020-01-21 18:46:52,899 Epoch 1 Step: 300 Batch Loss: 5.057306 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-21 18:47:04,567 Epoch 1 Step: 400 Batch Loss: 4.943828 Tokens per Sec: 20133, Lr: 0.000300\n", "2020-01-21 18:47:16,233 Epoch 1 Step: 500 Batch Loss: 4.684788 Tokens per Sec: 19944, Lr: 0.000300\n", "2020-01-21 18:47:27,931 Epoch 1 Step: 600 Batch Loss: 4.356546 Tokens per Sec: 19851, Lr: 0.000300\n", "2020-01-21 18:47:39,512 Epoch 1 Step: 700 Batch Loss: 4.177900 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-21 18:47:51,167 Epoch 1 Step: 800 Batch Loss: 4.018668 Tokens per Sec: 19896, Lr: 0.000300\n", "2020-01-21 18:48:02,747 Epoch 1 Step: 900 Batch Loss: 3.917125 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-21 18:48:14,317 Epoch 1 Step: 1000 Batch Loss: 3.849607 Tokens per Sec: 19993, Lr: 0.000300\n", "2020-01-21 18:48:45,314 Hooray! New best validation result [ppl]!\n", "2020-01-21 18:48:45,314 Saving new checkpoint.\n", "2020-01-21 18:48:45,616 Example #0\n", "2020-01-21 18:48:45,617 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 18:48:45,617 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 18:48:45,617 \tHypothesis: Àwọn tó ń jẹ́ pé àwọn èèyàn máa ń ṣe àwọn èèyàn máa ń ṣe àwọn èèyàn .\n", "2020-01-21 18:48:45,617 Example #1\n", "2020-01-21 18:48:45,617 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 18:48:45,617 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 18:48:45,618 \tHypothesis: Ó jẹ́ pé àwọn èèyàn ló ń ṣe láti ṣe àwọn èèyàn .\n", "2020-01-21 18:48:45,618 Example #2\n", "2020-01-21 18:48:45,618 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 18:48:45,618 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 18:48:45,618 \tHypothesis: Kí ni Jésù ṣe ń ṣe láti ṣe láti ṣe láti ṣe ohun tó ń ṣe ?\n", "2020-01-21 18:48:45,618 Example #3\n", "2020-01-21 18:48:45,618 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 18:48:45,618 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 18:48:45,619 \tHypothesis: Àmọ́ , ó lè ṣe ohun tó ń ṣe láti ṣe láti ṣe ohun tó ń ṣe .\n", "2020-01-21 18:48:45,619 Validation result (greedy) at epoch 1, step 1000: bleu: 1.93, loss: 117977.8516, ppl: 52.4600, duration: 31.3014s\n", "2020-01-21 18:48:57,359 Epoch 1 Step: 1100 Batch Loss: 4.180024 Tokens per Sec: 20050, Lr: 0.000300\n", "2020-01-21 18:49:08,922 Epoch 1 Step: 1200 Batch Loss: 3.990859 Tokens per Sec: 19506, Lr: 0.000300\n", "2020-01-21 18:49:20,578 Epoch 1 Step: 1300 Batch Loss: 3.798725 Tokens per Sec: 20153, Lr: 0.000300\n", "2020-01-21 18:49:32,140 Epoch 1 Step: 1400 Batch Loss: 3.713028 Tokens per Sec: 19937, Lr: 0.000300\n", "2020-01-21 18:49:43,807 Epoch 1 Step: 1500 Batch Loss: 3.840855 Tokens per Sec: 20178, Lr: 0.000300\n", "2020-01-21 18:49:55,296 Epoch 1 Step: 1600 Batch Loss: 3.757548 Tokens per Sec: 19453, Lr: 0.000300\n", "2020-01-21 18:50:07,013 Epoch 1 Step: 1700 Batch Loss: 3.604757 Tokens per Sec: 20375, Lr: 0.000300\n", "2020-01-21 18:50:18,628 Epoch 1 Step: 1800 Batch Loss: 3.657390 Tokens per Sec: 19716, Lr: 0.000300\n", "2020-01-21 18:50:30,164 Epoch 1 Step: 1900 Batch Loss: 3.722323 Tokens per Sec: 20029, Lr: 0.000300\n", "2020-01-21 18:50:41,722 Epoch 1 Step: 2000 Batch Loss: 3.573566 Tokens per Sec: 19686, Lr: 0.000300\n", "2020-01-21 18:51:12,764 Hooray! New best validation result [ppl]!\n", "2020-01-21 18:51:12,765 Saving new checkpoint.\n", "2020-01-21 18:51:13,013 Example #0\n", "2020-01-21 18:51:13,014 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 18:51:13,014 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 18:51:13,014 \tHypothesis: Ó sọ pé àwọn ọmọ Ísírẹ́lì ni pé kí wọ́n máa ṣe iṣẹ́ òjíṣẹ́ rẹ̀ .\n", "2020-01-21 18:51:13,014 Example #1\n", "2020-01-21 18:51:13,014 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 18:51:13,014 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 18:51:13,014 \tHypothesis: Mo tún ń ṣe iṣẹ́ ìwàásù .\n", "2020-01-21 18:51:13,014 Example #2\n", "2020-01-21 18:51:13,014 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 18:51:13,014 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 18:51:13,014 \tHypothesis: Ṣé mo máa ń ṣe àwọn nǹkan tí mo bá ń ṣe iṣẹ́ ìwàásù Jèhófà , kí n sì máa ṣe iṣẹ́ ìwàásù Jèhófà ?\n", "2020-01-21 18:51:13,014 Example #3\n", "2020-01-21 18:51:13,015 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 18:51:13,015 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 18:51:13,015 \tHypothesis: Ó sì tún máa ń ṣe ohun tó o bá ń ṣe , ó sì máa ń ṣe , ó sì máa ń ṣe ohun tó o bá ń ṣe .\n", "2020-01-21 18:51:13,015 Validation result (greedy) at epoch 1, step 2000: bleu: 3.07, loss: 101346.5781, ppl: 30.0182, duration: 31.2930s\n", "2020-01-21 18:51:24,759 Epoch 1 Step: 2100 Batch Loss: 3.648601 Tokens per Sec: 19812, Lr: 0.000300\n", "2020-01-21 18:51:36,278 Epoch 1 Step: 2200 Batch Loss: 3.275335 Tokens per Sec: 19722, Lr: 0.000300\n", "2020-01-21 18:51:47,929 Epoch 1 Step: 2300 Batch Loss: 3.488785 Tokens per Sec: 20160, Lr: 0.000300\n", "2020-01-21 18:51:59,473 Epoch 1 Step: 2400 Batch Loss: 3.450368 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-21 18:52:11,050 Epoch 1 Step: 2500 Batch Loss: 3.431213 Tokens per Sec: 19967, Lr: 0.000300\n", "2020-01-21 18:52:22,621 Epoch 1 Step: 2600 Batch Loss: 3.195451 Tokens per Sec: 19753, Lr: 0.000300\n", "2020-01-21 18:52:34,194 Epoch 1 Step: 2700 Batch Loss: 3.524967 Tokens per Sec: 19625, Lr: 0.000300\n", "2020-01-21 18:52:45,952 Epoch 1 Step: 2800 Batch Loss: 2.981357 Tokens per Sec: 19964, Lr: 0.000300\n", "2020-01-21 18:52:57,482 Epoch 1 Step: 2900 Batch Loss: 3.126961 Tokens per Sec: 19606, Lr: 0.000300\n", "2020-01-21 18:53:08,982 Epoch 1 Step: 3000 Batch Loss: 3.100469 Tokens per Sec: 19951, Lr: 0.000300\n", "2020-01-21 18:53:40,048 Hooray! New best validation result [ppl]!\n", "2020-01-21 18:53:40,049 Saving new checkpoint.\n", "2020-01-21 18:53:40,282 Example #0\n", "2020-01-21 18:53:40,282 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 18:53:40,282 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 18:53:40,282 \tHypothesis: Ó ní láti máa ṣe ohun tó yẹ ká máa ṣe , ó sì máa ṣe pàtàkì jù lọ nínú ìgbésí ayé .\n", "2020-01-21 18:53:40,283 Example #1\n", "2020-01-21 18:53:40,283 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 18:53:40,283 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 18:53:40,283 \tHypothesis: Mo wá ń fi àwọn ohun tó ń ṣẹlẹ̀ sí i .\n", "2020-01-21 18:53:40,283 Example #2\n", "2020-01-21 18:53:40,283 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 18:53:40,283 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 18:53:40,283 \tHypothesis: Ṣé mo máa ń ṣe àwọn èèyàn Jèhófà , kí n sì máa ṣe iṣẹ́ ìsìn mi ?\n", "2020-01-21 18:53:40,283 Example #3\n", "2020-01-21 18:53:40,283 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 18:53:40,283 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 18:53:40,283 \tHypothesis: Ó sì tún máa ń ṣe ohun tó o bá ń ṣe , àmọ́ ó máa ń ṣe , àmọ́ ó máa ń bá a lọ .\n", "2020-01-21 18:53:40,284 Validation result (greedy) at epoch 1, step 3000: bleu: 4.43, loss: 92669.5781, ppl: 22.4334, duration: 31.3011s\n", "2020-01-21 18:53:51,857 Epoch 1 Step: 3100 Batch Loss: 3.202907 Tokens per Sec: 19805, Lr: 0.000300\n", "2020-01-21 18:54:03,301 Epoch 1 Step: 3200 Batch Loss: 3.025557 Tokens per Sec: 19234, Lr: 0.000300\n", "2020-01-21 18:54:14,981 Epoch 1 Step: 3300 Batch Loss: 3.160177 Tokens per Sec: 20030, Lr: 0.000300\n", "2020-01-21 18:54:26,536 Epoch 1 Step: 3400 Batch Loss: 3.663591 Tokens per Sec: 19880, Lr: 0.000300\n", "2020-01-21 18:54:38,083 Epoch 1 Step: 3500 Batch Loss: 2.943122 Tokens per Sec: 19864, Lr: 0.000300\n", "2020-01-21 18:54:49,696 Epoch 1 Step: 3600 Batch Loss: 3.034697 Tokens per Sec: 20157, Lr: 0.000300\n", "2020-01-21 18:55:01,298 Epoch 1 Step: 3700 Batch Loss: 2.980076 Tokens per Sec: 19681, Lr: 0.000300\n", "2020-01-21 18:55:12,926 Epoch 1 Step: 3800 Batch Loss: 3.136538 Tokens per Sec: 20037, Lr: 0.000300\n", "2020-01-21 18:55:24,644 Epoch 1 Step: 3900 Batch Loss: 3.048571 Tokens per Sec: 20103, Lr: 0.000300\n", "2020-01-21 18:55:36,189 Epoch 1 Step: 4000 Batch Loss: 2.951175 Tokens per Sec: 19370, Lr: 0.000300\n", "2020-01-21 18:56:07,235 Hooray! New best validation result [ppl]!\n", "2020-01-21 18:56:07,236 Saving new checkpoint.\n", "2020-01-21 18:56:07,517 Example #0\n", "2020-01-21 18:56:07,518 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 18:56:07,518 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 18:56:07,518 \tHypothesis: Ó fi hàn pé ó ń ṣe ohun tó ń ṣẹlẹ̀ sí i , ó sì ń mú kí ìgbàgbọ́ wa lágbára .\n", "2020-01-21 18:56:07,518 Example #1\n", "2020-01-21 18:56:07,518 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 18:56:07,518 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 18:56:07,518 \tHypothesis: Mo wá bẹ̀rẹ̀ sí í ṣe iṣẹ́ ìwàásù .\n", "2020-01-21 18:56:07,518 Example #2\n", "2020-01-21 18:56:07,518 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 18:56:07,518 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 18:56:07,518 \tHypothesis: Ǹjẹ́ mo máa ń ṣe àwọn nǹkan tẹ̀mí tí mo bá ń ṣe àti àjọṣe tímọ́tímọ́ pẹ̀lú Jèhófà ?\n", "2020-01-21 18:56:07,519 Example #3\n", "2020-01-21 18:56:07,519 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 18:56:07,519 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 18:56:07,519 \tHypothesis: Ó ti rí i pé ó ti ń ṣe ẹ́ , ó sì ń mú kó o máa ṣe ohun tó o bá ń ṣe .\n", "2020-01-21 18:56:07,519 Validation result (greedy) at epoch 1, step 4000: bleu: 5.92, loss: 86711.9062, ppl: 18.3674, duration: 31.3293s\n", "2020-01-21 18:56:19,220 Epoch 1 Step: 4100 Batch Loss: 3.026264 Tokens per Sec: 19848, Lr: 0.000300\n", "2020-01-21 18:56:30,797 Epoch 1 Step: 4200 Batch Loss: 2.960808 Tokens per Sec: 19942, Lr: 0.000300\n", "2020-01-21 18:56:42,406 Epoch 1 Step: 4300 Batch Loss: 2.888326 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-21 18:56:54,058 Epoch 1 Step: 4400 Batch Loss: 2.928875 Tokens per Sec: 20188, Lr: 0.000300\n", "2020-01-21 18:57:05,679 Epoch 1 Step: 4500 Batch Loss: 3.219403 Tokens per Sec: 20473, Lr: 0.000300\n", "2020-01-21 18:57:17,217 Epoch 1 Step: 4600 Batch Loss: 3.077062 Tokens per Sec: 19897, Lr: 0.000300\n", "2020-01-21 18:57:28,820 Epoch 1 Step: 4700 Batch Loss: 2.667166 Tokens per Sec: 19757, Lr: 0.000300\n", "2020-01-21 18:57:40,486 Epoch 1 Step: 4800 Batch Loss: 3.127609 Tokens per Sec: 20272, Lr: 0.000300\n", "2020-01-21 18:57:52,129 Epoch 1 Step: 4900 Batch Loss: 2.537746 Tokens per Sec: 20002, Lr: 0.000300\n", "2020-01-21 18:58:03,740 Epoch 1 Step: 5000 Batch Loss: 3.397305 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-21 18:58:34,707 Hooray! New best validation result [ppl]!\n", "2020-01-21 18:58:34,708 Saving new checkpoint.\n", "2020-01-21 18:58:34,996 Example #0\n", "2020-01-21 18:58:34,996 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 18:58:34,996 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 18:58:34,996 \tHypothesis: Ó ní láti máa ṣe ohun tó yẹ ká máa ṣe , ó sì máa ń jẹ́ kí Kristi máa fi hàn pé ó máa ṣe ohun tó yẹ ká máa ṣe .\n", "2020-01-21 18:58:34,996 Example #1\n", "2020-01-21 18:58:34,996 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 18:58:34,996 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 18:58:34,996 \tHypothesis: Mo ti wá bẹ̀rẹ̀ sí í ṣe iṣẹ́ àṣekára .\n", "2020-01-21 18:58:34,996 Example #2\n", "2020-01-21 18:58:34,996 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 18:58:34,996 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 18:58:34,996 \tHypothesis: Ṣé mo máa ń ṣe àwọn nǹkan tó wà nínú ìdílé mi àti àjọṣe tí mo ní pẹ̀lú Jèhófà ?\n", "2020-01-21 18:58:34,997 Example #3\n", "2020-01-21 18:58:34,997 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 18:58:34,997 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 18:58:34,997 \tHypothesis: Ó ti rí i pé ó ti ń ṣe ẹ́ bíi pé ó máa ń ṣe ẹ́ , àmọ́ ó máa ń mú kó o máa bá a nìṣó .\n", "2020-01-21 18:58:34,997 Validation result (greedy) at epoch 1, step 5000: bleu: 6.93, loss: 81824.3047, ppl: 15.5883, duration: 31.2568s\n", "2020-01-21 18:58:46,626 Epoch 1 Step: 5100 Batch Loss: 3.215042 Tokens per Sec: 19699, Lr: 0.000300\n", "2020-01-21 18:58:58,166 Epoch 1 Step: 5200 Batch Loss: 2.809066 Tokens per Sec: 20175, Lr: 0.000300\n", "2020-01-21 18:59:04,231 Epoch 1: total training loss 18611.18\n", "2020-01-21 18:59:04,231 EPOCH 2\n", "2020-01-21 18:59:10,353 Epoch 2 Step: 5300 Batch Loss: 2.832892 Tokens per Sec: 17827, Lr: 0.000300\n", "2020-01-21 18:59:21,998 Epoch 2 Step: 5400 Batch Loss: 2.906056 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-21 18:59:33,617 Epoch 2 Step: 5500 Batch Loss: 2.962461 Tokens per Sec: 19634, Lr: 0.000300\n", "2020-01-21 18:59:45,184 Epoch 2 Step: 5600 Batch Loss: 2.664299 Tokens per Sec: 20305, Lr: 0.000300\n", "2020-01-21 18:59:56,726 Epoch 2 Step: 5700 Batch Loss: 2.722507 Tokens per Sec: 19849, Lr: 0.000300\n", "2020-01-21 19:00:08,311 Epoch 2 Step: 5800 Batch Loss: 2.996746 Tokens per Sec: 20218, Lr: 0.000300\n", "2020-01-21 19:00:19,867 Epoch 2 Step: 5900 Batch Loss: 2.417112 Tokens per Sec: 19932, Lr: 0.000300\n", "2020-01-21 19:00:31,475 Epoch 2 Step: 6000 Batch Loss: 2.899853 Tokens per Sec: 20233, Lr: 0.000300\n", "2020-01-21 19:01:02,463 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:01:02,463 Saving new checkpoint.\n", "2020-01-21 19:01:02,749 Example #0\n", "2020-01-21 19:01:02,749 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:01:02,749 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:01:02,749 \tHypothesis: Ó jẹ́ ká mọ̀ pé òun ni Ọba ayé , ó ní láti fi hàn pé òun nífẹ̀ẹ́ òun .\n", "2020-01-21 19:01:02,749 Example #1\n", "2020-01-21 19:01:02,750 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:01:02,750 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:01:02,750 \tHypothesis: Ní báyìí , mo ti rí i pé mo ti ń ṣiṣẹ́ kára .\n", "2020-01-21 19:01:02,750 Example #2\n", "2020-01-21 19:01:02,750 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:01:02,750 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:01:02,750 \tHypothesis: Ṣé mo máa ń ní àwọn ohun tó dára jù lọ nínú Jèhófà àti àwọn èèyàn mi ?\n", "2020-01-21 19:01:02,750 Example #3\n", "2020-01-21 19:01:02,750 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:01:02,751 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:01:02,751 \tHypothesis: Ó ti rí i pé ó ti ṣe ẹ́ láǹfààní , àmọ́ ó máa ń mú kó o máa rìn .\n", "2020-01-21 19:01:02,751 Validation result (greedy) at epoch 2, step 6000: bleu: 9.44, loss: 78232.5078, ppl: 13.8178, duration: 31.2756s\n", "2020-01-21 19:01:14,392 Epoch 2 Step: 6100 Batch Loss: 2.712258 Tokens per Sec: 20007, Lr: 0.000300\n", "2020-01-21 19:01:26,089 Epoch 2 Step: 6200 Batch Loss: 3.253509 Tokens per Sec: 19756, Lr: 0.000300\n", "2020-01-21 19:01:37,666 Epoch 2 Step: 6300 Batch Loss: 2.840069 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-21 19:01:49,234 Epoch 2 Step: 6400 Batch Loss: 2.618585 Tokens per Sec: 19995, Lr: 0.000300\n", "2020-01-21 19:02:00,783 Epoch 2 Step: 6500 Batch Loss: 2.642585 Tokens per Sec: 19820, Lr: 0.000300\n", "2020-01-21 19:02:12,371 Epoch 2 Step: 6600 Batch Loss: 2.524968 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-21 19:02:23,960 Epoch 2 Step: 6700 Batch Loss: 2.759065 Tokens per Sec: 20185, Lr: 0.000300\n", "2020-01-21 19:02:35,551 Epoch 2 Step: 6800 Batch Loss: 2.898260 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 19:02:47,095 Epoch 2 Step: 6900 Batch Loss: 2.796163 Tokens per Sec: 20216, Lr: 0.000300\n", "2020-01-21 19:02:58,563 Epoch 2 Step: 7000 Batch Loss: 2.880634 Tokens per Sec: 20331, Lr: 0.000300\n", "2020-01-21 19:03:29,429 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:03:29,429 Saving new checkpoint.\n", "2020-01-21 19:03:29,686 Example #0\n", "2020-01-21 19:03:29,687 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:03:29,687 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:03:29,687 \tHypothesis: Ó ń fi ìgbésí ayé wa hàn , ó sì ń fún un ní ìtọ́ni tó yẹ ká máa fi hàn pé òun ni òun .\n", "2020-01-21 19:03:29,687 Example #1\n", "2020-01-21 19:03:29,687 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:03:29,687 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:03:29,688 \tHypothesis: Mo ti rí i pé mo ti rí iṣẹ́ tó dára jù lọ .\n", "2020-01-21 19:03:29,688 Example #2\n", "2020-01-21 19:03:29,688 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:03:29,688 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:03:29,688 \tHypothesis: Ṣé mo ní àwọn nǹkan tó dára ju àjọṣe mi pẹ̀lú Jèhófà lọ àti àwọn èèyàn mi ?\n", "2020-01-21 19:03:29,688 Example #3\n", "2020-01-21 19:03:29,688 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:03:29,688 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:03:29,688 \tHypothesis: Ó ti rí i pé ó ti ń ṣe ẹ́ , àmọ́ ó máa ń bá a lọ ní sùúrù .\n", "2020-01-21 19:03:29,689 Validation result (greedy) at epoch 2, step 7000: bleu: 10.38, loss: 75421.1875, ppl: 12.5735, duration: 31.1256s\n", "2020-01-21 19:03:41,175 Epoch 2 Step: 7100 Batch Loss: 2.549865 Tokens per Sec: 19499, Lr: 0.000300\n", "2020-01-21 19:03:52,811 Epoch 2 Step: 7200 Batch Loss: 2.661967 Tokens per Sec: 20250, Lr: 0.000300\n", "2020-01-21 19:04:04,343 Epoch 2 Step: 7300 Batch Loss: 2.646996 Tokens per Sec: 19884, Lr: 0.000300\n", "2020-01-21 19:04:15,877 Epoch 2 Step: 7400 Batch Loss: 2.167614 Tokens per Sec: 20253, Lr: 0.000300\n", "2020-01-21 19:04:27,401 Epoch 2 Step: 7500 Batch Loss: 2.430686 Tokens per Sec: 20046, Lr: 0.000300\n", "2020-01-21 19:04:39,020 Epoch 2 Step: 7600 Batch Loss: 2.658189 Tokens per Sec: 20201, Lr: 0.000300\n", "2020-01-21 19:04:50,587 Epoch 2 Step: 7700 Batch Loss: 2.774623 Tokens per Sec: 19753, Lr: 0.000300\n", "2020-01-21 19:05:02,055 Epoch 2 Step: 7800 Batch Loss: 2.499649 Tokens per Sec: 19963, Lr: 0.000300\n", "2020-01-21 19:05:13,602 Epoch 2 Step: 7900 Batch Loss: 2.439150 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-21 19:05:25,140 Epoch 2 Step: 8000 Batch Loss: 2.405392 Tokens per Sec: 19984, Lr: 0.000300\n", "2020-01-21 19:05:56,012 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:05:56,012 Saving new checkpoint.\n", "2020-01-21 19:05:56,262 Example #0\n", "2020-01-21 19:05:56,263 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:05:56,263 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:05:56,263 \tHypothesis: Ó jẹ́ ká ní ìyè àìnípẹ̀kun , gẹ́gẹ́ bí ẹni tó ń fúnni ní ẹ̀bùn tó yẹ ká máa fi hàn pé òun jẹ́ ẹ̀bùn tó yẹ .\n", "2020-01-21 19:05:56,263 Example #1\n", "2020-01-21 19:05:56,263 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:05:56,263 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:05:56,264 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń ṣe ni mo ti ń ṣe .\n", "2020-01-21 19:05:56,265 Example #2\n", "2020-01-21 19:05:56,265 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:05:56,265 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:05:56,265 \tHypothesis: Ṣé mo ní àjọṣe tó dára pẹ̀lú Jèhófà àti àwọn èèyàn mi pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 19:05:56,265 Example #3\n", "2020-01-21 19:05:56,265 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:05:56,265 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:05:56,265 \tHypothesis: Ó ti rí i pé ó ti ń ṣe ẹ́ láǹfààní ju bó ṣe ń rìn lọ , àmọ́ ó máa ń rìn .\n", "2020-01-21 19:05:56,265 Validation result (greedy) at epoch 2, step 8000: bleu: 11.32, loss: 73077.5469, ppl: 11.6223, duration: 31.1250s\n", "2020-01-21 19:06:07,818 Epoch 2 Step: 8100 Batch Loss: 2.363630 Tokens per Sec: 20246, Lr: 0.000300\n", "2020-01-21 19:06:19,416 Epoch 2 Step: 8200 Batch Loss: 2.417588 Tokens per Sec: 20134, Lr: 0.000300\n", "2020-01-21 19:06:30,968 Epoch 2 Step: 8300 Batch Loss: 2.521194 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-21 19:06:42,373 Epoch 2 Step: 8400 Batch Loss: 2.669257 Tokens per Sec: 19693, Lr: 0.000300\n", "2020-01-21 19:06:53,980 Epoch 2 Step: 8500 Batch Loss: 2.736541 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-21 19:07:05,536 Epoch 2 Step: 8600 Batch Loss: 2.857332 Tokens per Sec: 20494, Lr: 0.000300\n", "2020-01-21 19:07:17,043 Epoch 2 Step: 8700 Batch Loss: 2.539438 Tokens per Sec: 19938, Lr: 0.000300\n", "2020-01-21 19:07:28,637 Epoch 2 Step: 8800 Batch Loss: 2.662373 Tokens per Sec: 19866, Lr: 0.000300\n", "2020-01-21 19:07:40,256 Epoch 2 Step: 8900 Batch Loss: 2.527376 Tokens per Sec: 20575, Lr: 0.000300\n", "2020-01-21 19:07:51,756 Epoch 2 Step: 9000 Batch Loss: 2.431624 Tokens per Sec: 19951, Lr: 0.000300\n", "2020-01-21 19:08:22,625 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:08:22,625 Saving new checkpoint.\n", "2020-01-21 19:08:22,883 Example #0\n", "2020-01-21 19:08:22,884 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:08:22,884 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:08:22,884 \tHypothesis: Ó ń fún wa ní ẹ̀mí , ẹni tó bá ń fúnni ní ẹ̀bùn tó yẹ ká máa fi hàn pé ó yẹ kí Kristi máa darí rẹ̀ .\n", "2020-01-21 19:08:22,884 Example #1\n", "2020-01-21 19:08:22,884 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:08:22,884 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:08:22,884 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń ṣe ni mo máa ń ṣe .\n", "2020-01-21 19:08:22,884 Example #2\n", "2020-01-21 19:08:22,884 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:08:22,884 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:08:22,884 \tHypothesis: Ǹjẹ́ mo máa ń ṣe àwọn nǹkan tó dára ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:08:22,884 Example #3\n", "2020-01-21 19:08:22,885 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:08:22,885 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:08:22,885 \tHypothesis: Ó ti ń ṣe ọ̀pọ̀ nǹkan tó o sì ń ṣe é ju bó ṣe yẹ lọ , àmọ́ ó máa ń rìn .\n", "2020-01-21 19:08:22,885 Validation result (greedy) at epoch 2, step 9000: bleu: 12.23, loss: 71054.2734, ppl: 10.8592, duration: 31.1280s\n", "2020-01-21 19:08:34,401 Epoch 2 Step: 9100 Batch Loss: 2.797074 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-21 19:08:45,916 Epoch 2 Step: 9200 Batch Loss: 2.480278 Tokens per Sec: 20097, Lr: 0.000300\n", "2020-01-21 19:08:57,394 Epoch 2 Step: 9300 Batch Loss: 2.324184 Tokens per Sec: 19971, Lr: 0.000300\n", "2020-01-21 19:09:08,842 Epoch 2 Step: 9400 Batch Loss: 2.672884 Tokens per Sec: 19619, Lr: 0.000300\n", "2020-01-21 19:09:20,315 Epoch 2 Step: 9500 Batch Loss: 2.094421 Tokens per Sec: 19886, Lr: 0.000300\n", "2020-01-21 19:09:31,795 Epoch 2 Step: 9600 Batch Loss: 2.566288 Tokens per Sec: 19934, Lr: 0.000300\n", "2020-01-21 19:09:43,235 Epoch 2 Step: 9700 Batch Loss: 2.528272 Tokens per Sec: 20158, Lr: 0.000300\n", "2020-01-21 19:09:54,670 Epoch 2 Step: 9800 Batch Loss: 2.321585 Tokens per Sec: 19707, Lr: 0.000300\n", "2020-01-21 19:10:06,382 Epoch 2 Step: 9900 Batch Loss: 2.371088 Tokens per Sec: 20793, Lr: 0.000300\n", "2020-01-21 19:10:17,861 Epoch 2 Step: 10000 Batch Loss: 2.280398 Tokens per Sec: 20180, Lr: 0.000300\n", "2020-01-21 19:10:48,740 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:10:48,741 Saving new checkpoint.\n", "2020-01-21 19:10:48,988 Example #0\n", "2020-01-21 19:10:48,988 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:10:48,988 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:10:48,989 \tHypothesis: Ó ń fúnni ní ìyè , Ẹni tó jẹ́ ẹni tí ó jẹ́ ẹ̀bùn tí ó tọ́ láti jẹ́ ẹ̀bùn tí ó tọ́ .\n", "2020-01-21 19:10:48,989 Example #1\n", "2020-01-21 19:10:48,989 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:10:48,989 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:10:48,989 \tHypothesis: Mo ti wá rí i pé mo ti ń ṣiṣẹ́ ní ilé ẹ̀kọ́ .\n", "2020-01-21 19:10:48,989 Example #2\n", "2020-01-21 19:10:48,989 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:10:48,989 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:10:48,989 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tí mo ní pẹ̀lú Jèhófà àti àwọn èèyàn mi ?\n", "2020-01-21 19:10:48,989 Example #3\n", "2020-01-21 19:10:48,990 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:10:48,990 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:10:48,990 \tHypothesis: Ó ti ní ìrírí tó pọ̀ jù lọ , àmọ́ ó máa ń rìn ní ìrora , àmọ́ ó máa ń rìn .\n", "2020-01-21 19:10:48,990 Validation result (greedy) at epoch 2, step 10000: bleu: 13.17, loss: 68705.5547, ppl: 10.0360, duration: 31.1287s\n", "2020-01-21 19:11:00,466 Epoch 2 Step: 10100 Batch Loss: 2.416075 Tokens per Sec: 19731, Lr: 0.000300\n", "2020-01-21 19:11:11,935 Epoch 2 Step: 10200 Batch Loss: 2.426969 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 19:11:23,452 Epoch 2 Step: 10300 Batch Loss: 2.486407 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-21 19:11:35,124 Epoch 2 Step: 10400 Batch Loss: 2.376366 Tokens per Sec: 19982, Lr: 0.000300\n", "2020-01-21 19:11:46,538 Epoch 2 Step: 10500 Batch Loss: 2.262376 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-21 19:11:46,553 Epoch 2: total training loss 13798.93\n", "2020-01-21 19:11:46,553 EPOCH 3\n", "2020-01-21 19:11:58,503 Epoch 3 Step: 10600 Batch Loss: 2.469325 Tokens per Sec: 19114, Lr: 0.000300\n", "2020-01-21 19:12:10,019 Epoch 3 Step: 10700 Batch Loss: 2.375190 Tokens per Sec: 19798, Lr: 0.000300\n", "2020-01-21 19:12:21,454 Epoch 3 Step: 10800 Batch Loss: 2.195889 Tokens per Sec: 20042, Lr: 0.000300\n", "2020-01-21 19:12:32,974 Epoch 3 Step: 10900 Batch Loss: 2.552694 Tokens per Sec: 20377, Lr: 0.000300\n", "2020-01-21 19:12:44,498 Epoch 3 Step: 11000 Batch Loss: 2.523885 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 19:13:15,343 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:13:15,343 Saving new checkpoint.\n", "2020-01-21 19:13:15,625 Example #0\n", "2020-01-21 19:13:15,625 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:13:15,625 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:13:15,625 \tHypothesis: Ó jẹ́ ọ̀kan lára ohun tó yẹ kó ṣe , ẹni tó bá fẹ́ láti máa fi ẹ̀bùn tó yẹ kó o gbà gbọ́ .\n", "2020-01-21 19:13:15,625 Example #1\n", "2020-01-21 19:13:15,625 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:13:15,625 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:13:15,626 \tHypothesis: Mo ti wá rí i pé mo ti ń ṣiṣẹ́ kára .\n", "2020-01-21 19:13:15,626 Example #2\n", "2020-01-21 19:13:15,626 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:13:15,626 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:13:15,626 \tHypothesis: Ǹjẹ́ mo máa ń ṣe àwọn nǹkan tó pọ̀ ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:13:15,626 Example #3\n", "2020-01-21 19:13:15,626 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:13:15,626 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:13:15,626 \tHypothesis: Ó ti ní ìrírí àti ìrírí tó o ní , àmọ́ ó máa ń ṣe sùúrù .\n", "2020-01-21 19:13:15,626 Validation result (greedy) at epoch 3, step 11000: bleu: 13.57, loss: 67027.5078, ppl: 9.4863, duration: 31.1272s\n", "2020-01-21 19:13:27,096 Epoch 3 Step: 11100 Batch Loss: 2.285566 Tokens per Sec: 19945, Lr: 0.000300\n", "2020-01-21 19:13:38,489 Epoch 3 Step: 11200 Batch Loss: 2.685105 Tokens per Sec: 19984, Lr: 0.000300\n", "2020-01-21 19:13:50,056 Epoch 3 Step: 11300 Batch Loss: 2.594274 Tokens per Sec: 20139, Lr: 0.000300\n", "2020-01-21 19:14:01,534 Epoch 3 Step: 11400 Batch Loss: 2.808890 Tokens per Sec: 19996, Lr: 0.000300\n", "2020-01-21 19:14:13,058 Epoch 3 Step: 11500 Batch Loss: 2.258694 Tokens per Sec: 20229, Lr: 0.000300\n", "2020-01-21 19:14:24,538 Epoch 3 Step: 11600 Batch Loss: 2.217004 Tokens per Sec: 20284, Lr: 0.000300\n", "2020-01-21 19:14:36,057 Epoch 3 Step: 11700 Batch Loss: 2.644097 Tokens per Sec: 20571, Lr: 0.000300\n", "2020-01-21 19:14:47,472 Epoch 3 Step: 11800 Batch Loss: 2.185455 Tokens per Sec: 19997, Lr: 0.000300\n", "2020-01-21 19:14:58,918 Epoch 3 Step: 11900 Batch Loss: 2.273078 Tokens per Sec: 20111, Lr: 0.000300\n", "2020-01-21 19:15:10,374 Epoch 3 Step: 12000 Batch Loss: 2.084227 Tokens per Sec: 20236, Lr: 0.000300\n", "2020-01-21 19:15:41,179 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:15:41,179 Saving new checkpoint.\n", "2020-01-21 19:15:41,436 Example #0\n", "2020-01-21 19:15:41,436 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:15:41,436 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:15:41,436 \tHypothesis: Ó ní ẹ̀mí ìyè , ẹni tí ó bá ń fúnni ní ẹ̀bùn tí kò tọ́ nípasẹ̀ Kristi .\n", "2020-01-21 19:15:41,436 Example #1\n", "2020-01-21 19:15:41,436 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:15:41,436 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:15:41,436 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń ṣe mí láǹfààní gan - an .\n", "2020-01-21 19:15:41,436 Example #2\n", "2020-01-21 19:15:41,437 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:15:41,437 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:15:41,437 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tó pọ̀ jù lọ nínú àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 19:15:41,437 Example #3\n", "2020-01-21 19:15:41,437 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:15:41,437 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:15:41,437 \tHypothesis: Ó ti rí i pé ó ti rí i pé o ò ní ní máa ṣe nǹkan kan , àmọ́ ó máa ń fi sùúrù rìn .\n", "2020-01-21 19:15:41,437 Validation result (greedy) at epoch 3, step 12000: bleu: 14.98, loss: 65423.9141, ppl: 8.9892, duration: 31.0630s\n", "2020-01-21 19:15:52,894 Epoch 3 Step: 12100 Batch Loss: 2.292799 Tokens per Sec: 20132, Lr: 0.000300\n", "2020-01-21 19:16:04,337 Epoch 3 Step: 12200 Batch Loss: 2.300254 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-21 19:16:15,736 Epoch 3 Step: 12300 Batch Loss: 2.205540 Tokens per Sec: 20200, Lr: 0.000300\n", "2020-01-21 19:16:27,134 Epoch 3 Step: 12400 Batch Loss: 2.021528 Tokens per Sec: 20101, Lr: 0.000300\n", "2020-01-21 19:16:38,523 Epoch 3 Step: 12500 Batch Loss: 2.482955 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-21 19:16:50,081 Epoch 3 Step: 12600 Batch Loss: 2.334059 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-21 19:17:01,559 Epoch 3 Step: 12700 Batch Loss: 2.884846 Tokens per Sec: 20383, Lr: 0.000300\n", "2020-01-21 19:17:13,002 Epoch 3 Step: 12800 Batch Loss: 2.279543 Tokens per Sec: 19910, Lr: 0.000300\n", "2020-01-21 19:17:24,440 Epoch 3 Step: 12900 Batch Loss: 2.301064 Tokens per Sec: 20019, Lr: 0.000300\n", "2020-01-21 19:17:35,918 Epoch 3 Step: 13000 Batch Loss: 2.263095 Tokens per Sec: 20283, Lr: 0.000300\n", "2020-01-21 19:18:06,705 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:18:06,705 Saving new checkpoint.\n", "2020-01-21 19:18:06,961 Example #0\n", "2020-01-21 19:18:06,961 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:18:06,961 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:18:06,961 \tHypothesis: Òun ni Olùpèsè ìyè , Ẹni tó bá ń fúnni ní ẹ̀bùn tí kò tọ́ nípasẹ̀ Kristi .\n", "2020-01-21 19:18:06,961 Example #1\n", "2020-01-21 19:18:06,962 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:18:06,962 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:18:06,962 \tHypothesis: Ní báyìí , mo ti rí i pé iṣẹ́ àṣekára ni mo ti ń ṣe .\n", "2020-01-21 19:18:06,962 Example #2\n", "2020-01-21 19:18:06,962 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:18:06,962 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:18:06,962 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:18:06,962 Example #3\n", "2020-01-21 19:18:06,963 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:18:06,963 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:18:06,963 \tHypothesis: Ó ti rí ọ̀pọ̀ ìrírí tó pọ̀ jù lọ , àmọ́ ó máa ń fi sùúrù rìn .\n", "2020-01-21 19:18:06,963 Validation result (greedy) at epoch 3, step 13000: bleu: 15.98, loss: 63915.1562, ppl: 8.5453, duration: 31.0446s\n", "2020-01-21 19:18:18,414 Epoch 3 Step: 13100 Batch Loss: 2.235039 Tokens per Sec: 19823, Lr: 0.000300\n", "2020-01-21 19:18:29,899 Epoch 3 Step: 13200 Batch Loss: 2.364021 Tokens per Sec: 20668, Lr: 0.000300\n", "2020-01-21 19:18:41,416 Epoch 3 Step: 13300 Batch Loss: 2.337857 Tokens per Sec: 20383, Lr: 0.000300\n", "2020-01-21 19:18:52,933 Epoch 3 Step: 13400 Batch Loss: 2.237030 Tokens per Sec: 20201, Lr: 0.000300\n", "2020-01-21 19:19:04,403 Epoch 3 Step: 13500 Batch Loss: 2.331447 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-21 19:19:15,899 Epoch 3 Step: 13600 Batch Loss: 1.979029 Tokens per Sec: 20017, Lr: 0.000300\n", "2020-01-21 19:19:27,355 Epoch 3 Step: 13700 Batch Loss: 2.397572 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-21 19:19:38,826 Epoch 3 Step: 13800 Batch Loss: 2.516784 Tokens per Sec: 20104, Lr: 0.000300\n", "2020-01-21 19:19:50,333 Epoch 3 Step: 13900 Batch Loss: 2.112603 Tokens per Sec: 20036, Lr: 0.000300\n", "2020-01-21 19:20:01,850 Epoch 3 Step: 14000 Batch Loss: 2.407358 Tokens per Sec: 20323, Lr: 0.000300\n", "2020-01-21 19:20:32,592 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:20:32,592 Saving new checkpoint.\n", "2020-01-21 19:20:32,847 Example #0\n", "2020-01-21 19:20:32,847 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:20:32,847 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:20:32,847 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn pípé nípasẹ̀ Kristi .\n", "2020-01-21 19:20:32,848 Example #1\n", "2020-01-21 19:20:32,848 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:20:32,848 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:20:32,848 \tHypothesis: Ní báyìí , mo ti wá rí i pé mo ti ń ṣiṣẹ́ ní bẹ́dì .\n", "2020-01-21 19:20:32,848 Example #2\n", "2020-01-21 19:20:32,848 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:20:32,848 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:20:32,848 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tó wà lọ́kàn mi ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:20:32,848 Example #3\n", "2020-01-21 19:20:32,849 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:20:32,849 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:20:32,849 \tHypothesis: Ó ti rí i pé ó ti rí i pé o ti ń ṣe nǹkan kan , àmọ́ ó máa ń ń gba sùúrù .\n", "2020-01-21 19:20:32,849 Validation result (greedy) at epoch 3, step 14000: bleu: 16.36, loss: 62741.1836, ppl: 8.2151, duration: 30.9983s\n", "2020-01-21 19:20:44,259 Epoch 3 Step: 14100 Batch Loss: 2.152817 Tokens per Sec: 19650, Lr: 0.000300\n", "2020-01-21 19:20:55,888 Epoch 3 Step: 14200 Batch Loss: 2.378431 Tokens per Sec: 20608, Lr: 0.000300\n", "2020-01-21 19:21:07,412 Epoch 3 Step: 14300 Batch Loss: 2.219156 Tokens per Sec: 20099, Lr: 0.000300\n", "2020-01-21 19:21:18,960 Epoch 3 Step: 14400 Batch Loss: 2.252842 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 19:21:30,340 Epoch 3 Step: 14500 Batch Loss: 2.217309 Tokens per Sec: 19923, Lr: 0.000300\n", "2020-01-21 19:21:41,869 Epoch 3 Step: 14600 Batch Loss: 2.533327 Tokens per Sec: 19991, Lr: 0.000300\n", "2020-01-21 19:21:53,327 Epoch 3 Step: 14700 Batch Loss: 2.349590 Tokens per Sec: 20033, Lr: 0.000300\n", "2020-01-21 19:22:04,855 Epoch 3 Step: 14800 Batch Loss: 2.084887 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-21 19:22:16,371 Epoch 3 Step: 14900 Batch Loss: 2.366072 Tokens per Sec: 20296, Lr: 0.000300\n", "2020-01-21 19:22:27,707 Epoch 3 Step: 15000 Batch Loss: 2.285426 Tokens per Sec: 19979, Lr: 0.000300\n", "2020-01-21 19:22:58,458 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:22:58,458 Saving new checkpoint.\n", "2020-01-21 19:22:58,713 Example #0\n", "2020-01-21 19:22:58,713 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:22:58,713 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:22:58,713 \tHypothesis: Ó jẹ́ ọ̀kan lára àwọn tó ń fúnni ní ẹ̀bùn tó yẹ kí wọ́n máa fún Kristi .\n", "2020-01-21 19:22:58,713 Example #1\n", "2020-01-21 19:22:58,713 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:22:58,714 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:22:58,714 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ báyìí .\n", "2020-01-21 19:22:58,714 Example #2\n", "2020-01-21 19:22:58,714 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:22:58,714 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:22:58,714 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 19:22:58,714 Example #3\n", "2020-01-21 19:22:58,715 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:22:58,715 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:22:58,715 \tHypothesis: Ó ti rí i pé ó ti wà ní ìrírí , àmọ́ ó máa ń ń gba sùúrù .\n", "2020-01-21 19:22:58,715 Validation result (greedy) at epoch 3, step 15000: bleu: 16.82, loss: 61602.1680, ppl: 7.9069, duration: 31.0074s\n", "2020-01-21 19:23:10,275 Epoch 3 Step: 15100 Batch Loss: 2.050249 Tokens per Sec: 20114, Lr: 0.000300\n", "2020-01-21 19:23:21,717 Epoch 3 Step: 15200 Batch Loss: 2.221671 Tokens per Sec: 19934, Lr: 0.000300\n", "2020-01-21 19:23:33,278 Epoch 3 Step: 15300 Batch Loss: 2.035732 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-21 19:23:44,915 Epoch 3 Step: 15400 Batch Loss: 2.269092 Tokens per Sec: 20390, Lr: 0.000300\n", "2020-01-21 19:23:56,365 Epoch 3 Step: 15500 Batch Loss: 2.280374 Tokens per Sec: 20230, Lr: 0.000300\n", "2020-01-21 19:24:07,727 Epoch 3 Step: 15600 Batch Loss: 2.355976 Tokens per Sec: 20293, Lr: 0.000300\n", "2020-01-21 19:24:19,217 Epoch 3 Step: 15700 Batch Loss: 2.139417 Tokens per Sec: 20435, Lr: 0.000300\n", "2020-01-21 19:24:25,322 Epoch 3: total training loss 12229.73\n", "2020-01-21 19:24:25,322 EPOCH 4\n", "2020-01-21 19:24:31,113 Epoch 4 Step: 15800 Batch Loss: 2.094122 Tokens per Sec: 18062, Lr: 0.000300\n", "2020-01-21 19:24:42,582 Epoch 4 Step: 15900 Batch Loss: 2.985081 Tokens per Sec: 20309, Lr: 0.000300\n", "2020-01-21 19:24:54,001 Epoch 4 Step: 16000 Batch Loss: 2.324725 Tokens per Sec: 20108, Lr: 0.000300\n", "2020-01-21 19:25:24,710 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:25:24,710 Saving new checkpoint.\n", "2020-01-21 19:25:25,017 Example #0\n", "2020-01-21 19:25:25,017 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:25:25,017 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:25:25,017 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tó ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:25:25,017 Example #1\n", "2020-01-21 19:25:25,017 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:25:25,017 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:25:25,017 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń ṣe mí láǹfààní gan - an ni .\n", "2020-01-21 19:25:25,017 Example #2\n", "2020-01-21 19:25:25,017 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:25:25,018 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:25:25,018 \tHypothesis: Ṣé mo máa ń ní àjọṣe tó dára ju Jèhófà lọ , kí n sì máa bá àwọn èèyàn lò ?\n", "2020-01-21 19:25:25,018 Example #3\n", "2020-01-21 19:25:25,018 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:25:25,018 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:25:25,018 \tHypothesis: Ó ti ní ìrírí púpọ̀ ju ti tẹ́lẹ̀ lọ , àmọ́ ó máa ń fi sùúrù rìn ní gbogbo ìgbà .\n", "2020-01-21 19:25:25,018 Validation result (greedy) at epoch 4, step 16000: bleu: 17.91, loss: 60576.6367, ppl: 7.6394, duration: 31.0167s\n", "2020-01-21 19:25:36,461 Epoch 4 Step: 16100 Batch Loss: 2.062105 Tokens per Sec: 19768, Lr: 0.000300\n", "2020-01-21 19:25:47,868 Epoch 4 Step: 16200 Batch Loss: 2.065114 Tokens per Sec: 20028, Lr: 0.000300\n", "2020-01-21 19:25:59,362 Epoch 4 Step: 16300 Batch Loss: 1.899342 Tokens per Sec: 20675, Lr: 0.000300\n", "2020-01-21 19:26:10,744 Epoch 4 Step: 16400 Batch Loss: 2.659517 Tokens per Sec: 20437, Lr: 0.000300\n", "2020-01-21 19:26:22,161 Epoch 4 Step: 16500 Batch Loss: 2.246130 Tokens per Sec: 20069, Lr: 0.000300\n", "2020-01-21 19:26:33,429 Epoch 4 Step: 16600 Batch Loss: 2.470198 Tokens per Sec: 20164, Lr: 0.000300\n", "2020-01-21 19:26:44,764 Epoch 4 Step: 16700 Batch Loss: 1.841355 Tokens per Sec: 20542, Lr: 0.000300\n", "2020-01-21 19:26:56,107 Epoch 4 Step: 16800 Batch Loss: 2.134632 Tokens per Sec: 20045, Lr: 0.000300\n", "2020-01-21 19:27:07,572 Epoch 4 Step: 16900 Batch Loss: 1.993903 Tokens per Sec: 20390, Lr: 0.000300\n", "2020-01-21 19:27:18,987 Epoch 4 Step: 17000 Batch Loss: 2.335697 Tokens per Sec: 20248, Lr: 0.000300\n", "2020-01-21 19:27:49,609 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:27:49,609 Saving new checkpoint.\n", "2020-01-21 19:27:49,904 Example #0\n", "2020-01-21 19:27:49,905 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:27:49,905 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:27:49,905 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:27:49,905 Example #1\n", "2020-01-21 19:27:49,905 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:27:49,905 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:27:49,905 \tHypothesis: Mo ti wá rí i pé mo ti wá iṣẹ́ kan tó ń bójú tó mi .\n", "2020-01-21 19:27:49,905 Example #2\n", "2020-01-21 19:27:49,906 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:27:49,906 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:27:49,906 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara tó pọ̀ ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn mi lọ ?\n", "2020-01-21 19:27:49,906 Example #3\n", "2020-01-21 19:27:49,906 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:27:49,906 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:27:49,906 \tHypothesis: Ó ti rí i pé ó ti rí i pé o ti ṣe nǹkan kan ju bó ṣe yẹ lọ , àmọ́ ó máa ń fi sùúrù rìn .\n", "2020-01-21 19:27:49,906 Validation result (greedy) at epoch 4, step 17000: bleu: 18.20, loss: 59747.3984, ppl: 7.4297, duration: 30.9190s\n", "2020-01-21 19:28:01,217 Epoch 4 Step: 17100 Batch Loss: 2.317326 Tokens per Sec: 20120, Lr: 0.000300\n", "2020-01-21 19:28:12,664 Epoch 4 Step: 17200 Batch Loss: 2.191985 Tokens per Sec: 20059, Lr: 0.000300\n", "2020-01-21 19:28:24,002 Epoch 4 Step: 17300 Batch Loss: 2.307995 Tokens per Sec: 19992, Lr: 0.000300\n", "2020-01-21 19:28:35,401 Epoch 4 Step: 17400 Batch Loss: 2.129389 Tokens per Sec: 20031, Lr: 0.000300\n", "2020-01-21 19:28:46,789 Epoch 4 Step: 17500 Batch Loss: 2.365981 Tokens per Sec: 20474, Lr: 0.000300\n", "2020-01-21 19:28:58,254 Epoch 4 Step: 17600 Batch Loss: 2.072987 Tokens per Sec: 20403, Lr: 0.000300\n", "2020-01-21 19:29:09,667 Epoch 4 Step: 17700 Batch Loss: 2.267588 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-21 19:29:21,094 Epoch 4 Step: 17800 Batch Loss: 2.144855 Tokens per Sec: 20266, Lr: 0.000300\n", "2020-01-21 19:29:32,424 Epoch 4 Step: 17900 Batch Loss: 2.402615 Tokens per Sec: 19990, Lr: 0.000300\n", "2020-01-21 19:29:43,836 Epoch 4 Step: 18000 Batch Loss: 2.020071 Tokens per Sec: 20432, Lr: 0.000300\n", "2020-01-21 19:30:14,487 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:30:14,488 Saving new checkpoint.\n", "2020-01-21 19:30:14,741 Example #0\n", "2020-01-21 19:30:14,741 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:30:14,741 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:30:14,741 \tHypothesis: Ó jẹ́ orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn tí kò tọ́ nípasẹ̀ Kristi .\n", "2020-01-21 19:30:14,741 Example #1\n", "2020-01-21 19:30:14,741 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:30:14,741 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:30:14,741 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ kan wà tó yẹ kí n ṣe .\n", "2020-01-21 19:30:14,741 Example #2\n", "2020-01-21 19:30:14,742 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:30:14,742 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:30:14,742 \tHypothesis: Ǹjẹ́ mo máa ń fi àwọn nǹkan tara tara tara tara tara mi ṣe ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:30:14,742 Example #3\n", "2020-01-21 19:30:14,742 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:30:14,742 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:30:14,742 \tHypothesis: Ó ti wá rí i pé ó ti ń ṣe ẹ́ bíi pé kó o ṣe , àmọ́ ó máa ń fi sùúrù rìn .\n", "2020-01-21 19:30:14,742 Validation result (greedy) at epoch 4, step 18000: bleu: 18.92, loss: 58933.8203, ppl: 7.2295, duration: 30.9059s\n", "2020-01-21 19:30:26,264 Epoch 4 Step: 18100 Batch Loss: 2.052375 Tokens per Sec: 20614, Lr: 0.000300\n", "2020-01-21 19:30:37,592 Epoch 4 Step: 18200 Batch Loss: 2.184469 Tokens per Sec: 20319, Lr: 0.000300\n", "2020-01-21 19:30:48,940 Epoch 4 Step: 18300 Batch Loss: 2.286424 Tokens per Sec: 20191, Lr: 0.000300\n", "2020-01-21 19:31:00,404 Epoch 4 Step: 18400 Batch Loss: 2.177310 Tokens per Sec: 20701, Lr: 0.000300\n", "2020-01-21 19:31:11,773 Epoch 4 Step: 18500 Batch Loss: 2.219610 Tokens per Sec: 20255, Lr: 0.000300\n", "2020-01-21 19:31:23,083 Epoch 4 Step: 18600 Batch Loss: 2.172093 Tokens per Sec: 20236, Lr: 0.000300\n", "2020-01-21 19:31:34,593 Epoch 4 Step: 18700 Batch Loss: 1.954065 Tokens per Sec: 20635, Lr: 0.000300\n", "2020-01-21 19:31:45,965 Epoch 4 Step: 18800 Batch Loss: 2.400321 Tokens per Sec: 19773, Lr: 0.000300\n", "2020-01-21 19:31:57,276 Epoch 4 Step: 18900 Batch Loss: 2.220158 Tokens per Sec: 19877, Lr: 0.000300\n", "2020-01-21 19:32:08,684 Epoch 4 Step: 19000 Batch Loss: 2.258232 Tokens per Sec: 20444, Lr: 0.000300\n", "2020-01-21 19:32:39,339 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:32:39,339 Saving new checkpoint.\n", "2020-01-21 19:32:39,599 Example #0\n", "2020-01-21 19:32:39,599 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:32:39,599 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:32:39,599 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:32:39,599 Example #1\n", "2020-01-21 19:32:39,600 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:32:39,600 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:32:39,600 \tHypothesis: Mo ti wá rí i pé mo ti rí iṣẹ́ tó ń ṣe .\n", "2020-01-21 19:32:39,600 Example #2\n", "2020-01-21 19:32:39,600 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:32:39,600 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:32:39,600 \tHypothesis: Ǹjẹ́ mo máa ń ní àjọṣe tó dára pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 19:32:39,600 Example #3\n", "2020-01-21 19:32:39,600 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:32:39,600 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:32:39,600 \tHypothesis: Ó ní ìrírí púpọ̀ sí i , ó sì ń ṣe é , àmọ́ ó ń rìn ní gbogbo ìgbà .\n", "2020-01-21 19:32:39,600 Validation result (greedy) at epoch 4, step 19000: bleu: 18.94, loss: 58377.8164, ppl: 7.0959, duration: 30.9162s\n", "2020-01-21 19:32:50,995 Epoch 4 Step: 19100 Batch Loss: 2.043456 Tokens per Sec: 20448, Lr: 0.000300\n", "2020-01-21 19:33:02,365 Epoch 4 Step: 19200 Batch Loss: 2.348320 Tokens per Sec: 20194, Lr: 0.000300\n", "2020-01-21 19:33:13,790 Epoch 4 Step: 19300 Batch Loss: 2.322663 Tokens per Sec: 20445, Lr: 0.000300\n", "2020-01-21 19:33:25,114 Epoch 4 Step: 19400 Batch Loss: 2.255408 Tokens per Sec: 20331, Lr: 0.000300\n", "2020-01-21 19:33:36,466 Epoch 4 Step: 19500 Batch Loss: 2.030289 Tokens per Sec: 20695, Lr: 0.000300\n", "2020-01-21 19:33:47,866 Epoch 4 Step: 19600 Batch Loss: 2.297345 Tokens per Sec: 20660, Lr: 0.000300\n", "2020-01-21 19:33:59,297 Epoch 4 Step: 19700 Batch Loss: 2.121026 Tokens per Sec: 20288, Lr: 0.000300\n", "2020-01-21 19:34:10,757 Epoch 4 Step: 19800 Batch Loss: 2.119461 Tokens per Sec: 20456, Lr: 0.000300\n", "2020-01-21 19:34:22,213 Epoch 4 Step: 19900 Batch Loss: 2.354980 Tokens per Sec: 20178, Lr: 0.000300\n", "2020-01-21 19:34:33,543 Epoch 4 Step: 20000 Batch Loss: 2.358966 Tokens per Sec: 19977, Lr: 0.000300\n", "2020-01-21 19:35:04,152 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:35:04,152 Saving new checkpoint.\n", "2020-01-21 19:35:04,397 Example #0\n", "2020-01-21 19:35:04,397 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:35:04,397 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:35:04,397 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:35:04,398 Example #1\n", "2020-01-21 19:35:04,398 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:35:04,398 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:35:04,398 \tHypothesis: Mo ti wá rí i pé mo ti ń ṣe iṣẹ́ kan .\n", "2020-01-21 19:35:04,398 Example #2\n", "2020-01-21 19:35:04,398 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:35:04,398 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:35:04,398 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:35:04,398 Example #3\n", "2020-01-21 19:35:04,398 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:35:04,398 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:35:04,398 \tHypothesis: Ó ti ní ìrírí púpọ̀ sí i , ó sì ń rìn jìnnà sí yín .\n", "2020-01-21 19:35:04,398 Validation result (greedy) at epoch 4, step 20000: bleu: 19.63, loss: 57897.0234, ppl: 6.9823, duration: 30.8553s\n", "2020-01-21 19:35:15,800 Epoch 4 Step: 20100 Batch Loss: 2.033016 Tokens per Sec: 20297, Lr: 0.000300\n", "2020-01-21 19:35:27,164 Epoch 4 Step: 20200 Batch Loss: 2.284490 Tokens per Sec: 20174, Lr: 0.000300\n", "2020-01-21 19:35:38,563 Epoch 4 Step: 20300 Batch Loss: 2.053143 Tokens per Sec: 20112, Lr: 0.000300\n", "2020-01-21 19:35:49,890 Epoch 4 Step: 20400 Batch Loss: 2.086158 Tokens per Sec: 20304, Lr: 0.000300\n", "2020-01-21 19:36:01,239 Epoch 4 Step: 20500 Batch Loss: 2.104393 Tokens per Sec: 20180, Lr: 0.000300\n", "2020-01-21 19:36:12,632 Epoch 4 Step: 20600 Batch Loss: 2.152209 Tokens per Sec: 20558, Lr: 0.000300\n", "2020-01-21 19:36:23,961 Epoch 4 Step: 20700 Batch Loss: 1.941958 Tokens per Sec: 19937, Lr: 0.000300\n", "2020-01-21 19:36:35,345 Epoch 4 Step: 20800 Batch Loss: 2.352111 Tokens per Sec: 20542, Lr: 0.000300\n", "2020-01-21 19:36:46,724 Epoch 4 Step: 20900 Batch Loss: 2.040012 Tokens per Sec: 20344, Lr: 0.000300\n", "2020-01-21 19:36:58,150 Epoch 4 Step: 21000 Batch Loss: 2.441984 Tokens per Sec: 20312, Lr: 0.000300\n", "2020-01-21 19:37:28,823 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:37:28,823 Saving new checkpoint.\n", "2020-01-21 19:37:29,085 Example #0\n", "2020-01-21 19:37:29,085 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:37:29,085 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:37:29,085 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tó ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:37:29,085 Example #1\n", "2020-01-21 19:37:29,086 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:37:29,086 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:37:29,086 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń ṣe mí láǹfààní gan - an ni .\n", "2020-01-21 19:37:29,086 Example #2\n", "2020-01-21 19:37:29,086 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:37:29,086 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:37:29,086 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:37:29,086 Example #3\n", "2020-01-21 19:37:29,086 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:37:29,086 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:37:29,086 \tHypothesis: Ó ti ní ìrírí púpọ̀ ju ti tẹ́lẹ̀ lọ , àmọ́ ó máa ń rìn jìnnà sí ọ .\n", "2020-01-21 19:37:29,086 Validation result (greedy) at epoch 4, step 21000: bleu: 20.13, loss: 57067.4961, ppl: 6.7905, duration: 30.9365s\n", "2020-01-21 19:37:30,369 Epoch 4: total training loss 11323.84\n", "2020-01-21 19:37:30,369 EPOCH 5\n", "2020-01-21 19:37:41,054 Epoch 5 Step: 21100 Batch Loss: 2.451850 Tokens per Sec: 19413, Lr: 0.000300\n", "2020-01-21 19:37:52,377 Epoch 5 Step: 21200 Batch Loss: 2.235810 Tokens per Sec: 20296, Lr: 0.000300\n", "2020-01-21 19:38:03,718 Epoch 5 Step: 21300 Batch Loss: 1.846650 Tokens per Sec: 20062, Lr: 0.000300\n", "2020-01-21 19:38:15,076 Epoch 5 Step: 21400 Batch Loss: 2.086050 Tokens per Sec: 20013, Lr: 0.000300\n", "2020-01-21 19:38:26,596 Epoch 5 Step: 21500 Batch Loss: 1.997281 Tokens per Sec: 20662, Lr: 0.000300\n", "2020-01-21 19:38:37,859 Epoch 5 Step: 21600 Batch Loss: 2.138052 Tokens per Sec: 19922, Lr: 0.000300\n", "2020-01-21 19:38:49,141 Epoch 5 Step: 21700 Batch Loss: 1.955145 Tokens per Sec: 20180, Lr: 0.000300\n", "2020-01-21 19:39:00,535 Epoch 5 Step: 21800 Batch Loss: 1.992510 Tokens per Sec: 20379, Lr: 0.000300\n", "2020-01-21 19:39:11,859 Epoch 5 Step: 21900 Batch Loss: 2.317637 Tokens per Sec: 20221, Lr: 0.000300\n", "2020-01-21 19:39:23,274 Epoch 5 Step: 22000 Batch Loss: 2.187658 Tokens per Sec: 20371, Lr: 0.000300\n", "2020-01-21 19:39:54,050 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:39:54,050 Saving new checkpoint.\n", "2020-01-21 19:39:54,304 Example #0\n", "2020-01-21 19:39:54,304 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:39:54,304 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:39:54,304 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí kò lẹ́tọ̀ọ́ láti fi ẹ̀bùn àìlẹ́tọ̀ọ́sí fún Kristi .\n", "2020-01-21 19:39:54,304 Example #1\n", "2020-01-21 19:39:54,304 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:39:54,304 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:39:54,304 \tHypothesis: Mo ti wá rí i pé mo ti rí iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 19:39:54,304 Example #2\n", "2020-01-21 19:39:54,305 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:39:54,305 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:39:54,305 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:39:54,305 Example #3\n", "2020-01-21 19:39:54,305 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:39:54,305 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:39:54,305 \tHypothesis: Ó ti rí i pé ó ti rí i pé o ti ṣe bẹ́ẹ̀ , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 19:39:54,305 Validation result (greedy) at epoch 5, step 22000: bleu: 20.13, loss: 56622.1875, ppl: 6.6898, duration: 31.0305s\n", "2020-01-21 19:40:05,669 Epoch 5 Step: 22100 Batch Loss: 2.034144 Tokens per Sec: 20216, Lr: 0.000300\n", "2020-01-21 19:40:17,033 Epoch 5 Step: 22200 Batch Loss: 2.032984 Tokens per Sec: 20010, Lr: 0.000300\n", "2020-01-21 19:40:28,388 Epoch 5 Step: 22300 Batch Loss: 2.001710 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-21 19:40:39,742 Epoch 5 Step: 22400 Batch Loss: 1.909075 Tokens per Sec: 20541, Lr: 0.000300\n", "2020-01-21 19:40:51,013 Epoch 5 Step: 22500 Batch Loss: 1.796930 Tokens per Sec: 20141, Lr: 0.000300\n", "2020-01-21 19:41:02,536 Epoch 5 Step: 22600 Batch Loss: 1.872681 Tokens per Sec: 20083, Lr: 0.000300\n", "2020-01-21 19:41:13,877 Epoch 5 Step: 22700 Batch Loss: 2.031531 Tokens per Sec: 20024, Lr: 0.000300\n", "2020-01-21 19:41:25,231 Epoch 5 Step: 22800 Batch Loss: 2.153745 Tokens per Sec: 20425, Lr: 0.000300\n", "2020-01-21 19:41:36,727 Epoch 5 Step: 22900 Batch Loss: 2.375830 Tokens per Sec: 20809, Lr: 0.000300\n", "2020-01-21 19:41:48,156 Epoch 5 Step: 23000 Batch Loss: 2.083206 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 19:42:18,820 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:42:18,820 Saving new checkpoint.\n", "2020-01-21 19:42:19,100 Example #0\n", "2020-01-21 19:42:19,100 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:42:19,100 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:42:19,100 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:42:19,101 Example #1\n", "2020-01-21 19:42:19,101 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:42:19,101 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:42:19,101 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ kan wà tó yẹ kí n ṣe .\n", "2020-01-21 19:42:19,101 Example #2\n", "2020-01-21 19:42:19,101 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:42:19,101 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:42:19,101 \tHypothesis: Ṣé mo máa ń ṣe àwọn nǹkan tó ṣe pàtàkì ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:42:19,101 Example #3\n", "2020-01-21 19:42:19,101 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:42:19,101 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:42:19,102 \tHypothesis: Ó ti ní ìrírí púpọ̀ púpọ̀ sí i , ó sì tún ń ṣe ẹ́ láǹfààní , àmọ́ ó ń rìn nítòsí rẹ .\n", "2020-01-21 19:42:19,102 Validation result (greedy) at epoch 5, step 23000: bleu: 20.96, loss: 55844.0625, ppl: 6.5173, duration: 30.9453s\n", "2020-01-21 19:42:30,570 Epoch 5 Step: 23100 Batch Loss: 2.075024 Tokens per Sec: 20311, Lr: 0.000300\n", "2020-01-21 19:42:41,959 Epoch 5 Step: 23200 Batch Loss: 2.017805 Tokens per Sec: 20174, Lr: 0.000300\n", "2020-01-21 19:42:53,506 Epoch 5 Step: 23300 Batch Loss: 2.049923 Tokens per Sec: 20037, Lr: 0.000300\n", "2020-01-21 19:43:05,013 Epoch 5 Step: 23400 Batch Loss: 1.924776 Tokens per Sec: 20062, Lr: 0.000300\n", "2020-01-21 19:43:16,498 Epoch 5 Step: 23500 Batch Loss: 2.173015 Tokens per Sec: 19874, Lr: 0.000300\n", "2020-01-21 19:43:28,046 Epoch 5 Step: 23600 Batch Loss: 2.166833 Tokens per Sec: 20301, Lr: 0.000300\n", "2020-01-21 19:43:39,530 Epoch 5 Step: 23700 Batch Loss: 2.120754 Tokens per Sec: 20394, Lr: 0.000300\n", "2020-01-21 19:43:51,030 Epoch 5 Step: 23800 Batch Loss: 2.170356 Tokens per Sec: 20297, Lr: 0.000300\n", "2020-01-21 19:44:02,493 Epoch 5 Step: 23900 Batch Loss: 2.026764 Tokens per Sec: 19953, Lr: 0.000300\n", "2020-01-21 19:44:13,939 Epoch 5 Step: 24000 Batch Loss: 2.035169 Tokens per Sec: 20115, Lr: 0.000300\n", "2020-01-21 19:44:44,619 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:44:44,619 Saving new checkpoint.\n", "2020-01-21 19:44:44,868 Example #0\n", "2020-01-21 19:44:44,868 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:44:44,868 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:44:44,868 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó bá ń fúnni ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi .\n", "2020-01-21 19:44:44,868 Example #1\n", "2020-01-21 19:44:44,869 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:44:44,869 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:44:44,869 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ kan wà tó yẹ kí n ṣe .\n", "2020-01-21 19:44:44,869 Example #2\n", "2020-01-21 19:44:44,869 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:44:44,869 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:44:44,869 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:44:44,869 Example #3\n", "2020-01-21 19:44:44,869 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:44:44,869 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:44:44,869 \tHypothesis: Ó ti ní ìrírí tó pọ̀ jù lọ , ó sì ń ṣe é ju bó ṣe yẹ lọ , àmọ́ ó ń rìn nítòsí rẹ .\n", "2020-01-21 19:44:44,869 Validation result (greedy) at epoch 5, step 24000: bleu: 20.70, loss: 55633.8438, ppl: 6.4715, duration: 30.9299s\n", "2020-01-21 19:44:56,458 Epoch 5 Step: 24100 Batch Loss: 2.121022 Tokens per Sec: 20392, Lr: 0.000300\n", "2020-01-21 19:45:07,937 Epoch 5 Step: 24200 Batch Loss: 2.022494 Tokens per Sec: 19780, Lr: 0.000300\n", "2020-01-21 19:45:19,484 Epoch 5 Step: 24300 Batch Loss: 2.051087 Tokens per Sec: 20363, Lr: 0.000300\n", "2020-01-21 19:45:30,992 Epoch 5 Step: 24400 Batch Loss: 2.228361 Tokens per Sec: 20033, Lr: 0.000300\n", "2020-01-21 19:45:42,393 Epoch 5 Step: 24500 Batch Loss: 1.820591 Tokens per Sec: 19696, Lr: 0.000300\n", "2020-01-21 19:45:54,033 Epoch 5 Step: 24600 Batch Loss: 1.853766 Tokens per Sec: 20285, Lr: 0.000300\n", "2020-01-21 19:46:05,500 Epoch 5 Step: 24700 Batch Loss: 1.944276 Tokens per Sec: 20371, Lr: 0.000300\n", "2020-01-21 19:46:17,018 Epoch 5 Step: 24800 Batch Loss: 1.977131 Tokens per Sec: 20076, Lr: 0.000300\n", "2020-01-21 19:46:28,436 Epoch 5 Step: 24900 Batch Loss: 2.130059 Tokens per Sec: 19956, Lr: 0.000300\n", "2020-01-21 19:46:40,022 Epoch 5 Step: 25000 Batch Loss: 1.958012 Tokens per Sec: 20234, Lr: 0.000300\n", "2020-01-21 19:47:10,692 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:47:10,692 Saving new checkpoint.\n", "2020-01-21 19:47:10,954 Example #0\n", "2020-01-21 19:47:10,954 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:47:10,954 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:47:10,954 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó bá fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:47:10,954 Example #1\n", "2020-01-21 19:47:10,954 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:47:10,954 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:47:10,954 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dáa jù lọ ni mo máa ń ṣe .\n", "2020-01-21 19:47:10,954 Example #2\n", "2020-01-21 19:47:10,955 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:47:10,955 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:47:10,955 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:47:10,955 Example #3\n", "2020-01-21 19:47:10,955 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:47:10,955 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:47:10,956 \tHypothesis: Ó ní ìrírí púpọ̀ sí i , ó sì ń ṣe dáadáa ju bó ṣe yẹ lọ , àmọ́ ó ń rìn jìnnà sí yín .\n", "2020-01-21 19:47:10,956 Validation result (greedy) at epoch 5, step 25000: bleu: 21.53, loss: 54900.3477, ppl: 6.3141, duration: 30.9334s\n", "2020-01-21 19:47:22,542 Epoch 5 Step: 25100 Batch Loss: 2.083755 Tokens per Sec: 20185, Lr: 0.000300\n", "2020-01-21 19:47:34,093 Epoch 5 Step: 25200 Batch Loss: 1.979339 Tokens per Sec: 20348, Lr: 0.000300\n", "2020-01-21 19:47:45,498 Epoch 5 Step: 25300 Batch Loss: 1.939180 Tokens per Sec: 19717, Lr: 0.000300\n", "2020-01-21 19:47:57,091 Epoch 5 Step: 25400 Batch Loss: 2.155604 Tokens per Sec: 20116, Lr: 0.000300\n", "2020-01-21 19:48:08,614 Epoch 5 Step: 25500 Batch Loss: 1.874890 Tokens per Sec: 20109, Lr: 0.000300\n", "2020-01-21 19:48:20,158 Epoch 5 Step: 25600 Batch Loss: 2.085736 Tokens per Sec: 20318, Lr: 0.000300\n", "2020-01-21 19:48:31,651 Epoch 5 Step: 25700 Batch Loss: 1.809982 Tokens per Sec: 19759, Lr: 0.000300\n", "2020-01-21 19:48:43,238 Epoch 5 Step: 25800 Batch Loss: 1.857576 Tokens per Sec: 20367, Lr: 0.000300\n", "2020-01-21 19:48:54,790 Epoch 5 Step: 25900 Batch Loss: 2.093832 Tokens per Sec: 19781, Lr: 0.000300\n", "2020-01-21 19:49:06,313 Epoch 5 Step: 26000 Batch Loss: 1.919988 Tokens per Sec: 20212, Lr: 0.000300\n", "2020-01-21 19:49:37,042 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:49:37,042 Saving new checkpoint.\n", "2020-01-21 19:49:37,296 Example #0\n", "2020-01-21 19:49:37,296 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:49:37,296 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:49:37,296 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi .\n", "2020-01-21 19:49:37,296 Example #1\n", "2020-01-21 19:49:37,296 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:49:37,296 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:49:37,296 \tHypothesis: Mo wá ní láti wá ibi iṣẹ́ kan tó yẹ kí n máa ṣe .\n", "2020-01-21 19:49:37,296 Example #2\n", "2020-01-21 19:49:37,297 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:49:37,297 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:49:37,297 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:49:37,297 Example #3\n", "2020-01-21 19:49:37,297 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:49:37,297 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:49:37,297 \tHypothesis: Ó ní ìrírí tó pọ̀ jù lọ àti fíìfíì ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 19:49:37,297 Validation result (greedy) at epoch 5, step 26000: bleu: 21.15, loss: 54481.2852, ppl: 6.2259, duration: 30.9841s\n", "2020-01-21 19:49:48,975 Epoch 5 Step: 26100 Batch Loss: 1.994916 Tokens per Sec: 20143, Lr: 0.000300\n", "2020-01-21 19:50:00,640 Epoch 5 Step: 26200 Batch Loss: 2.004221 Tokens per Sec: 20120, Lr: 0.000300\n", "2020-01-21 19:50:07,718 Epoch 5: total training loss 10735.40\n", "2020-01-21 19:50:07,718 EPOCH 6\n", "2020-01-21 19:50:12,641 Epoch 6 Step: 26300 Batch Loss: 1.866501 Tokens per Sec: 17975, Lr: 0.000300\n", "2020-01-21 19:50:24,211 Epoch 6 Step: 26400 Batch Loss: 1.986468 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 19:50:35,685 Epoch 6 Step: 26500 Batch Loss: 1.900309 Tokens per Sec: 20128, Lr: 0.000300\n", "2020-01-21 19:50:47,186 Epoch 6 Step: 26600 Batch Loss: 2.000271 Tokens per Sec: 20502, Lr: 0.000300\n", "2020-01-21 19:50:58,723 Epoch 6 Step: 26700 Batch Loss: 1.775312 Tokens per Sec: 20421, Lr: 0.000300\n", "2020-01-21 19:51:10,198 Epoch 6 Step: 26800 Batch Loss: 1.962010 Tokens per Sec: 20208, Lr: 0.000300\n", "2020-01-21 19:51:21,670 Epoch 6 Step: 26900 Batch Loss: 2.045076 Tokens per Sec: 20054, Lr: 0.000300\n", "2020-01-21 19:51:33,138 Epoch 6 Step: 27000 Batch Loss: 1.996650 Tokens per Sec: 19926, Lr: 0.000300\n", "2020-01-21 19:52:03,828 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:52:03,829 Saving new checkpoint.\n", "2020-01-21 19:52:04,081 Example #0\n", "2020-01-21 19:52:04,081 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:52:04,081 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:52:04,081 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó bá fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:52:04,082 Example #1\n", "2020-01-21 19:52:04,082 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:52:04,082 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:52:04,082 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ń ṣe mí láǹfààní gan - an ni .\n", "2020-01-21 19:52:04,082 Example #2\n", "2020-01-21 19:52:04,082 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:52:04,082 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:52:04,082 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:52:04,082 Example #3\n", "2020-01-21 19:52:04,082 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:52:04,082 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:52:04,082 \tHypothesis: Ó ti ní ìrírí tó pọ̀ tó , ó sì ń ṣe ohun tó o ṣe , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 19:52:04,083 Validation result (greedy) at epoch 6, step 27000: bleu: 21.67, loss: 54129.0703, ppl: 6.1528, duration: 30.9445s\n", "2020-01-21 19:52:15,537 Epoch 6 Step: 27100 Batch Loss: 2.051180 Tokens per Sec: 20004, Lr: 0.000300\n", "2020-01-21 19:52:27,006 Epoch 6 Step: 27200 Batch Loss: 1.938202 Tokens per Sec: 20111, Lr: 0.000300\n", "2020-01-21 19:52:38,400 Epoch 6 Step: 27300 Batch Loss: 1.987990 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-21 19:52:49,872 Epoch 6 Step: 27400 Batch Loss: 2.129202 Tokens per Sec: 20038, Lr: 0.000300\n", "2020-01-21 19:53:01,498 Epoch 6 Step: 27500 Batch Loss: 2.011361 Tokens per Sec: 20076, Lr: 0.000300\n", "2020-01-21 19:53:12,996 Epoch 6 Step: 27600 Batch Loss: 1.996651 Tokens per Sec: 19860, Lr: 0.000300\n", "2020-01-21 19:53:24,453 Epoch 6 Step: 27700 Batch Loss: 1.727295 Tokens per Sec: 20097, Lr: 0.000300\n", "2020-01-21 19:53:35,926 Epoch 6 Step: 27800 Batch Loss: 2.014113 Tokens per Sec: 19752, Lr: 0.000300\n", "2020-01-21 19:53:47,417 Epoch 6 Step: 27900 Batch Loss: 2.092309 Tokens per Sec: 20299, Lr: 0.000300\n", "2020-01-21 19:53:58,987 Epoch 6 Step: 28000 Batch Loss: 1.999863 Tokens per Sec: 20442, Lr: 0.000300\n", "2020-01-21 19:54:29,701 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:54:29,701 Saving new checkpoint.\n", "2020-01-21 19:54:29,976 Example #0\n", "2020-01-21 19:54:29,977 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:54:29,977 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:54:29,977 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó bá ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:54:29,977 Example #1\n", "2020-01-21 19:54:29,977 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:54:29,977 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:54:29,977 \tHypothesis: Mo ti wá rí i pé mo ti rí i pé iṣẹ́ tó ń ṣe mí láǹfààní .\n", "2020-01-21 19:54:29,977 Example #2\n", "2020-01-21 19:54:29,977 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:54:29,977 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:54:29,977 \tHypothesis: Ǹjẹ́ mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:54:29,977 Example #3\n", "2020-01-21 19:54:29,977 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:54:29,977 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:54:29,978 \tHypothesis: Ó ti rí ọ̀pọ̀ nǹkan tó o lè ṣe , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 19:54:29,978 Validation result (greedy) at epoch 6, step 28000: bleu: 21.65, loss: 53716.0703, ppl: 6.0680, duration: 30.9900s\n", "2020-01-21 19:54:41,526 Epoch 6 Step: 28100 Batch Loss: 2.050142 Tokens per Sec: 20143, Lr: 0.000300\n", "2020-01-21 19:54:53,023 Epoch 6 Step: 28200 Batch Loss: 2.147735 Tokens per Sec: 19972, Lr: 0.000300\n", "2020-01-21 19:55:04,381 Epoch 6 Step: 28300 Batch Loss: 2.023279 Tokens per Sec: 19530, Lr: 0.000300\n", "2020-01-21 19:55:15,868 Epoch 6 Step: 28400 Batch Loss: 2.155457 Tokens per Sec: 19842, Lr: 0.000300\n", "2020-01-21 19:55:27,339 Epoch 6 Step: 28500 Batch Loss: 1.785181 Tokens per Sec: 19928, Lr: 0.000300\n", "2020-01-21 19:55:38,869 Epoch 6 Step: 28600 Batch Loss: 1.923437 Tokens per Sec: 20211, Lr: 0.000300\n", "2020-01-21 19:55:50,381 Epoch 6 Step: 28700 Batch Loss: 1.960715 Tokens per Sec: 20216, Lr: 0.000300\n", "2020-01-21 19:56:01,891 Epoch 6 Step: 28800 Batch Loss: 1.979198 Tokens per Sec: 20438, Lr: 0.000300\n", "2020-01-21 19:56:13,346 Epoch 6 Step: 28900 Batch Loss: 2.164505 Tokens per Sec: 20222, Lr: 0.000300\n", "2020-01-21 19:56:24,779 Epoch 6 Step: 29000 Batch Loss: 1.920626 Tokens per Sec: 19480, Lr: 0.000300\n", "2020-01-21 19:56:55,454 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:56:55,454 Saving new checkpoint.\n", "2020-01-21 19:56:55,707 Example #0\n", "2020-01-21 19:56:55,707 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:56:55,707 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:56:55,708 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:56:55,708 Example #1\n", "2020-01-21 19:56:55,708 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:56:55,708 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:56:55,708 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ kan wà tó ń lọ lọ́wọ́ .\n", "2020-01-21 19:56:55,708 Example #2\n", "2020-01-21 19:56:55,708 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:56:55,708 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:56:55,708 \tHypothesis: Ǹjẹ́ mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:56:55,708 Example #3\n", "2020-01-21 19:56:55,709 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:56:55,709 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:56:55,709 \tHypothesis: Ó ti ní ìrírí tó pọ̀ tó , ó sì ń ṣeni láàánú , àmọ́ ó ń rìn sún mọ́ yín .\n", "2020-01-21 19:56:55,709 Validation result (greedy) at epoch 6, step 29000: bleu: 22.02, loss: 53442.4062, ppl: 6.0126, duration: 30.9293s\n", "2020-01-21 19:57:07,375 Epoch 6 Step: 29100 Batch Loss: 1.843305 Tokens per Sec: 20632, Lr: 0.000300\n", "2020-01-21 19:57:18,759 Epoch 6 Step: 29200 Batch Loss: 2.033980 Tokens per Sec: 19836, Lr: 0.000300\n", "2020-01-21 19:57:30,228 Epoch 6 Step: 29300 Batch Loss: 1.961978 Tokens per Sec: 20449, Lr: 0.000300\n", "2020-01-21 19:57:41,688 Epoch 6 Step: 29400 Batch Loss: 1.929999 Tokens per Sec: 19734, Lr: 0.000300\n", "2020-01-21 19:57:53,222 Epoch 6 Step: 29500 Batch Loss: 2.047199 Tokens per Sec: 20391, Lr: 0.000300\n", "2020-01-21 19:58:04,684 Epoch 6 Step: 29600 Batch Loss: 2.021725 Tokens per Sec: 20334, Lr: 0.000300\n", "2020-01-21 19:58:16,349 Epoch 6 Step: 29700 Batch Loss: 1.999767 Tokens per Sec: 20124, Lr: 0.000300\n", "2020-01-21 19:58:27,925 Epoch 6 Step: 29800 Batch Loss: 2.220733 Tokens per Sec: 20388, Lr: 0.000300\n", "2020-01-21 19:58:39,257 Epoch 6 Step: 29900 Batch Loss: 1.980001 Tokens per Sec: 19754, Lr: 0.000300\n", "2020-01-21 19:58:50,782 Epoch 6 Step: 30000 Batch Loss: 2.039815 Tokens per Sec: 20177, Lr: 0.000300\n", "2020-01-21 19:59:21,411 Hooray! New best validation result [ppl]!\n", "2020-01-21 19:59:21,411 Saving new checkpoint.\n", "2020-01-21 19:59:21,668 Example #0\n", "2020-01-21 19:59:21,668 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 19:59:21,668 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 19:59:21,668 \tHypothesis: Ó jẹ́ Orísun ìyè , Ẹni tí ó bá ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 19:59:21,668 Example #1\n", "2020-01-21 19:59:21,669 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 19:59:21,669 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 19:59:21,669 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ mi .\n", "2020-01-21 19:59:21,669 Example #2\n", "2020-01-21 19:59:21,669 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 19:59:21,669 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 19:59:21,669 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 19:59:21,669 Example #3\n", "2020-01-21 19:59:21,669 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 19:59:21,669 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 19:59:21,669 \tHypothesis: Ó ti ní ìrírí tó pọ̀ jù lọ , ó sì ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 19:59:21,669 Validation result (greedy) at epoch 6, step 30000: bleu: 21.73, loss: 53115.0312, ppl: 5.9469, duration: 30.8866s\n", "2020-01-21 19:59:33,243 Epoch 6 Step: 30100 Batch Loss: 1.963973 Tokens per Sec: 20207, Lr: 0.000300\n", "2020-01-21 19:59:44,614 Epoch 6 Step: 30200 Batch Loss: 2.119149 Tokens per Sec: 20085, Lr: 0.000300\n", "2020-01-21 19:59:56,210 Epoch 6 Step: 30300 Batch Loss: 1.994492 Tokens per Sec: 20249, Lr: 0.000300\n", "2020-01-21 20:00:07,610 Epoch 6 Step: 30400 Batch Loss: 2.433403 Tokens per Sec: 20002, Lr: 0.000300\n", "2020-01-21 20:00:19,216 Epoch 6 Step: 30500 Batch Loss: 1.794462 Tokens per Sec: 19756, Lr: 0.000300\n", "2020-01-21 20:00:31,156 Epoch 6 Step: 30600 Batch Loss: 1.889554 Tokens per Sec: 19073, Lr: 0.000300\n", "2020-01-21 20:00:43,177 Epoch 6 Step: 30700 Batch Loss: 1.924698 Tokens per Sec: 19110, Lr: 0.000300\n", "2020-01-21 20:00:54,918 Epoch 6 Step: 30800 Batch Loss: 2.014006 Tokens per Sec: 19750, Lr: 0.000300\n", "2020-01-21 20:01:06,507 Epoch 6 Step: 30900 Batch Loss: 1.952317 Tokens per Sec: 19756, Lr: 0.000300\n", "2020-01-21 20:01:18,279 Epoch 6 Step: 31000 Batch Loss: 1.974572 Tokens per Sec: 19774, Lr: 0.000300\n", "2020-01-21 20:01:49,302 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:01:49,302 Saving new checkpoint.\n", "2020-01-21 20:01:49,567 Example #0\n", "2020-01-21 20:01:49,568 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:01:49,568 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:01:49,568 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fi ẹ̀bùn àìlẹ́tọ̀ọ́sí hàn nípasẹ̀ Kristi .\n", "2020-01-21 20:01:49,568 Example #1\n", "2020-01-21 20:01:49,568 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:01:49,568 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:01:49,568 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ mi ò lè ṣe .\n", "2020-01-21 20:01:49,568 Example #2\n", "2020-01-21 20:01:49,568 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:01:49,568 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:01:49,568 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:01:49,568 Example #3\n", "2020-01-21 20:01:49,568 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:01:49,569 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:01:49,569 \tHypothesis: Ó ti ní ìrírí tó pọ̀ tó , ó sì ti ń ṣe é , àmọ́ ó ń rìn jìnnà sí ọ .\n", "2020-01-21 20:01:49,569 Validation result (greedy) at epoch 6, step 31000: bleu: 22.38, loss: 52551.7734, ppl: 5.8355, duration: 31.2898s\n", "2020-01-21 20:02:01,432 Epoch 6 Step: 31100 Batch Loss: 1.832404 Tokens per Sec: 19535, Lr: 0.000300\n", "2020-01-21 20:02:13,198 Epoch 6 Step: 31200 Batch Loss: 1.871430 Tokens per Sec: 19662, Lr: 0.000300\n", "2020-01-21 20:02:24,922 Epoch 6 Step: 31300 Batch Loss: 1.782610 Tokens per Sec: 19597, Lr: 0.000300\n", "2020-01-21 20:02:36,591 Epoch 6 Step: 31400 Batch Loss: 1.919147 Tokens per Sec: 19808, Lr: 0.000300\n", "2020-01-21 20:02:48,227 Epoch 6 Step: 31500 Batch Loss: 1.921812 Tokens per Sec: 20052, Lr: 0.000300\n", "2020-01-21 20:02:50,175 Epoch 6: total training loss 10322.65\n", "2020-01-21 20:02:50,176 EPOCH 7\n", "2020-01-21 20:03:00,617 Epoch 7 Step: 31600 Batch Loss: 2.236138 Tokens per Sec: 18217, Lr: 0.000300\n", "2020-01-21 20:03:12,370 Epoch 7 Step: 31700 Batch Loss: 1.770133 Tokens per Sec: 20352, Lr: 0.000300\n", "2020-01-21 20:03:24,131 Epoch 7 Step: 31800 Batch Loss: 1.718478 Tokens per Sec: 19839, Lr: 0.000300\n", "2020-01-21 20:03:35,972 Epoch 7 Step: 31900 Batch Loss: 1.920743 Tokens per Sec: 19076, Lr: 0.000300\n", "2020-01-21 20:03:47,900 Epoch 7 Step: 32000 Batch Loss: 2.297328 Tokens per Sec: 19131, Lr: 0.000300\n", "2020-01-21 20:04:19,478 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:04:19,478 Saving new checkpoint.\n", "2020-01-21 20:04:19,813 Example #0\n", "2020-01-21 20:04:19,814 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:04:19,814 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:04:19,814 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:04:19,814 Example #1\n", "2020-01-21 20:04:19,814 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:04:19,814 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:04:19,814 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ ni mo ti ń ṣe .\n", "2020-01-21 20:04:19,814 Example #2\n", "2020-01-21 20:04:19,814 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:04:19,815 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:04:19,815 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:04:19,815 Example #3\n", "2020-01-21 20:04:19,815 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:04:19,815 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:04:19,815 \tHypothesis: Ó ti ní ìrírí tó pọ̀ tó , ó sì ti ní ìbàlẹ̀ ọkàn ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:04:19,815 Validation result (greedy) at epoch 7, step 32000: bleu: 22.27, loss: 52423.5000, ppl: 5.8104, duration: 31.9145s\n", "2020-01-21 20:04:31,856 Epoch 7 Step: 32100 Batch Loss: 1.669074 Tokens per Sec: 18999, Lr: 0.000300\n", "2020-01-21 20:04:43,971 Epoch 7 Step: 32200 Batch Loss: 1.900992 Tokens per Sec: 19542, Lr: 0.000300\n", "2020-01-21 20:04:56,025 Epoch 7 Step: 32300 Batch Loss: 2.020962 Tokens per Sec: 19104, Lr: 0.000300\n", "2020-01-21 20:05:07,935 Epoch 7 Step: 32400 Batch Loss: 1.741645 Tokens per Sec: 19044, Lr: 0.000300\n", "2020-01-21 20:05:19,982 Epoch 7 Step: 32500 Batch Loss: 1.617646 Tokens per Sec: 19439, Lr: 0.000300\n", "2020-01-21 20:05:31,857 Epoch 7 Step: 32600 Batch Loss: 1.854889 Tokens per Sec: 18886, Lr: 0.000300\n", "2020-01-21 20:05:43,893 Epoch 7 Step: 32700 Batch Loss: 2.123662 Tokens per Sec: 19514, Lr: 0.000300\n", "2020-01-21 20:05:55,843 Epoch 7 Step: 32800 Batch Loss: 1.863141 Tokens per Sec: 19237, Lr: 0.000300\n", "2020-01-21 20:06:07,766 Epoch 7 Step: 32900 Batch Loss: 2.135591 Tokens per Sec: 19098, Lr: 0.000300\n", "2020-01-21 20:06:19,829 Epoch 7 Step: 33000 Batch Loss: 1.933736 Tokens per Sec: 19321, Lr: 0.000300\n", "2020-01-21 20:06:51,369 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:06:51,369 Saving new checkpoint.\n", "2020-01-21 20:06:51,680 Example #0\n", "2020-01-21 20:06:51,680 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:06:51,680 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:06:51,680 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:06:51,680 Example #1\n", "2020-01-21 20:06:51,681 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:06:51,681 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:06:51,681 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó ń lọ lọ́wọ́ ni mo ti ń ṣe .\n", "2020-01-21 20:06:51,681 Example #2\n", "2020-01-21 20:06:51,683 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:06:51,684 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:06:51,684 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:06:51,684 Example #3\n", "2020-01-21 20:06:51,684 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:06:51,684 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:06:51,684 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 20:06:51,684 Validation result (greedy) at epoch 7, step 33000: bleu: 22.43, loss: 51995.2109, ppl: 5.7275, duration: 31.8545s\n", "2020-01-21 20:07:03,758 Epoch 7 Step: 33100 Batch Loss: 2.022443 Tokens per Sec: 19257, Lr: 0.000300\n", "2020-01-21 20:07:15,697 Epoch 7 Step: 33200 Batch Loss: 1.856898 Tokens per Sec: 19201, Lr: 0.000300\n", "2020-01-21 20:07:27,797 Epoch 7 Step: 33300 Batch Loss: 1.928664 Tokens per Sec: 19197, Lr: 0.000300\n", "2020-01-21 20:07:39,813 Epoch 7 Step: 33400 Batch Loss: 1.828946 Tokens per Sec: 19201, Lr: 0.000300\n", "2020-01-21 20:07:51,818 Epoch 7 Step: 33500 Batch Loss: 2.062841 Tokens per Sec: 19051, Lr: 0.000300\n", "2020-01-21 20:08:03,872 Epoch 7 Step: 33600 Batch Loss: 2.032334 Tokens per Sec: 19312, Lr: 0.000300\n", "2020-01-21 20:08:15,909 Epoch 7 Step: 33700 Batch Loss: 1.971233 Tokens per Sec: 19395, Lr: 0.000300\n", "2020-01-21 20:08:27,860 Epoch 7 Step: 33800 Batch Loss: 2.079571 Tokens per Sec: 18847, Lr: 0.000300\n", "2020-01-21 20:08:39,851 Epoch 7 Step: 33900 Batch Loss: 1.861473 Tokens per Sec: 19531, Lr: 0.000300\n", "2020-01-21 20:08:51,743 Epoch 7 Step: 34000 Batch Loss: 1.722673 Tokens per Sec: 19317, Lr: 0.000300\n", "2020-01-21 20:09:23,330 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:09:23,330 Saving new checkpoint.\n", "2020-01-21 20:09:23,650 Example #0\n", "2020-01-21 20:09:23,651 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:09:23,651 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:09:23,651 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:09:23,651 Example #1\n", "2020-01-21 20:09:23,651 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:09:23,651 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:09:23,651 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ni mo máa ń ṣe .\n", "2020-01-21 20:09:23,651 Example #2\n", "2020-01-21 20:09:23,651 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:09:23,651 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:09:23,651 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:09:23,651 Example #3\n", "2020-01-21 20:09:23,652 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:09:23,652 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:09:23,652 \tHypothesis: Ó ní ìrírí tó pọ̀ jù lọ , ó sì ní ìrírí tó ju ìwọ lọ , àmọ́ ó máa ń rìn jìnnà sí ọ .\n", "2020-01-21 20:09:23,652 Validation result (greedy) at epoch 7, step 34000: bleu: 22.50, loss: 51986.7930, ppl: 5.7259, duration: 31.9090s\n", "2020-01-21 20:09:35,430 Epoch 7 Step: 34100 Batch Loss: 1.720479 Tokens per Sec: 19189, Lr: 0.000300\n", "2020-01-21 20:09:47,347 Epoch 7 Step: 34200 Batch Loss: 1.897697 Tokens per Sec: 19440, Lr: 0.000300\n", "2020-01-21 20:09:59,238 Epoch 7 Step: 34300 Batch Loss: 1.809515 Tokens per Sec: 19041, Lr: 0.000300\n", "2020-01-21 20:10:11,069 Epoch 7 Step: 34400 Batch Loss: 1.828367 Tokens per Sec: 19655, Lr: 0.000300\n", "2020-01-21 20:10:23,004 Epoch 7 Step: 34500 Batch Loss: 1.907385 Tokens per Sec: 19733, Lr: 0.000300\n", "2020-01-21 20:10:34,898 Epoch 7 Step: 34600 Batch Loss: 1.788642 Tokens per Sec: 19640, Lr: 0.000300\n", "2020-01-21 20:10:46,721 Epoch 7 Step: 34700 Batch Loss: 1.849609 Tokens per Sec: 19675, Lr: 0.000300\n", "2020-01-21 20:10:58,588 Epoch 7 Step: 34800 Batch Loss: 1.873729 Tokens per Sec: 19379, Lr: 0.000300\n", "2020-01-21 20:11:10,523 Epoch 7 Step: 34900 Batch Loss: 1.974618 Tokens per Sec: 19517, Lr: 0.000300\n", "2020-01-21 20:11:22,401 Epoch 7 Step: 35000 Batch Loss: 2.086425 Tokens per Sec: 19376, Lr: 0.000300\n", "2020-01-21 20:11:53,831 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:11:53,832 Saving new checkpoint.\n", "2020-01-21 20:11:54,106 Example #0\n", "2020-01-21 20:11:54,106 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:11:54,106 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:11:54,106 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:11:54,106 Example #1\n", "2020-01-21 20:11:54,106 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:11:54,106 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:11:54,106 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ kan wà tó yẹ kí n ṣe .\n", "2020-01-21 20:11:54,106 Example #2\n", "2020-01-21 20:11:54,107 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:11:54,107 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:11:54,107 \tHypothesis: Ṣé mo máa ń ní àjọṣe tó dára pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 20:11:54,107 Example #3\n", "2020-01-21 20:11:54,107 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:11:54,107 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:11:54,107 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ìtẹ́lọ́rùn ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 20:11:54,107 Validation result (greedy) at epoch 7, step 35000: bleu: 23.13, loss: 51410.2148, ppl: 5.6161, duration: 31.7055s\n", "2020-01-21 20:12:06,069 Epoch 7 Step: 35100 Batch Loss: 1.957971 Tokens per Sec: 19625, Lr: 0.000300\n", "2020-01-21 20:12:17,955 Epoch 7 Step: 35200 Batch Loss: 1.923553 Tokens per Sec: 19801, Lr: 0.000300\n", "2020-01-21 20:12:29,919 Epoch 7 Step: 35300 Batch Loss: 1.735227 Tokens per Sec: 19484, Lr: 0.000300\n", "2020-01-21 20:12:41,717 Epoch 7 Step: 35400 Batch Loss: 2.046762 Tokens per Sec: 19291, Lr: 0.000300\n", "2020-01-21 20:12:53,726 Epoch 7 Step: 35500 Batch Loss: 1.801842 Tokens per Sec: 19193, Lr: 0.000300\n", "2020-01-21 20:13:05,830 Epoch 7 Step: 35600 Batch Loss: 1.866253 Tokens per Sec: 20021, Lr: 0.000300\n", "2020-01-21 20:13:17,841 Epoch 7 Step: 35700 Batch Loss: 2.091116 Tokens per Sec: 19285, Lr: 0.000300\n", "2020-01-21 20:13:29,746 Epoch 7 Step: 35800 Batch Loss: 1.870419 Tokens per Sec: 19085, Lr: 0.000300\n", "2020-01-21 20:13:41,786 Epoch 7 Step: 35900 Batch Loss: 1.865358 Tokens per Sec: 19409, Lr: 0.000300\n", "2020-01-21 20:13:53,721 Epoch 7 Step: 36000 Batch Loss: 1.930980 Tokens per Sec: 19389, Lr: 0.000300\n", "2020-01-21 20:14:25,193 Example #0\n", "2020-01-21 20:14:25,193 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:14:25,193 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:14:25,193 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:14:25,193 Example #1\n", "2020-01-21 20:14:25,193 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:14:25,193 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:14:25,193 \tHypothesis: Ní báyìí , mo ti wá rí i pé mo ti ń wá ibi iṣẹ́ .\n", "2020-01-21 20:14:25,193 Example #2\n", "2020-01-21 20:14:25,194 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:14:25,194 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:14:25,194 \tHypothesis: Ṣé mo máa ń ní àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:14:25,194 Example #3\n", "2020-01-21 20:14:25,194 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:14:25,194 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:14:25,194 \tHypothesis: Ó ní ìrírí tó pọ̀ jù lọ , ó sì tún ní ọ̀pọ̀ nǹkan tó o ṣe , àmọ́ ó máa ń rìn nítòsí rẹ .\n", "2020-01-21 20:14:25,194 Validation result (greedy) at epoch 7, step 36000: bleu: 22.61, loss: 51594.5469, ppl: 5.6510, duration: 31.4729s\n", "2020-01-21 20:14:37,041 Epoch 7 Step: 36100 Batch Loss: 2.049083 Tokens per Sec: 19373, Lr: 0.000300\n", "2020-01-21 20:14:49,005 Epoch 7 Step: 36200 Batch Loss: 1.978698 Tokens per Sec: 19832, Lr: 0.000300\n", "2020-01-21 20:15:00,818 Epoch 7 Step: 36300 Batch Loss: 1.824265 Tokens per Sec: 19037, Lr: 0.000300\n", "2020-01-21 20:15:12,805 Epoch 7 Step: 36400 Batch Loss: 1.807089 Tokens per Sec: 19478, Lr: 0.000300\n", "2020-01-21 20:15:24,664 Epoch 7 Step: 36500 Batch Loss: 1.825999 Tokens per Sec: 18953, Lr: 0.000300\n", "2020-01-21 20:15:36,614 Epoch 7 Step: 36600 Batch Loss: 1.950594 Tokens per Sec: 19535, Lr: 0.000300\n", "2020-01-21 20:15:48,538 Epoch 7 Step: 36700 Batch Loss: 2.088950 Tokens per Sec: 19427, Lr: 0.000300\n", "2020-01-21 20:15:56,310 Epoch 7: total training loss 9994.69\n", "2020-01-21 20:15:56,310 EPOCH 8\n", "2020-01-21 20:16:01,256 Epoch 8 Step: 36800 Batch Loss: 1.802958 Tokens per Sec: 17390, Lr: 0.000300\n", "2020-01-21 20:16:13,177 Epoch 8 Step: 36900 Batch Loss: 1.764945 Tokens per Sec: 19328, Lr: 0.000300\n", "2020-01-21 20:16:25,078 Epoch 8 Step: 37000 Batch Loss: 1.988000 Tokens per Sec: 19224, Lr: 0.000300\n", "2020-01-21 20:16:56,568 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:16:56,569 Saving new checkpoint.\n", "2020-01-21 20:16:56,852 Example #0\n", "2020-01-21 20:16:56,852 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:16:56,852 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:16:56,852 \tHypothesis: Òun ni Orísun ìyè , Ẹni tó ń fúnni ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi .\n", "2020-01-21 20:16:56,852 Example #1\n", "2020-01-21 20:16:56,853 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:16:56,853 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:16:56,853 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mọ́kàn mi lára .\n", "2020-01-21 20:16:56,853 Example #2\n", "2020-01-21 20:16:56,853 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:16:56,853 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:16:56,853 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:16:56,853 Example #3\n", "2020-01-21 20:16:56,853 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:16:56,853 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:16:56,853 \tHypothesis: Ó ní ìrírí tó ju ti tẹ́lẹ̀ lọ , àmọ́ ó máa ń rìn sún mọ́lé .\n", "2020-01-21 20:16:56,854 Validation result (greedy) at epoch 8, step 37000: bleu: 23.25, loss: 51124.5430, ppl: 5.5625, duration: 31.7756s\n", "2020-01-21 20:17:08,777 Epoch 8 Step: 37100 Batch Loss: 1.711181 Tokens per Sec: 19496, Lr: 0.000300\n", "2020-01-21 20:17:20,751 Epoch 8 Step: 37200 Batch Loss: 1.915724 Tokens per Sec: 19076, Lr: 0.000300\n", "2020-01-21 20:17:32,747 Epoch 8 Step: 37300 Batch Loss: 1.740670 Tokens per Sec: 19363, Lr: 0.000300\n", "2020-01-21 20:17:44,604 Epoch 8 Step: 37400 Batch Loss: 1.546037 Tokens per Sec: 19044, Lr: 0.000300\n", "2020-01-21 20:17:56,535 Epoch 8 Step: 37500 Batch Loss: 1.777987 Tokens per Sec: 19217, Lr: 0.000300\n", "2020-01-21 20:18:08,485 Epoch 8 Step: 37600 Batch Loss: 1.731766 Tokens per Sec: 19685, Lr: 0.000300\n", "2020-01-21 20:18:20,482 Epoch 8 Step: 37700 Batch Loss: 1.823317 Tokens per Sec: 19315, Lr: 0.000300\n", "2020-01-21 20:18:32,397 Epoch 8 Step: 37800 Batch Loss: 1.895662 Tokens per Sec: 19274, Lr: 0.000300\n", "2020-01-21 20:18:44,283 Epoch 8 Step: 37900 Batch Loss: 1.937449 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-21 20:18:56,180 Epoch 8 Step: 38000 Batch Loss: 1.996223 Tokens per Sec: 19165, Lr: 0.000300\n", "2020-01-21 20:19:27,710 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:19:27,710 Saving new checkpoint.\n", "2020-01-21 20:19:28,011 Example #0\n", "2020-01-21 20:19:28,012 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:19:28,012 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:19:28,012 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi .\n", "2020-01-21 20:19:28,012 Example #1\n", "2020-01-21 20:19:28,012 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:19:28,012 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:19:28,012 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 20:19:28,012 Example #2\n", "2020-01-21 20:19:28,012 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:19:28,012 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:19:28,012 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:19:28,013 Example #3\n", "2020-01-21 20:19:28,013 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:19:28,013 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:19:28,013 \tHypothesis: Ó ní ìrírí tó pọ̀ jù lọ , ó sì ń ṣiyèméjì ju bó ṣe ń ṣe lọ , àmọ́ ó máa ń rìn sún mọ́ ọ .\n", "2020-01-21 20:19:28,013 Validation result (greedy) at epoch 8, step 38000: bleu: 23.20, loss: 50970.9531, ppl: 5.5339, duration: 31.8325s\n", "2020-01-21 20:19:39,966 Epoch 8 Step: 38100 Batch Loss: 2.129823 Tokens per Sec: 18955, Lr: 0.000300\n", "2020-01-21 20:19:51,968 Epoch 8 Step: 38200 Batch Loss: 1.961911 Tokens per Sec: 19344, Lr: 0.000300\n", "2020-01-21 20:20:03,892 Epoch 8 Step: 38300 Batch Loss: 1.836431 Tokens per Sec: 19555, Lr: 0.000300\n", "2020-01-21 20:20:15,919 Epoch 8 Step: 38400 Batch Loss: 1.765153 Tokens per Sec: 19313, Lr: 0.000300\n", "2020-01-21 20:20:27,824 Epoch 8 Step: 38500 Batch Loss: 1.924541 Tokens per Sec: 19387, Lr: 0.000300\n", "2020-01-21 20:20:39,739 Epoch 8 Step: 38600 Batch Loss: 1.764618 Tokens per Sec: 19087, Lr: 0.000300\n", "2020-01-21 20:20:51,598 Epoch 8 Step: 38700 Batch Loss: 1.915948 Tokens per Sec: 18951, Lr: 0.000300\n", "2020-01-21 20:21:03,525 Epoch 8 Step: 38800 Batch Loss: 1.697874 Tokens per Sec: 19359, Lr: 0.000300\n", "2020-01-21 20:21:15,483 Epoch 8 Step: 38900 Batch Loss: 1.636787 Tokens per Sec: 19340, Lr: 0.000300\n", "2020-01-21 20:21:27,407 Epoch 8 Step: 39000 Batch Loss: 1.970204 Tokens per Sec: 19014, Lr: 0.000300\n", "2020-01-21 20:21:59,078 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:21:59,078 Saving new checkpoint.\n", "2020-01-21 20:21:59,362 Example #0\n", "2020-01-21 20:21:59,363 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:21:59,363 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:21:59,363 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni ní ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:21:59,363 Example #1\n", "2020-01-21 20:21:59,363 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:21:59,363 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:21:59,363 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára jù lọ ni .\n", "2020-01-21 20:21:59,363 Example #2\n", "2020-01-21 20:21:59,363 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:21:59,363 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:21:59,363 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 20:21:59,363 Example #3\n", "2020-01-21 20:21:59,363 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:21:59,363 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:21:59,363 \tHypothesis: Ó ti ní ìrírí tó pọ̀ jù lọ , ó sì ń ṣiyèméjì ju ìwọ ṣe lọ , àmọ́ ó ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 20:21:59,363 Validation result (greedy) at epoch 8, step 39000: bleu: 23.46, loss: 50665.5078, ppl: 5.4775, duration: 31.9560s\n", "2020-01-21 20:22:11,347 Epoch 8 Step: 39100 Batch Loss: 1.958285 Tokens per Sec: 19393, Lr: 0.000300\n", "2020-01-21 20:22:23,308 Epoch 8 Step: 39200 Batch Loss: 1.727087 Tokens per Sec: 19221, Lr: 0.000300\n", "2020-01-21 20:22:35,262 Epoch 8 Step: 39300 Batch Loss: 1.839649 Tokens per Sec: 19010, Lr: 0.000300\n", "2020-01-21 20:22:47,246 Epoch 8 Step: 39400 Batch Loss: 1.783932 Tokens per Sec: 19685, Lr: 0.000300\n", "2020-01-21 20:22:59,230 Epoch 8 Step: 39500 Batch Loss: 1.873974 Tokens per Sec: 19386, Lr: 0.000300\n", "2020-01-21 20:23:11,241 Epoch 8 Step: 39600 Batch Loss: 1.948219 Tokens per Sec: 19443, Lr: 0.000300\n", "2020-01-21 20:23:23,214 Epoch 8 Step: 39700 Batch Loss: 1.915992 Tokens per Sec: 19364, Lr: 0.000300\n", "2020-01-21 20:23:35,124 Epoch 8 Step: 39800 Batch Loss: 1.698352 Tokens per Sec: 19393, Lr: 0.000300\n", "2020-01-21 20:23:47,117 Epoch 8 Step: 39900 Batch Loss: 1.862834 Tokens per Sec: 19751, Lr: 0.000300\n", "2020-01-21 20:23:59,089 Epoch 8 Step: 40000 Batch Loss: 1.460901 Tokens per Sec: 19503, Lr: 0.000300\n", "2020-01-21 20:24:30,721 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:24:30,721 Saving new checkpoint.\n", "2020-01-21 20:24:30,989 Example #0\n", "2020-01-21 20:24:30,990 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:24:30,990 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:24:30,990 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:24:30,990 Example #1\n", "2020-01-21 20:24:30,990 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:24:30,990 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:24:30,990 \tHypothesis: Mo ti wá rí i pé mo ti ń wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 20:24:30,990 Example #2\n", "2020-01-21 20:24:30,990 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:24:30,990 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:24:30,990 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 20:24:30,991 Example #3\n", "2020-01-21 20:24:30,991 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:24:30,991 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:24:30,991 \tHypothesis: Ó ní ìrírí tó pọ̀ gan - an , ó sì ń ṣiyèméjì ju bó ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 20:24:30,991 Validation result (greedy) at epoch 8, step 40000: bleu: 23.73, loss: 50158.0820, ppl: 5.3850, duration: 31.9015s\n", "2020-01-21 20:24:42,951 Epoch 8 Step: 40100 Batch Loss: 1.836776 Tokens per Sec: 19184, Lr: 0.000300\n", "2020-01-21 20:24:54,939 Epoch 8 Step: 40200 Batch Loss: 1.854285 Tokens per Sec: 19380, Lr: 0.000300\n", "2020-01-21 20:25:06,894 Epoch 8 Step: 40300 Batch Loss: 1.877794 Tokens per Sec: 19201, Lr: 0.000300\n", "2020-01-21 20:25:18,798 Epoch 8 Step: 40400 Batch Loss: 1.735495 Tokens per Sec: 19212, Lr: 0.000300\n", "2020-01-21 20:25:30,806 Epoch 8 Step: 40500 Batch Loss: 2.067002 Tokens per Sec: 19284, Lr: 0.000300\n", "2020-01-21 20:25:42,709 Epoch 8 Step: 40600 Batch Loss: 1.890907 Tokens per Sec: 19303, Lr: 0.000300\n", "2020-01-21 20:25:54,630 Epoch 8 Step: 40700 Batch Loss: 1.665779 Tokens per Sec: 19328, Lr: 0.000300\n", "2020-01-21 20:26:06,520 Epoch 8 Step: 40800 Batch Loss: 1.772697 Tokens per Sec: 19390, Lr: 0.000300\n", "2020-01-21 20:26:18,527 Epoch 8 Step: 40900 Batch Loss: 1.823031 Tokens per Sec: 19569, Lr: 0.000300\n", "2020-01-21 20:26:30,481 Epoch 8 Step: 41000 Batch Loss: 1.950003 Tokens per Sec: 19254, Lr: 0.000300\n", "2020-01-21 20:27:01,974 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:27:01,974 Saving new checkpoint.\n", "2020-01-21 20:27:02,253 Example #0\n", "2020-01-21 20:27:02,253 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:27:02,253 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:27:02,253 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:27:02,254 Example #1\n", "2020-01-21 20:27:02,254 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:27:02,254 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:27:02,254 \tHypothesis: Mo ti wá rí i pé mo ti ń ṣiṣẹ́ dáadáa .\n", "2020-01-21 20:27:02,254 Example #2\n", "2020-01-21 20:27:02,254 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:27:02,254 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:27:02,254 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:27:02,254 Example #3\n", "2020-01-21 20:27:02,255 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:27:02,255 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:27:02,255 \tHypothesis: Ó ní ìrírí tó pọ̀ jù lọ àti fídíò ju ìwọ ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:27:02,255 Validation result (greedy) at epoch 8, step 41000: bleu: 23.85, loss: 50007.1328, ppl: 5.3577, duration: 31.7738s\n", "2020-01-21 20:27:14,162 Epoch 8 Step: 41100 Batch Loss: 1.774646 Tokens per Sec: 19220, Lr: 0.000300\n", "2020-01-21 20:27:26,205 Epoch 8 Step: 41200 Batch Loss: 1.897734 Tokens per Sec: 19695, Lr: 0.000300\n", "2020-01-21 20:27:38,140 Epoch 8 Step: 41300 Batch Loss: 1.805170 Tokens per Sec: 19385, Lr: 0.000300\n", "2020-01-21 20:27:50,077 Epoch 8 Step: 41400 Batch Loss: 2.139789 Tokens per Sec: 19624, Lr: 0.000300\n", "2020-01-21 20:28:02,030 Epoch 8 Step: 41500 Batch Loss: 1.636944 Tokens per Sec: 19332, Lr: 0.000300\n", "2020-01-21 20:28:13,943 Epoch 8 Step: 41600 Batch Loss: 1.717029 Tokens per Sec: 19426, Lr: 0.000300\n", "2020-01-21 20:28:25,841 Epoch 8 Step: 41700 Batch Loss: 1.761733 Tokens per Sec: 19563, Lr: 0.000300\n", "2020-01-21 20:28:37,715 Epoch 8 Step: 41800 Batch Loss: 1.823645 Tokens per Sec: 19496, Lr: 0.000300\n", "2020-01-21 20:28:49,765 Epoch 8 Step: 41900 Batch Loss: 1.855681 Tokens per Sec: 19896, Lr: 0.000300\n", "2020-01-21 20:29:01,553 Epoch 8 Step: 42000 Batch Loss: 1.738223 Tokens per Sec: 19413, Lr: 0.000300\n", "2020-01-21 20:29:33,076 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:29:33,076 Saving new checkpoint.\n", "2020-01-21 20:29:33,361 Example #0\n", "2020-01-21 20:29:33,362 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:29:33,362 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:29:33,362 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:29:33,362 Example #1\n", "2020-01-21 20:29:33,362 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:29:33,362 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:29:33,362 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ mi ò tó nǹkan .\n", "2020-01-21 20:29:33,362 Example #2\n", "2020-01-21 20:29:33,362 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:29:33,362 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:29:33,362 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:29:33,362 Example #3\n", "2020-01-21 20:29:33,362 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:29:33,362 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:29:33,362 \tHypothesis: Ó ní ìrírí tó pọ̀ jù , ó sì ní ìrírí tó ju ìwọ ṣe lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 20:29:33,363 Validation result (greedy) at epoch 8, step 42000: bleu: 24.37, loss: 49732.5586, ppl: 5.3086, duration: 31.8096s\n", "2020-01-21 20:29:35,061 Epoch 8: total training loss 9746.17\n", "2020-01-21 20:29:35,061 EPOCH 9\n", "2020-01-21 20:29:45,840 Epoch 9 Step: 42100 Batch Loss: 1.870630 Tokens per Sec: 18406, Lr: 0.000300\n", "2020-01-21 20:29:57,779 Epoch 9 Step: 42200 Batch Loss: 1.862263 Tokens per Sec: 19447, Lr: 0.000300\n", "2020-01-21 20:30:09,582 Epoch 9 Step: 42300 Batch Loss: 1.783735 Tokens per Sec: 19794, Lr: 0.000300\n", "2020-01-21 20:30:21,478 Epoch 9 Step: 42400 Batch Loss: 1.773499 Tokens per Sec: 19466, Lr: 0.000300\n", "2020-01-21 20:30:33,385 Epoch 9 Step: 42500 Batch Loss: 1.952098 Tokens per Sec: 19694, Lr: 0.000300\n", "2020-01-21 20:30:45,197 Epoch 9 Step: 42600 Batch Loss: 1.749482 Tokens per Sec: 19524, Lr: 0.000300\n", "2020-01-21 20:30:57,021 Epoch 9 Step: 42700 Batch Loss: 1.894094 Tokens per Sec: 19450, Lr: 0.000300\n", "2020-01-21 20:31:08,782 Epoch 9 Step: 42800 Batch Loss: 2.189911 Tokens per Sec: 19414, Lr: 0.000300\n", "2020-01-21 20:31:20,759 Epoch 9 Step: 42900 Batch Loss: 1.887291 Tokens per Sec: 19881, Lr: 0.000300\n", "2020-01-21 20:31:32,475 Epoch 9 Step: 43000 Batch Loss: 1.922357 Tokens per Sec: 19417, Lr: 0.000300\n", "2020-01-21 20:32:03,807 Example #0\n", "2020-01-21 20:32:03,808 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:32:03,808 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:32:03,808 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fi í fún wa ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:32:03,808 Example #1\n", "2020-01-21 20:32:03,808 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:32:03,808 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:32:03,808 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 20:32:03,808 Example #2\n", "2020-01-21 20:32:03,808 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:32:03,808 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:32:03,808 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:32:03,808 Example #3\n", "2020-01-21 20:32:03,808 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:32:03,808 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:32:03,808 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:32:03,808 Validation result (greedy) at epoch 9, step 43000: bleu: 23.55, loss: 49740.2461, ppl: 5.3100, duration: 31.3330s\n", "2020-01-21 20:32:15,711 Epoch 9 Step: 43100 Batch Loss: 1.660041 Tokens per Sec: 19916, Lr: 0.000300\n", "2020-01-21 20:32:27,432 Epoch 9 Step: 43200 Batch Loss: 1.865270 Tokens per Sec: 19212, Lr: 0.000300\n", "2020-01-21 20:32:39,270 Epoch 9 Step: 43300 Batch Loss: 1.878003 Tokens per Sec: 19235, Lr: 0.000300\n", "2020-01-21 20:32:51,115 Epoch 9 Step: 43400 Batch Loss: 1.836100 Tokens per Sec: 19537, Lr: 0.000300\n", "2020-01-21 20:33:03,042 Epoch 9 Step: 43500 Batch Loss: 1.803205 Tokens per Sec: 19533, Lr: 0.000300\n", "2020-01-21 20:33:14,858 Epoch 9 Step: 43600 Batch Loss: 1.771130 Tokens per Sec: 19246, Lr: 0.000300\n", "2020-01-21 20:33:26,627 Epoch 9 Step: 43700 Batch Loss: 1.821852 Tokens per Sec: 19467, Lr: 0.000300\n", "2020-01-21 20:33:38,480 Epoch 9 Step: 43800 Batch Loss: 1.827340 Tokens per Sec: 19606, Lr: 0.000300\n", "2020-01-21 20:33:50,334 Epoch 9 Step: 43900 Batch Loss: 1.833475 Tokens per Sec: 19895, Lr: 0.000300\n", "2020-01-21 20:34:02,234 Epoch 9 Step: 44000 Batch Loss: 1.936268 Tokens per Sec: 19680, Lr: 0.000300\n", "2020-01-21 20:34:33,533 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:34:33,534 Saving new checkpoint.\n", "2020-01-21 20:34:33,810 Example #0\n", "2020-01-21 20:34:33,810 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:34:33,810 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:34:33,810 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:34:33,810 Example #1\n", "2020-01-21 20:34:33,811 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:34:33,811 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:34:33,811 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ kan tó yẹ kí n máa ṣe .\n", "2020-01-21 20:34:33,811 Example #2\n", "2020-01-21 20:34:33,811 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:34:33,811 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:34:33,811 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:34:33,811 Example #3\n", "2020-01-21 20:34:33,811 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:34:33,811 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:34:33,811 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ìrírí tó ju ìwọ ṣe lọ , ṣùgbọ́n ó ń rìn sún mọ́ ẹ .\n", "2020-01-21 20:34:33,811 Validation result (greedy) at epoch 9, step 44000: bleu: 23.85, loss: 49519.6250, ppl: 5.2708, duration: 31.5774s\n", "2020-01-21 20:34:45,619 Epoch 9 Step: 44100 Batch Loss: 1.601938 Tokens per Sec: 19701, Lr: 0.000300\n", "2020-01-21 20:34:57,341 Epoch 9 Step: 44200 Batch Loss: 1.800442 Tokens per Sec: 19632, Lr: 0.000300\n", "2020-01-21 20:35:09,131 Epoch 9 Step: 44300 Batch Loss: 1.752886 Tokens per Sec: 19619, Lr: 0.000300\n", "2020-01-21 20:35:20,947 Epoch 9 Step: 44400 Batch Loss: 1.738993 Tokens per Sec: 19463, Lr: 0.000300\n", "2020-01-21 20:35:32,865 Epoch 9 Step: 44500 Batch Loss: 1.945103 Tokens per Sec: 19090, Lr: 0.000300\n", "2020-01-21 20:35:44,720 Epoch 9 Step: 44600 Batch Loss: 2.021991 Tokens per Sec: 19727, Lr: 0.000300\n", "2020-01-21 20:35:56,575 Epoch 9 Step: 44700 Batch Loss: 1.593724 Tokens per Sec: 19176, Lr: 0.000300\n", "2020-01-21 20:36:08,319 Epoch 9 Step: 44800 Batch Loss: 1.831868 Tokens per Sec: 19185, Lr: 0.000300\n", "2020-01-21 20:36:20,144 Epoch 9 Step: 44900 Batch Loss: 1.729220 Tokens per Sec: 19908, Lr: 0.000300\n", "2020-01-21 20:36:32,024 Epoch 9 Step: 45000 Batch Loss: 1.864531 Tokens per Sec: 19997, Lr: 0.000300\n", "2020-01-21 20:37:03,289 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:37:03,289 Saving new checkpoint.\n", "2020-01-21 20:37:03,557 Example #0\n", "2020-01-21 20:37:03,557 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:37:03,557 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:37:03,557 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:37:03,557 Example #1\n", "2020-01-21 20:37:03,558 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:37:03,558 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:37:03,558 \tHypothesis: Mo wá ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 20:37:03,558 Example #2\n", "2020-01-21 20:37:03,558 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:37:03,558 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:37:03,558 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:37:03,558 Example #3\n", "2020-01-21 20:37:03,558 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:37:03,558 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:37:03,558 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ń ṣamọ̀nà ju ìwọ lọ , ṣùgbọ́n ó ń rìn nítòsí rẹ .\n", "2020-01-21 20:37:03,558 Validation result (greedy) at epoch 9, step 45000: bleu: 24.52, loss: 49444.2930, ppl: 5.2575, duration: 31.5336s\n", "2020-01-21 20:37:15,420 Epoch 9 Step: 45100 Batch Loss: 2.019919 Tokens per Sec: 19341, Lr: 0.000300\n", "2020-01-21 20:37:27,207 Epoch 9 Step: 45200 Batch Loss: 1.667436 Tokens per Sec: 19579, Lr: 0.000300\n", "2020-01-21 20:37:38,922 Epoch 9 Step: 45300 Batch Loss: 1.862407 Tokens per Sec: 19150, Lr: 0.000300\n", "2020-01-21 20:37:50,847 Epoch 9 Step: 45400 Batch Loss: 1.979033 Tokens per Sec: 20066, Lr: 0.000300\n", "2020-01-21 20:38:02,683 Epoch 9 Step: 45500 Batch Loss: 1.884405 Tokens per Sec: 19811, Lr: 0.000300\n", "2020-01-21 20:38:14,456 Epoch 9 Step: 45600 Batch Loss: 1.917687 Tokens per Sec: 19252, Lr: 0.000300\n", "2020-01-21 20:38:26,147 Epoch 9 Step: 45700 Batch Loss: 1.770746 Tokens per Sec: 19008, Lr: 0.000300\n", "2020-01-21 20:38:37,963 Epoch 9 Step: 45800 Batch Loss: 1.741899 Tokens per Sec: 19583, Lr: 0.000300\n", "2020-01-21 20:38:49,752 Epoch 9 Step: 45900 Batch Loss: 1.396619 Tokens per Sec: 19474, Lr: 0.000300\n", "2020-01-21 20:39:01,581 Epoch 9 Step: 46000 Batch Loss: 1.954584 Tokens per Sec: 19954, Lr: 0.000300\n", "2020-01-21 20:39:32,917 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:39:32,918 Saving new checkpoint.\n", "2020-01-21 20:39:33,174 Example #0\n", "2020-01-21 20:39:33,174 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:39:33,174 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:39:33,174 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:39:33,174 Example #1\n", "2020-01-21 20:39:33,174 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:39:33,174 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:39:33,174 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 20:39:33,175 Example #2\n", "2020-01-21 20:39:33,175 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:39:33,175 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:39:33,175 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:39:33,175 Example #3\n", "2020-01-21 20:39:33,175 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:39:33,175 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:39:33,175 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ń ṣamọ̀nà ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:39:33,175 Validation result (greedy) at epoch 9, step 46000: bleu: 24.19, loss: 49065.2227, ppl: 5.1910, duration: 31.5938s\n", "2020-01-21 20:39:45,081 Epoch 9 Step: 46100 Batch Loss: 1.676397 Tokens per Sec: 19586, Lr: 0.000300\n", "2020-01-21 20:39:56,872 Epoch 9 Step: 46200 Batch Loss: 1.893431 Tokens per Sec: 19299, Lr: 0.000300\n", "2020-01-21 20:40:08,706 Epoch 9 Step: 46300 Batch Loss: 1.872064 Tokens per Sec: 19824, Lr: 0.000300\n", "2020-01-21 20:40:20,565 Epoch 9 Step: 46400 Batch Loss: 1.944153 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-21 20:40:32,352 Epoch 9 Step: 46500 Batch Loss: 1.739758 Tokens per Sec: 19607, Lr: 0.000300\n", "2020-01-21 20:40:44,189 Epoch 9 Step: 46600 Batch Loss: 1.817476 Tokens per Sec: 19373, Lr: 0.000300\n", "2020-01-21 20:40:56,017 Epoch 9 Step: 46700 Batch Loss: 1.487691 Tokens per Sec: 19914, Lr: 0.000300\n", "2020-01-21 20:41:07,831 Epoch 9 Step: 46800 Batch Loss: 1.621465 Tokens per Sec: 19546, Lr: 0.000300\n", "2020-01-21 20:41:19,755 Epoch 9 Step: 46900 Batch Loss: 1.882546 Tokens per Sec: 19935, Lr: 0.000300\n", "2020-01-21 20:41:31,481 Epoch 9 Step: 47000 Batch Loss: 1.553997 Tokens per Sec: 19179, Lr: 0.000300\n", "2020-01-21 20:42:02,733 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:42:02,734 Saving new checkpoint.\n", "2020-01-21 20:42:03,013 Example #0\n", "2020-01-21 20:42:03,014 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:42:03,014 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:42:03,014 \tHypothesis: Òun ni Orísun ìwàláàyè , Ẹni tí ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:42:03,014 Example #1\n", "2020-01-21 20:42:03,014 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:42:03,014 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:42:03,014 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 20:42:03,014 Example #2\n", "2020-01-21 20:42:03,014 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:42:03,014 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:42:03,014 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:42:03,014 Example #3\n", "2020-01-21 20:42:03,014 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:42:03,014 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:42:03,014 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:42:03,014 Validation result (greedy) at epoch 9, step 47000: bleu: 24.30, loss: 48945.4648, ppl: 5.1702, duration: 31.5334s\n", "2020-01-21 20:42:14,869 Epoch 9 Step: 47100 Batch Loss: 1.831981 Tokens per Sec: 19492, Lr: 0.000300\n", "2020-01-21 20:42:26,583 Epoch 9 Step: 47200 Batch Loss: 2.067285 Tokens per Sec: 19590, Lr: 0.000300\n", "2020-01-21 20:42:34,220 Epoch 9: total training loss 9545.23\n", "2020-01-21 20:42:34,220 EPOCH 10\n", "2020-01-21 20:42:38,917 Epoch 10 Step: 47300 Batch Loss: 1.786047 Tokens per Sec: 17075, Lr: 0.000300\n", "2020-01-21 20:42:50,812 Epoch 10 Step: 47400 Batch Loss: 1.854532 Tokens per Sec: 19911, Lr: 0.000300\n", "2020-01-21 20:43:02,628 Epoch 10 Step: 47500 Batch Loss: 1.606470 Tokens per Sec: 19824, Lr: 0.000300\n", "2020-01-21 20:43:14,496 Epoch 10 Step: 47600 Batch Loss: 1.915951 Tokens per Sec: 19741, Lr: 0.000300\n", "2020-01-21 20:43:26,390 Epoch 10 Step: 47700 Batch Loss: 1.694558 Tokens per Sec: 19785, Lr: 0.000300\n", "2020-01-21 20:43:38,069 Epoch 10 Step: 47800 Batch Loss: 1.775823 Tokens per Sec: 18961, Lr: 0.000300\n", "2020-01-21 20:43:49,742 Epoch 10 Step: 47900 Batch Loss: 1.767556 Tokens per Sec: 19383, Lr: 0.000300\n", "2020-01-21 20:44:01,667 Epoch 10 Step: 48000 Batch Loss: 1.680725 Tokens per Sec: 19899, Lr: 0.000300\n", "2020-01-21 20:44:33,038 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:44:33,038 Saving new checkpoint.\n", "2020-01-21 20:44:33,347 Example #0\n", "2020-01-21 20:44:33,347 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:44:33,347 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:44:33,347 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:44:33,347 Example #1\n", "2020-01-21 20:44:33,347 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:44:33,347 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:44:33,347 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 20:44:33,347 Example #2\n", "2020-01-21 20:44:33,347 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:44:33,348 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:44:33,348 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:44:33,348 Example #3\n", "2020-01-21 20:44:33,348 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:44:33,348 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:44:33,348 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní ju ti tẹ́lẹ̀ lọ , àmọ́ ó ń rìn nítòsí rẹ .\n", "2020-01-21 20:44:33,348 Validation result (greedy) at epoch 10, step 48000: bleu: 24.55, loss: 48778.8672, ppl: 5.1413, duration: 31.6809s\n", "2020-01-21 20:44:45,188 Epoch 10 Step: 48100 Batch Loss: 1.908025 Tokens per Sec: 19824, Lr: 0.000300\n", "2020-01-21 20:44:56,932 Epoch 10 Step: 48200 Batch Loss: 1.613610 Tokens per Sec: 19743, Lr: 0.000300\n", "2020-01-21 20:45:08,586 Epoch 10 Step: 48300 Batch Loss: 1.330988 Tokens per Sec: 19579, Lr: 0.000300\n", "2020-01-21 20:45:20,367 Epoch 10 Step: 48400 Batch Loss: 1.839554 Tokens per Sec: 19837, Lr: 0.000300\n", "2020-01-21 20:45:32,117 Epoch 10 Step: 48500 Batch Loss: 1.838492 Tokens per Sec: 19578, Lr: 0.000300\n", "2020-01-21 20:45:43,873 Epoch 10 Step: 48600 Batch Loss: 1.814099 Tokens per Sec: 19843, Lr: 0.000300\n", "2020-01-21 20:45:55,616 Epoch 10 Step: 48700 Batch Loss: 1.867353 Tokens per Sec: 20032, Lr: 0.000300\n", "2020-01-21 20:46:07,307 Epoch 10 Step: 48800 Batch Loss: 1.654864 Tokens per Sec: 20234, Lr: 0.000300\n", "2020-01-21 20:46:18,887 Epoch 10 Step: 48900 Batch Loss: 1.680970 Tokens per Sec: 20091, Lr: 0.000300\n", "2020-01-21 20:46:30,466 Epoch 10 Step: 49000 Batch Loss: 1.635050 Tokens per Sec: 20101, Lr: 0.000300\n", "2020-01-21 20:47:01,511 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:47:01,511 Saving new checkpoint.\n", "2020-01-21 20:47:01,802 Example #0\n", "2020-01-21 20:47:01,802 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:47:01,802 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:47:01,802 \tHypothesis: Òun ni Orísun ìwàláàyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:47:01,803 Example #1\n", "2020-01-21 20:47:01,803 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:47:01,803 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:47:01,803 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 20:47:01,803 Example #2\n", "2020-01-21 20:47:01,803 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:47:01,803 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:47:01,803 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn ?\n", "2020-01-21 20:47:01,803 Example #3\n", "2020-01-21 20:47:01,803 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:47:01,804 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:47:01,804 \tHypothesis: Ó ní ìrírí tó pọ̀ jù , ó sì ní ìrírí tó pọ̀ ju ìwọ lọ , ṣùgbọ́n ó ń rìn sún mọ́ ọ .\n", "2020-01-21 20:47:01,804 Validation result (greedy) at epoch 10, step 49000: bleu: 24.72, loss: 48620.0742, ppl: 5.1140, duration: 31.3377s\n", "2020-01-21 20:47:13,281 Epoch 10 Step: 49100 Batch Loss: 1.821165 Tokens per Sec: 19725, Lr: 0.000300\n", "2020-01-21 20:47:24,820 Epoch 10 Step: 49200 Batch Loss: 1.723340 Tokens per Sec: 19866, Lr: 0.000300\n", "2020-01-21 20:47:36,453 Epoch 10 Step: 49300 Batch Loss: 1.917159 Tokens per Sec: 20327, Lr: 0.000300\n", "2020-01-21 20:47:48,024 Epoch 10 Step: 49400 Batch Loss: 1.693816 Tokens per Sec: 19809, Lr: 0.000300\n", "2020-01-21 20:47:59,612 Epoch 10 Step: 49500 Batch Loss: 1.773919 Tokens per Sec: 19791, Lr: 0.000300\n", "2020-01-21 20:48:11,203 Epoch 10 Step: 49600 Batch Loss: 1.766828 Tokens per Sec: 20102, Lr: 0.000300\n", "2020-01-21 20:48:22,726 Epoch 10 Step: 49700 Batch Loss: 1.945083 Tokens per Sec: 19860, Lr: 0.000300\n", "2020-01-21 20:48:34,236 Epoch 10 Step: 49800 Batch Loss: 1.921730 Tokens per Sec: 20048, Lr: 0.000300\n", "2020-01-21 20:48:45,815 Epoch 10 Step: 49900 Batch Loss: 1.685996 Tokens per Sec: 19963, Lr: 0.000300\n", "2020-01-21 20:48:57,390 Epoch 10 Step: 50000 Batch Loss: 1.655179 Tokens per Sec: 19857, Lr: 0.000300\n", "2020-01-21 20:49:28,332 Example #0\n", "2020-01-21 20:49:28,333 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:49:28,333 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:49:28,333 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:49:28,333 Example #1\n", "2020-01-21 20:49:28,333 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:49:28,333 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:49:28,333 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe báyìí .\n", "2020-01-21 20:49:28,333 Example #2\n", "2020-01-21 20:49:28,333 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:49:28,333 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:49:28,333 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:49:28,333 Example #3\n", "2020-01-21 20:49:28,333 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:49:28,333 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:49:28,333 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ń fi sùúrù rìn lọ́dọ̀ rẹ .\n", "2020-01-21 20:49:28,334 Validation result (greedy) at epoch 10, step 50000: bleu: 24.48, loss: 48883.3516, ppl: 5.1594, duration: 30.9437s\n", "2020-01-21 20:49:40,008 Epoch 10 Step: 50100 Batch Loss: 1.806618 Tokens per Sec: 19810, Lr: 0.000300\n", "2020-01-21 20:49:51,592 Epoch 10 Step: 50200 Batch Loss: 1.610474 Tokens per Sec: 19720, Lr: 0.000300\n", "2020-01-21 20:50:03,376 Epoch 10 Step: 50300 Batch Loss: 2.011426 Tokens per Sec: 20136, Lr: 0.000300\n", "2020-01-21 20:50:14,962 Epoch 10 Step: 50400 Batch Loss: 1.775081 Tokens per Sec: 20034, Lr: 0.000300\n", "2020-01-21 20:50:26,543 Epoch 10 Step: 50500 Batch Loss: 1.729294 Tokens per Sec: 19919, Lr: 0.000300\n", "2020-01-21 20:50:38,042 Epoch 10 Step: 50600 Batch Loss: 1.949198 Tokens per Sec: 19478, Lr: 0.000300\n", "2020-01-21 20:50:49,587 Epoch 10 Step: 50700 Batch Loss: 1.783153 Tokens per Sec: 19866, Lr: 0.000300\n", "2020-01-21 20:51:01,028 Epoch 10 Step: 50800 Batch Loss: 1.615453 Tokens per Sec: 19726, Lr: 0.000300\n", "2020-01-21 20:51:12,647 Epoch 10 Step: 50900 Batch Loss: 1.661922 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 20:51:24,182 Epoch 10 Step: 51000 Batch Loss: 1.945999 Tokens per Sec: 20019, Lr: 0.000300\n", "2020-01-21 20:51:55,091 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:51:55,091 Saving new checkpoint.\n", "2020-01-21 20:51:55,404 Example #0\n", "2020-01-21 20:51:55,405 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:51:55,405 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:51:55,405 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:51:55,405 Example #1\n", "2020-01-21 20:51:55,405 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:51:55,405 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:51:55,405 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mówó wọlé fún mi .\n", "2020-01-21 20:51:55,405 Example #2\n", "2020-01-21 20:51:55,405 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:51:55,405 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:51:55,405 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:51:55,405 Example #3\n", "2020-01-21 20:51:55,405 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:51:55,405 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:51:55,406 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 20:51:55,406 Validation result (greedy) at epoch 10, step 51000: bleu: 24.87, loss: 48400.1133, ppl: 5.0764, duration: 31.2234s\n", "2020-01-21 20:52:07,023 Epoch 10 Step: 51100 Batch Loss: 1.402932 Tokens per Sec: 20274, Lr: 0.000300\n", "2020-01-21 20:52:18,636 Epoch 10 Step: 51200 Batch Loss: 1.825742 Tokens per Sec: 20480, Lr: 0.000300\n", "2020-01-21 20:52:30,190 Epoch 10 Step: 51300 Batch Loss: 1.765807 Tokens per Sec: 19861, Lr: 0.000300\n", "2020-01-21 20:52:41,743 Epoch 10 Step: 51400 Batch Loss: 1.846418 Tokens per Sec: 20096, Lr: 0.000300\n", "2020-01-21 20:52:53,213 Epoch 10 Step: 51500 Batch Loss: 1.464655 Tokens per Sec: 20074, Lr: 0.000300\n", "2020-01-21 20:53:04,716 Epoch 10 Step: 51600 Batch Loss: 2.254002 Tokens per Sec: 20027, Lr: 0.000300\n", "2020-01-21 20:53:16,289 Epoch 10 Step: 51700 Batch Loss: 1.815122 Tokens per Sec: 19931, Lr: 0.000300\n", "2020-01-21 20:53:27,895 Epoch 10 Step: 51800 Batch Loss: 1.939130 Tokens per Sec: 20196, Lr: 0.000300\n", "2020-01-21 20:53:39,348 Epoch 10 Step: 51900 Batch Loss: 1.850340 Tokens per Sec: 19794, Lr: 0.000300\n", "2020-01-21 20:53:50,799 Epoch 10 Step: 52000 Batch Loss: 1.789639 Tokens per Sec: 20257, Lr: 0.000300\n", "2020-01-21 20:54:21,668 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:54:21,669 Saving new checkpoint.\n", "2020-01-21 20:54:21,957 Example #0\n", "2020-01-21 20:54:21,957 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:54:21,957 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:54:21,958 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:54:21,958 Example #1\n", "2020-01-21 20:54:21,958 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:54:21,958 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:54:21,958 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ kan tó yẹ kí n máa ṣe .\n", "2020-01-21 20:54:21,958 Example #2\n", "2020-01-21 20:54:21,958 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:54:21,958 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:54:21,958 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:54:21,958 Example #3\n", "2020-01-21 20:54:21,959 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:54:21,959 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:54:21,959 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní àwọn ohun tó o ṣe , àmọ́ ó máa ń rìn nítòsí rẹ .\n", "2020-01-21 20:54:21,959 Validation result (greedy) at epoch 10, step 52000: bleu: 24.87, loss: 48196.8828, ppl: 5.0419, duration: 31.1599s\n", "2020-01-21 20:54:33,438 Epoch 10 Step: 52100 Batch Loss: 1.801612 Tokens per Sec: 19733, Lr: 0.000300\n", "2020-01-21 20:54:44,958 Epoch 10 Step: 52200 Batch Loss: 1.864876 Tokens per Sec: 19758, Lr: 0.000300\n", "2020-01-21 20:54:56,442 Epoch 10 Step: 52300 Batch Loss: 1.648327 Tokens per Sec: 20067, Lr: 0.000300\n", "2020-01-21 20:55:08,044 Epoch 10 Step: 52400 Batch Loss: 1.621177 Tokens per Sec: 20036, Lr: 0.000300\n", "2020-01-21 20:55:19,615 Epoch 10 Step: 52500 Batch Loss: 1.774356 Tokens per Sec: 20115, Lr: 0.000300\n", "2020-01-21 20:55:20,979 Epoch 10: total training loss 9362.41\n", "2020-01-21 20:55:20,979 EPOCH 11\n", "2020-01-21 20:55:31,667 Epoch 11 Step: 52600 Batch Loss: 1.867009 Tokens per Sec: 19400, Lr: 0.000300\n", "2020-01-21 20:55:43,244 Epoch 11 Step: 52700 Batch Loss: 1.795781 Tokens per Sec: 20116, Lr: 0.000300\n", "2020-01-21 20:55:54,723 Epoch 11 Step: 52800 Batch Loss: 1.332319 Tokens per Sec: 19745, Lr: 0.000300\n", "2020-01-21 20:56:06,269 Epoch 11 Step: 52900 Batch Loss: 1.854322 Tokens per Sec: 20133, Lr: 0.000300\n", "2020-01-21 20:56:17,791 Epoch 11 Step: 53000 Batch Loss: 1.797343 Tokens per Sec: 20183, Lr: 0.000300\n", "2020-01-21 20:56:48,694 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:56:48,694 Saving new checkpoint.\n", "2020-01-21 20:56:48,956 Example #0\n", "2020-01-21 20:56:48,957 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:56:48,957 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:56:48,957 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:56:48,957 Example #1\n", "2020-01-21 20:56:48,957 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:56:48,957 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:56:48,957 \tHypothesis: Mo ti wá rí i pé iṣẹ́ tó ṣe pàtàkì gan - an ni .\n", "2020-01-21 20:56:48,957 Example #2\n", "2020-01-21 20:56:48,957 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:56:48,958 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:56:48,958 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 20:56:48,958 Example #3\n", "2020-01-21 20:56:48,958 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:56:48,958 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:56:48,958 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní ju ìwọ lọ , àmọ́ ó máa ń rìn nítòsí rẹ .\n", "2020-01-21 20:56:48,958 Validation result (greedy) at epoch 11, step 53000: bleu: 24.91, loss: 48039.8125, ppl: 5.0154, duration: 31.1669s\n", "2020-01-21 20:57:00,463 Epoch 11 Step: 53100 Batch Loss: 1.839231 Tokens per Sec: 19956, Lr: 0.000300\n", "2020-01-21 20:57:11,969 Epoch 11 Step: 53200 Batch Loss: 1.617448 Tokens per Sec: 20217, Lr: 0.000300\n", "2020-01-21 20:57:23,631 Epoch 11 Step: 53300 Batch Loss: 1.962380 Tokens per Sec: 20148, Lr: 0.000300\n", "2020-01-21 20:57:35,187 Epoch 11 Step: 53400 Batch Loss: 1.703585 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-21 20:57:46,734 Epoch 11 Step: 53500 Batch Loss: 1.580846 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 20:57:58,239 Epoch 11 Step: 53600 Batch Loss: 1.824854 Tokens per Sec: 20104, Lr: 0.000300\n", "2020-01-21 20:58:09,761 Epoch 11 Step: 53700 Batch Loss: 1.830337 Tokens per Sec: 20211, Lr: 0.000300\n", "2020-01-21 20:58:21,206 Epoch 11 Step: 53800 Batch Loss: 1.866913 Tokens per Sec: 19887, Lr: 0.000300\n", "2020-01-21 20:58:32,667 Epoch 11 Step: 53900 Batch Loss: 1.623499 Tokens per Sec: 20153, Lr: 0.000300\n", "2020-01-21 20:58:44,086 Epoch 11 Step: 54000 Batch Loss: 1.810092 Tokens per Sec: 19900, Lr: 0.000300\n", "2020-01-21 20:59:14,934 Hooray! New best validation result [ppl]!\n", "2020-01-21 20:59:14,934 Saving new checkpoint.\n", "2020-01-21 20:59:15,284 Example #0\n", "2020-01-21 20:59:15,285 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 20:59:15,285 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 20:59:15,285 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 20:59:15,285 Example #1\n", "2020-01-21 20:59:15,285 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 20:59:15,285 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 20:59:15,285 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ kan tó yẹ kí n máa ṣe .\n", "2020-01-21 20:59:15,285 Example #2\n", "2020-01-21 20:59:15,285 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 20:59:15,285 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 20:59:15,285 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 20:59:15,286 Example #3\n", "2020-01-21 20:59:15,286 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 20:59:15,286 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 20:59:15,286 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fífani mọ́ra ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 20:59:15,286 Validation result (greedy) at epoch 11, step 54000: bleu: 25.10, loss: 47933.6680, ppl: 4.9975, duration: 31.1993s\n", "2020-01-21 20:59:26,814 Epoch 11 Step: 54100 Batch Loss: 1.768964 Tokens per Sec: 19909, Lr: 0.000300\n", "2020-01-21 20:59:38,300 Epoch 11 Step: 54200 Batch Loss: 1.816078 Tokens per Sec: 20043, Lr: 0.000300\n", "2020-01-21 20:59:49,841 Epoch 11 Step: 54300 Batch Loss: 1.819968 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-21 21:00:01,438 Epoch 11 Step: 54400 Batch Loss: 1.650733 Tokens per Sec: 20472, Lr: 0.000300\n", "2020-01-21 21:00:12,896 Epoch 11 Step: 54500 Batch Loss: 1.723443 Tokens per Sec: 20359, Lr: 0.000300\n", "2020-01-21 21:00:24,442 Epoch 11 Step: 54600 Batch Loss: 1.781001 Tokens per Sec: 19803, Lr: 0.000300\n", "2020-01-21 21:00:35,994 Epoch 11 Step: 54700 Batch Loss: 1.809811 Tokens per Sec: 20629, Lr: 0.000300\n", "2020-01-21 21:00:47,428 Epoch 11 Step: 54800 Batch Loss: 1.801224 Tokens per Sec: 20481, Lr: 0.000300\n", "2020-01-21 21:00:58,870 Epoch 11 Step: 54900 Batch Loss: 1.765349 Tokens per Sec: 20078, Lr: 0.000300\n", "2020-01-21 21:01:10,291 Epoch 11 Step: 55000 Batch Loss: 1.553182 Tokens per Sec: 20166, Lr: 0.000300\n", "2020-01-21 21:01:41,071 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:01:41,071 Saving new checkpoint.\n", "2020-01-21 21:01:41,330 Example #0\n", "2020-01-21 21:01:41,330 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:01:41,330 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:01:41,330 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:01:41,330 Example #1\n", "2020-01-21 21:01:41,330 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:01:41,330 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:01:41,331 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 21:01:41,331 Example #2\n", "2020-01-21 21:01:41,331 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:01:41,331 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:01:41,331 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:01:41,331 Example #3\n", "2020-01-21 21:01:41,331 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:01:41,331 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:01:41,331 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ń ṣe ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:01:41,331 Validation result (greedy) at epoch 11, step 55000: bleu: 25.13, loss: 47819.0312, ppl: 4.9783, duration: 31.0399s\n", "2020-01-21 21:01:52,731 Epoch 11 Step: 55100 Batch Loss: 1.686909 Tokens per Sec: 20403, Lr: 0.000300\n", "2020-01-21 21:02:04,103 Epoch 11 Step: 55200 Batch Loss: 1.739360 Tokens per Sec: 20234, Lr: 0.000300\n", "2020-01-21 21:02:15,450 Epoch 11 Step: 55300 Batch Loss: 1.657861 Tokens per Sec: 19910, Lr: 0.000300\n", "2020-01-21 21:02:26,869 Epoch 11 Step: 55400 Batch Loss: 1.682974 Tokens per Sec: 20023, Lr: 0.000300\n", "2020-01-21 21:02:38,315 Epoch 11 Step: 55500 Batch Loss: 1.841498 Tokens per Sec: 20200, Lr: 0.000300\n", "2020-01-21 21:02:49,679 Epoch 11 Step: 55600 Batch Loss: 1.734681 Tokens per Sec: 20258, Lr: 0.000300\n", "2020-01-21 21:03:01,046 Epoch 11 Step: 55700 Batch Loss: 1.654170 Tokens per Sec: 20379, Lr: 0.000300\n", "2020-01-21 21:03:12,393 Epoch 11 Step: 55800 Batch Loss: 1.884196 Tokens per Sec: 20232, Lr: 0.000300\n", "2020-01-21 21:03:23,766 Epoch 11 Step: 55900 Batch Loss: 1.773943 Tokens per Sec: 20131, Lr: 0.000300\n", "2020-01-21 21:03:35,213 Epoch 11 Step: 56000 Batch Loss: 1.792767 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-21 21:04:05,872 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:04:05,872 Saving new checkpoint.\n", "2020-01-21 21:04:06,127 Example #0\n", "2020-01-21 21:04:06,127 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:04:06,127 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:04:06,127 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:04:06,128 Example #1\n", "2020-01-21 21:04:06,128 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:04:06,128 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:04:06,128 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mọ́kàn ẹni fà sí mi .\n", "2020-01-21 21:04:06,128 Example #2\n", "2020-01-21 21:04:06,128 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:04:06,128 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:04:06,128 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:04:06,128 Example #3\n", "2020-01-21 21:04:06,128 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:04:06,128 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:04:06,128 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fídíò ju ìwọ lọ , àmọ́ ó máa ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:04:06,128 Validation result (greedy) at epoch 11, step 56000: bleu: 25.31, loss: 47569.5117, ppl: 4.9368, duration: 30.9145s\n", "2020-01-21 21:04:17,551 Epoch 11 Step: 56100 Batch Loss: 1.964430 Tokens per Sec: 20466, Lr: 0.000300\n", "2020-01-21 21:04:28,824 Epoch 11 Step: 56200 Batch Loss: 1.872791 Tokens per Sec: 20151, Lr: 0.000300\n", "2020-01-21 21:04:40,169 Epoch 11 Step: 56300 Batch Loss: 1.768604 Tokens per Sec: 20156, Lr: 0.000300\n", "2020-01-21 21:04:51,537 Epoch 11 Step: 56400 Batch Loss: 1.749783 Tokens per Sec: 20492, Lr: 0.000300\n", "2020-01-21 21:05:02,847 Epoch 11 Step: 56500 Batch Loss: 1.557726 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-21 21:05:14,260 Epoch 11 Step: 56600 Batch Loss: 1.868768 Tokens per Sec: 19893, Lr: 0.000300\n", "2020-01-21 21:05:25,791 Epoch 11 Step: 56700 Batch Loss: 1.422090 Tokens per Sec: 20274, Lr: 0.000300\n", "2020-01-21 21:05:37,313 Epoch 11 Step: 56800 Batch Loss: 1.833577 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-21 21:05:48,803 Epoch 11 Step: 56900 Batch Loss: 1.899453 Tokens per Sec: 20229, Lr: 0.000300\n", "2020-01-21 21:06:00,291 Epoch 11 Step: 57000 Batch Loss: 2.010000 Tokens per Sec: 20046, Lr: 0.000300\n", "2020-01-21 21:06:30,914 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:06:30,914 Saving new checkpoint.\n", "2020-01-21 21:06:31,154 Example #0\n", "2020-01-21 21:06:31,154 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:06:31,154 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:06:31,154 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:06:31,154 Example #1\n", "2020-01-21 21:06:31,154 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:06:31,154 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:06:31,154 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 21:06:31,155 Example #2\n", "2020-01-21 21:06:31,155 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:06:31,155 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:06:31,155 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:06:31,155 Example #3\n", "2020-01-21 21:06:31,155 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:06:31,155 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:06:31,155 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì ní , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:06:31,155 Validation result (greedy) at epoch 11, step 57000: bleu: 25.98, loss: 47501.0430, ppl: 4.9255, duration: 30.8644s\n", "2020-01-21 21:06:42,723 Epoch 11 Step: 57100 Batch Loss: 1.640614 Tokens per Sec: 20396, Lr: 0.000300\n", "2020-01-21 21:06:54,121 Epoch 11 Step: 57200 Batch Loss: 1.851468 Tokens per Sec: 20266, Lr: 0.000300\n", "2020-01-21 21:07:05,547 Epoch 11 Step: 57300 Batch Loss: 1.644881 Tokens per Sec: 20259, Lr: 0.000300\n", "2020-01-21 21:07:17,008 Epoch 11 Step: 57400 Batch Loss: 1.906561 Tokens per Sec: 20466, Lr: 0.000300\n", "2020-01-21 21:07:28,438 Epoch 11 Step: 57500 Batch Loss: 1.673892 Tokens per Sec: 20218, Lr: 0.000300\n", "2020-01-21 21:07:39,898 Epoch 11 Step: 57600 Batch Loss: 1.708129 Tokens per Sec: 20448, Lr: 0.000300\n", "2020-01-21 21:07:51,241 Epoch 11 Step: 57700 Batch Loss: 1.870770 Tokens per Sec: 20155, Lr: 0.000300\n", "2020-01-21 21:07:58,518 Epoch 11: total training loss 9224.89\n", "2020-01-21 21:07:58,518 EPOCH 12\n", "2020-01-21 21:08:02,990 Epoch 12 Step: 57800 Batch Loss: 1.781452 Tokens per Sec: 17386, Lr: 0.000300\n", "2020-01-21 21:08:14,456 Epoch 12 Step: 57900 Batch Loss: 1.746476 Tokens per Sec: 20745, Lr: 0.000300\n", "2020-01-21 21:08:25,975 Epoch 12 Step: 58000 Batch Loss: 1.612709 Tokens per Sec: 20572, Lr: 0.000300\n", "2020-01-21 21:08:56,579 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:08:56,580 Saving new checkpoint.\n", "2020-01-21 21:08:56,817 Example #0\n", "2020-01-21 21:08:56,817 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:08:56,817 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:08:56,818 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:08:56,818 Example #1\n", "2020-01-21 21:08:56,818 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:08:56,818 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:08:56,818 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dáa ni mo máa ń ṣe .\n", "2020-01-21 21:08:56,818 Example #2\n", "2020-01-21 21:08:56,818 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:08:56,819 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:08:56,819 \tHypothesis: Ṣé mo mọyì àwọn nǹkan ìní tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:08:56,819 Example #3\n", "2020-01-21 21:08:56,819 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:08:56,819 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:08:56,819 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ohun tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:08:56,819 Validation result (greedy) at epoch 12, step 58000: bleu: 25.98, loss: 47215.4062, ppl: 4.8785, duration: 30.8441s\n", "2020-01-21 21:09:08,125 Epoch 12 Step: 58100 Batch Loss: 1.763260 Tokens per Sec: 20003, Lr: 0.000300\n", "2020-01-21 21:09:19,581 Epoch 12 Step: 58200 Batch Loss: 1.807714 Tokens per Sec: 20466, Lr: 0.000300\n", "2020-01-21 21:09:30,893 Epoch 12 Step: 58300 Batch Loss: 1.942713 Tokens per Sec: 20571, Lr: 0.000300\n", "2020-01-21 21:09:42,298 Epoch 12 Step: 58400 Batch Loss: 1.818533 Tokens per Sec: 20480, Lr: 0.000300\n", "2020-01-21 21:09:53,633 Epoch 12 Step: 58500 Batch Loss: 1.599931 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 21:10:05,054 Epoch 12 Step: 58600 Batch Loss: 1.645163 Tokens per Sec: 20292, Lr: 0.000300\n", "2020-01-21 21:10:16,471 Epoch 12 Step: 58700 Batch Loss: 1.941200 Tokens per Sec: 20449, Lr: 0.000300\n", "2020-01-21 21:10:27,833 Epoch 12 Step: 58800 Batch Loss: 1.837047 Tokens per Sec: 20354, Lr: 0.000300\n", "2020-01-21 21:10:39,275 Epoch 12 Step: 58900 Batch Loss: 1.689656 Tokens per Sec: 20286, Lr: 0.000300\n", "2020-01-21 21:10:50,673 Epoch 12 Step: 59000 Batch Loss: 1.714856 Tokens per Sec: 20142, Lr: 0.000300\n", "2020-01-21 21:11:21,297 Example #0\n", "2020-01-21 21:11:21,297 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:11:21,297 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:11:21,297 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:11:21,297 Example #1\n", "2020-01-21 21:11:21,297 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:11:21,297 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:11:21,297 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 21:11:21,297 Example #2\n", "2020-01-21 21:11:21,297 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:11:21,298 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:11:21,298 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:11:21,298 Example #3\n", "2020-01-21 21:11:21,298 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:11:21,298 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:11:21,298 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fífọ ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:11:21,298 Validation result (greedy) at epoch 12, step 59000: bleu: 25.69, loss: 47222.2266, ppl: 4.8796, duration: 30.6250s\n", "2020-01-21 21:11:32,660 Epoch 12 Step: 59100 Batch Loss: 1.723297 Tokens per Sec: 20831, Lr: 0.000300\n", "2020-01-21 21:11:44,040 Epoch 12 Step: 59200 Batch Loss: 1.695060 Tokens per Sec: 20113, Lr: 0.000300\n", "2020-01-21 21:11:55,502 Epoch 12 Step: 59300 Batch Loss: 1.827334 Tokens per Sec: 20332, Lr: 0.000300\n", "2020-01-21 21:12:06,898 Epoch 12 Step: 59400 Batch Loss: 1.830372 Tokens per Sec: 20224, Lr: 0.000300\n", "2020-01-21 21:12:18,307 Epoch 12 Step: 59500 Batch Loss: 1.796576 Tokens per Sec: 20327, Lr: 0.000300\n", "2020-01-21 21:12:29,637 Epoch 12 Step: 59600 Batch Loss: 1.635769 Tokens per Sec: 20381, Lr: 0.000300\n", "2020-01-21 21:12:40,966 Epoch 12 Step: 59700 Batch Loss: 1.759684 Tokens per Sec: 20423, Lr: 0.000300\n", "2020-01-21 21:12:52,345 Epoch 12 Step: 59800 Batch Loss: 1.825004 Tokens per Sec: 20452, Lr: 0.000300\n", "2020-01-21 21:13:03,680 Epoch 12 Step: 59900 Batch Loss: 1.853913 Tokens per Sec: 20020, Lr: 0.000300\n", "2020-01-21 21:13:15,066 Epoch 12 Step: 60000 Batch Loss: 2.057104 Tokens per Sec: 20323, Lr: 0.000300\n", "2020-01-21 21:13:45,722 Example #0\n", "2020-01-21 21:13:45,722 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:13:45,722 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:13:45,722 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:13:45,722 Example #1\n", "2020-01-21 21:13:45,722 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:13:45,722 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:13:45,722 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ kan tó bójú mu .\n", "2020-01-21 21:13:45,722 Example #2\n", "2020-01-21 21:13:45,723 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:13:45,723 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:13:45,723 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:13:45,723 Example #3\n", "2020-01-21 21:13:45,723 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:13:45,723 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:13:45,723 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ìmí ẹ̀dùn ju bó ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:13:45,723 Validation result (greedy) at epoch 12, step 60000: bleu: 25.72, loss: 47317.1172, ppl: 4.8952, duration: 30.6563s\n", "2020-01-21 21:13:57,131 Epoch 12 Step: 60100 Batch Loss: 1.628427 Tokens per Sec: 19971, Lr: 0.000300\n", "2020-01-21 21:14:08,479 Epoch 12 Step: 60200 Batch Loss: 1.690116 Tokens per Sec: 20450, Lr: 0.000300\n", "2020-01-21 21:14:19,840 Epoch 12 Step: 60300 Batch Loss: 1.768332 Tokens per Sec: 20394, Lr: 0.000300\n", "2020-01-21 21:14:31,279 Epoch 12 Step: 60400 Batch Loss: 1.661647 Tokens per Sec: 20511, Lr: 0.000300\n", "2020-01-21 21:14:42,666 Epoch 12 Step: 60500 Batch Loss: 1.587232 Tokens per Sec: 20042, Lr: 0.000300\n", "2020-01-21 21:14:54,090 Epoch 12 Step: 60600 Batch Loss: 1.831061 Tokens per Sec: 20094, Lr: 0.000300\n", "2020-01-21 21:15:05,394 Epoch 12 Step: 60700 Batch Loss: 1.773064 Tokens per Sec: 20267, Lr: 0.000300\n", "2020-01-21 21:15:16,688 Epoch 12 Step: 60800 Batch Loss: 1.992854 Tokens per Sec: 20209, Lr: 0.000300\n", "2020-01-21 21:15:28,135 Epoch 12 Step: 60900 Batch Loss: 1.772552 Tokens per Sec: 20550, Lr: 0.000300\n", "2020-01-21 21:15:39,550 Epoch 12 Step: 61000 Batch Loss: 2.054643 Tokens per Sec: 20021, Lr: 0.000300\n", "2020-01-21 21:16:10,255 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:16:10,255 Saving new checkpoint.\n", "2020-01-21 21:16:10,494 Example #0\n", "2020-01-21 21:16:10,494 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:16:10,494 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:16:10,494 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:16:10,494 Example #1\n", "2020-01-21 21:16:10,494 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:16:10,494 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:16:10,495 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 21:16:10,495 Example #2\n", "2020-01-21 21:16:10,495 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:16:10,495 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:16:10,495 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:16:10,495 Example #3\n", "2020-01-21 21:16:10,495 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:16:10,495 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:16:10,495 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fídíò ju bó o ṣe ń ṣe lọ , àmọ́ ó ń rìn nítòsí rẹ .\n", "2020-01-21 21:16:10,495 Validation result (greedy) at epoch 12, step 61000: bleu: 26.02, loss: 46898.5195, ppl: 4.8269, duration: 30.9451s\n", "2020-01-21 21:16:21,844 Epoch 12 Step: 61100 Batch Loss: 1.820256 Tokens per Sec: 20224, Lr: 0.000300\n", "2020-01-21 21:16:33,288 Epoch 12 Step: 61200 Batch Loss: 1.902586 Tokens per Sec: 20737, Lr: 0.000300\n", "2020-01-21 21:16:44,617 Epoch 12 Step: 61300 Batch Loss: 1.651503 Tokens per Sec: 20013, Lr: 0.000300\n", "2020-01-21 21:16:56,393 Epoch 12 Step: 61400 Batch Loss: 1.709941 Tokens per Sec: 19635, Lr: 0.000300\n", "2020-01-21 21:17:07,979 Epoch 12 Step: 61500 Batch Loss: 1.810381 Tokens per Sec: 20311, Lr: 0.000300\n", "2020-01-21 21:17:19,475 Epoch 12 Step: 61600 Batch Loss: 1.640370 Tokens per Sec: 19754, Lr: 0.000300\n", "2020-01-21 21:17:30,997 Epoch 12 Step: 61700 Batch Loss: 1.677030 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-21 21:17:42,608 Epoch 12 Step: 61800 Batch Loss: 1.597228 Tokens per Sec: 20273, Lr: 0.000300\n", "2020-01-21 21:17:54,085 Epoch 12 Step: 61900 Batch Loss: 1.751846 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-21 21:18:05,483 Epoch 12 Step: 62000 Batch Loss: 1.963501 Tokens per Sec: 19916, Lr: 0.000300\n", "2020-01-21 21:18:36,226 Example #0\n", "2020-01-21 21:18:36,227 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:18:36,227 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:18:36,227 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi wá .\n", "2020-01-21 21:18:36,227 Example #1\n", "2020-01-21 21:18:36,227 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:18:36,227 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:18:36,227 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 21:18:36,227 Example #2\n", "2020-01-21 21:18:36,227 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:18:36,227 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:18:36,227 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:18:36,227 Example #3\n", "2020-01-21 21:18:36,228 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:18:36,228 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:18:36,228 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:18:36,228 Validation result (greedy) at epoch 12, step 62000: bleu: 25.87, loss: 46966.5195, ppl: 4.8379, duration: 30.7446s\n", "2020-01-21 21:18:47,764 Epoch 12 Step: 62100 Batch Loss: 1.683673 Tokens per Sec: 19424, Lr: 0.000300\n", "2020-01-21 21:18:59,164 Epoch 12 Step: 62200 Batch Loss: 1.701835 Tokens per Sec: 20368, Lr: 0.000300\n", "2020-01-21 21:19:10,637 Epoch 12 Step: 62300 Batch Loss: 1.787549 Tokens per Sec: 20277, Lr: 0.000300\n", "2020-01-21 21:19:22,024 Epoch 12 Step: 62400 Batch Loss: 1.883867 Tokens per Sec: 20168, Lr: 0.000300\n", "2020-01-21 21:19:33,429 Epoch 12 Step: 62500 Batch Loss: 1.571493 Tokens per Sec: 20310, Lr: 0.000300\n", "2020-01-21 21:19:44,941 Epoch 12 Step: 62600 Batch Loss: 1.753015 Tokens per Sec: 20636, Lr: 0.000300\n", "2020-01-21 21:19:56,439 Epoch 12 Step: 62700 Batch Loss: 1.876988 Tokens per Sec: 20279, Lr: 0.000300\n", "2020-01-21 21:20:07,904 Epoch 12 Step: 62800 Batch Loss: 1.726518 Tokens per Sec: 20342, Lr: 0.000300\n", "2020-01-21 21:20:19,357 Epoch 12 Step: 62900 Batch Loss: 1.805685 Tokens per Sec: 20579, Lr: 0.000300\n", "2020-01-21 21:20:30,693 Epoch 12 Step: 63000 Batch Loss: 1.901700 Tokens per Sec: 20283, Lr: 0.000300\n", "2020-01-21 21:21:01,400 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:21:01,400 Saving new checkpoint.\n", "2020-01-21 21:21:01,645 Example #0\n", "2020-01-21 21:21:01,645 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:21:01,645 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:21:01,645 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:21:01,646 Example #1\n", "2020-01-21 21:21:01,646 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:21:01,646 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:21:01,646 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 21:21:01,646 Example #2\n", "2020-01-21 21:21:01,646 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:21:01,646 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:21:01,646 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 21:21:01,646 Example #3\n", "2020-01-21 21:21:01,646 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:21:01,646 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:21:01,646 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní àwọn ohun tó o ṣe , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:21:01,646 Validation result (greedy) at epoch 12, step 63000: bleu: 25.88, loss: 46734.3945, ppl: 4.8004, duration: 30.9527s\n", "2020-01-21 21:21:02,625 Epoch 12: total training loss 9072.14\n", "2020-01-21 21:21:02,625 EPOCH 13\n", "2020-01-21 21:21:13,674 Epoch 13 Step: 63100 Batch Loss: 1.954088 Tokens per Sec: 19140, Lr: 0.000300\n", "2020-01-21 21:21:25,080 Epoch 13 Step: 63200 Batch Loss: 1.700028 Tokens per Sec: 20343, Lr: 0.000300\n", "2020-01-21 21:21:36,445 Epoch 13 Step: 63300 Batch Loss: 1.563615 Tokens per Sec: 19987, Lr: 0.000300\n", "2020-01-21 21:21:47,806 Epoch 13 Step: 63400 Batch Loss: 1.528171 Tokens per Sec: 20251, Lr: 0.000300\n", "2020-01-21 21:21:59,110 Epoch 13 Step: 63500 Batch Loss: 1.934772 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-21 21:22:10,452 Epoch 13 Step: 63600 Batch Loss: 1.722182 Tokens per Sec: 20276, Lr: 0.000300\n", "2020-01-21 21:22:21,869 Epoch 13 Step: 63700 Batch Loss: 1.736684 Tokens per Sec: 20418, Lr: 0.000300\n", "2020-01-21 21:22:33,248 Epoch 13 Step: 63800 Batch Loss: 1.921278 Tokens per Sec: 20551, Lr: 0.000300\n", "2020-01-21 21:22:44,624 Epoch 13 Step: 63900 Batch Loss: 1.574373 Tokens per Sec: 20465, Lr: 0.000300\n", "2020-01-21 21:22:55,980 Epoch 13 Step: 64000 Batch Loss: 1.728273 Tokens per Sec: 20120, Lr: 0.000300\n", "2020-01-21 21:23:26,582 Example #0\n", "2020-01-21 21:23:26,583 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:23:26,583 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:23:26,583 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:23:26,583 Example #1\n", "2020-01-21 21:23:26,583 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:23:26,583 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:23:26,583 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 21:23:26,583 Example #2\n", "2020-01-21 21:23:26,583 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:23:26,583 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:23:26,584 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:23:26,584 Example #3\n", "2020-01-21 21:23:26,584 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:23:26,584 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:23:26,584 \tHypothesis: Ó ní ìrírí àti ihò tó pọ̀ ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:23:26,584 Validation result (greedy) at epoch 13, step 64000: bleu: 25.99, loss: 46807.2188, ppl: 4.8121, duration: 30.6033s\n", "2020-01-21 21:23:37,925 Epoch 13 Step: 64100 Batch Loss: 1.674548 Tokens per Sec: 20048, Lr: 0.000300\n", "2020-01-21 21:23:49,295 Epoch 13 Step: 64200 Batch Loss: 1.805752 Tokens per Sec: 20465, Lr: 0.000300\n", "2020-01-21 21:24:00,732 Epoch 13 Step: 64300 Batch Loss: 2.002910 Tokens per Sec: 20501, Lr: 0.000300\n", "2020-01-21 21:24:12,152 Epoch 13 Step: 64400 Batch Loss: 1.795383 Tokens per Sec: 20424, Lr: 0.000300\n", "2020-01-21 21:24:23,400 Epoch 13 Step: 64500 Batch Loss: 1.827208 Tokens per Sec: 20076, Lr: 0.000300\n", "2020-01-21 21:24:34,776 Epoch 13 Step: 64600 Batch Loss: 1.720642 Tokens per Sec: 20792, Lr: 0.000300\n", "2020-01-21 21:24:46,185 Epoch 13 Step: 64700 Batch Loss: 1.783414 Tokens per Sec: 20277, Lr: 0.000300\n", "2020-01-21 21:24:57,603 Epoch 13 Step: 64800 Batch Loss: 1.570070 Tokens per Sec: 20500, Lr: 0.000300\n", "2020-01-21 21:25:08,976 Epoch 13 Step: 64900 Batch Loss: 1.699349 Tokens per Sec: 20412, Lr: 0.000300\n", "2020-01-21 21:25:20,449 Epoch 13 Step: 65000 Batch Loss: 1.817903 Tokens per Sec: 20461, Lr: 0.000300\n", "2020-01-21 21:25:51,047 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:25:51,047 Saving new checkpoint.\n", "2020-01-21 21:25:51,292 Example #0\n", "2020-01-21 21:25:51,292 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:25:51,292 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:25:51,293 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:25:51,293 Example #1\n", "2020-01-21 21:25:51,293 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:25:51,293 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:25:51,293 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ńlá ni mo máa ń ṣe .\n", "2020-01-21 21:25:51,293 Example #2\n", "2020-01-21 21:25:51,293 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:25:51,293 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:25:51,293 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 21:25:51,293 Example #3\n", "2020-01-21 21:25:51,294 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:25:51,294 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:25:51,294 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti amúnikún ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:25:51,294 Validation result (greedy) at epoch 13, step 65000: bleu: 26.09, loss: 46631.8594, ppl: 4.7839, duration: 30.8450s\n", "2020-01-21 21:26:02,636 Epoch 13 Step: 65100 Batch Loss: 1.765123 Tokens per Sec: 20244, Lr: 0.000300\n", "2020-01-21 21:26:14,061 Epoch 13 Step: 65200 Batch Loss: 1.719440 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-21 21:26:25,458 Epoch 13 Step: 65300 Batch Loss: 1.382987 Tokens per Sec: 20256, Lr: 0.000300\n", "2020-01-21 21:26:36,727 Epoch 13 Step: 65400 Batch Loss: 1.807751 Tokens per Sec: 19958, Lr: 0.000300\n", "2020-01-21 21:26:47,975 Epoch 13 Step: 65500 Batch Loss: 1.715824 Tokens per Sec: 19716, Lr: 0.000300\n", "2020-01-21 21:26:59,436 Epoch 13 Step: 65600 Batch Loss: 1.838570 Tokens per Sec: 20332, Lr: 0.000300\n", "2020-01-21 21:27:10,816 Epoch 13 Step: 65700 Batch Loss: 1.818289 Tokens per Sec: 20512, Lr: 0.000300\n", "2020-01-21 21:27:22,191 Epoch 13 Step: 65800 Batch Loss: 1.883874 Tokens per Sec: 20446, Lr: 0.000300\n", "2020-01-21 21:27:33,523 Epoch 13 Step: 65900 Batch Loss: 1.726741 Tokens per Sec: 20331, Lr: 0.000300\n", "2020-01-21 21:27:44,791 Epoch 13 Step: 66000 Batch Loss: 1.732943 Tokens per Sec: 20138, Lr: 0.000300\n", "2020-01-21 21:28:15,354 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:28:15,355 Saving new checkpoint.\n", "2020-01-21 21:28:15,602 Example #0\n", "2020-01-21 21:28:15,603 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:28:15,603 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:28:15,603 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:28:15,603 Example #1\n", "2020-01-21 21:28:15,603 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:28:15,603 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:28:15,603 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-21 21:28:15,603 Example #2\n", "2020-01-21 21:28:15,603 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:28:15,603 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:28:15,603 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:28:15,603 Example #3\n", "2020-01-21 21:28:15,603 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:28:15,603 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:28:15,603 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:28:15,603 Validation result (greedy) at epoch 13, step 66000: bleu: 25.92, loss: 46542.7344, ppl: 4.7696, duration: 30.8121s\n", "2020-01-21 21:28:26,959 Epoch 13 Step: 66100 Batch Loss: 1.722586 Tokens per Sec: 20005, Lr: 0.000300\n", "2020-01-21 21:28:38,371 Epoch 13 Step: 66200 Batch Loss: 1.679550 Tokens per Sec: 20301, Lr: 0.000300\n", "2020-01-21 21:28:49,812 Epoch 13 Step: 66300 Batch Loss: 1.606574 Tokens per Sec: 20916, Lr: 0.000300\n", "2020-01-21 21:29:01,167 Epoch 13 Step: 66400 Batch Loss: 1.790493 Tokens per Sec: 20229, Lr: 0.000300\n", "2020-01-21 21:29:12,496 Epoch 13 Step: 66500 Batch Loss: 1.732953 Tokens per Sec: 20258, Lr: 0.000300\n", "2020-01-21 21:29:23,916 Epoch 13 Step: 66600 Batch Loss: 1.844045 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-21 21:29:35,264 Epoch 13 Step: 66700 Batch Loss: 1.688674 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 21:29:46,663 Epoch 13 Step: 66800 Batch Loss: 1.737329 Tokens per Sec: 20441, Lr: 0.000300\n", "2020-01-21 21:29:58,049 Epoch 13 Step: 66900 Batch Loss: 1.760756 Tokens per Sec: 20250, Lr: 0.000300\n", "2020-01-21 21:30:09,435 Epoch 13 Step: 67000 Batch Loss: 1.712593 Tokens per Sec: 20230, Lr: 0.000300\n", "2020-01-21 21:30:40,118 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:30:40,119 Saving new checkpoint.\n", "2020-01-21 21:30:40,365 Example #0\n", "2020-01-21 21:30:40,365 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:30:40,366 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:30:40,366 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:30:40,366 Example #1\n", "2020-01-21 21:30:40,366 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:30:40,366 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:30:40,366 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 21:30:40,366 Example #2\n", "2020-01-21 21:30:40,366 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:30:40,366 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:30:40,366 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:30:40,366 Example #3\n", "2020-01-21 21:30:40,366 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:30:40,366 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:30:40,366 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:30:40,367 Validation result (greedy) at epoch 13, step 67000: bleu: 26.08, loss: 46407.0742, ppl: 4.7479, duration: 30.9313s\n", "2020-01-21 21:30:51,849 Epoch 13 Step: 67100 Batch Loss: 1.859786 Tokens per Sec: 20510, Lr: 0.000300\n", "2020-01-21 21:31:03,244 Epoch 13 Step: 67200 Batch Loss: 1.752652 Tokens per Sec: 20637, Lr: 0.000300\n", "2020-01-21 21:31:14,631 Epoch 13 Step: 67300 Batch Loss: 1.896100 Tokens per Sec: 20624, Lr: 0.000300\n", "2020-01-21 21:31:26,049 Epoch 13 Step: 67400 Batch Loss: 1.691157 Tokens per Sec: 19813, Lr: 0.000300\n", "2020-01-21 21:31:37,351 Epoch 13 Step: 67500 Batch Loss: 1.605226 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 21:31:48,761 Epoch 13 Step: 67600 Batch Loss: 1.792422 Tokens per Sec: 20184, Lr: 0.000300\n", "2020-01-21 21:32:00,113 Epoch 13 Step: 67700 Batch Loss: 1.686910 Tokens per Sec: 20380, Lr: 0.000300\n", "2020-01-21 21:32:11,454 Epoch 13 Step: 67800 Batch Loss: 1.838205 Tokens per Sec: 20012, Lr: 0.000300\n", "2020-01-21 21:32:22,819 Epoch 13 Step: 67900 Batch Loss: 1.714588 Tokens per Sec: 20310, Lr: 0.000300\n", "2020-01-21 21:32:34,132 Epoch 13 Step: 68000 Batch Loss: 1.512332 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 21:33:04,730 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:33:04,730 Saving new checkpoint.\n", "2020-01-21 21:33:04,990 Example #0\n", "2020-01-21 21:33:04,990 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:33:04,990 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:33:04,990 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:33:04,990 Example #1\n", "2020-01-21 21:33:04,990 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:33:04,991 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:33:04,991 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ kò tó nǹkan .\n", "2020-01-21 21:33:04,991 Example #2\n", "2020-01-21 21:33:04,991 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:33:04,991 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:33:04,991 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:33:04,991 Example #3\n", "2020-01-21 21:33:04,991 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:33:04,991 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:33:04,991 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:33:04,991 Validation result (greedy) at epoch 13, step 68000: bleu: 26.20, loss: 46309.9766, ppl: 4.7325, duration: 30.8584s\n", "2020-01-21 21:33:16,364 Epoch 13 Step: 68100 Batch Loss: 1.735731 Tokens per Sec: 20473, Lr: 0.000300\n", "2020-01-21 21:33:27,775 Epoch 13 Step: 68200 Batch Loss: 1.737963 Tokens per Sec: 20271, Lr: 0.000300\n", "2020-01-21 21:33:35,342 Epoch 13: total training loss 8995.83\n", "2020-01-21 21:33:35,343 EPOCH 14\n", "2020-01-21 21:33:39,669 Epoch 14 Step: 68300 Batch Loss: 1.696854 Tokens per Sec: 16982, Lr: 0.000300\n", "2020-01-21 21:33:51,027 Epoch 14 Step: 68400 Batch Loss: 1.763883 Tokens per Sec: 20640, Lr: 0.000300\n", "2020-01-21 21:34:02,330 Epoch 14 Step: 68500 Batch Loss: 1.819894 Tokens per Sec: 20118, Lr: 0.000300\n", "2020-01-21 21:34:13,669 Epoch 14 Step: 68600 Batch Loss: 1.845088 Tokens per Sec: 20240, Lr: 0.000300\n", "2020-01-21 21:34:25,080 Epoch 14 Step: 68700 Batch Loss: 1.680164 Tokens per Sec: 20055, Lr: 0.000300\n", "2020-01-21 21:34:36,467 Epoch 14 Step: 68800 Batch Loss: 1.796839 Tokens per Sec: 20514, Lr: 0.000300\n", "2020-01-21 21:34:47,816 Epoch 14 Step: 68900 Batch Loss: 1.442270 Tokens per Sec: 20175, Lr: 0.000300\n", "2020-01-21 21:34:59,157 Epoch 14 Step: 69000 Batch Loss: 1.718257 Tokens per Sec: 20066, Lr: 0.000300\n", "2020-01-21 21:35:29,779 Example #0\n", "2020-01-21 21:35:29,779 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:35:29,779 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:35:29,779 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:35:29,779 Example #1\n", "2020-01-21 21:35:29,779 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:35:29,779 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:35:29,779 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ṣe pàtàkì gan - an ni .\n", "2020-01-21 21:35:29,779 Example #2\n", "2020-01-21 21:35:29,780 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:35:29,780 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:35:29,780 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:35:29,780 Example #3\n", "2020-01-21 21:35:29,780 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:35:29,780 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:35:29,780 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ń ṣe ju bó o ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:35:29,780 Validation result (greedy) at epoch 14, step 69000: bleu: 26.13, loss: 46374.7500, ppl: 4.7428, duration: 30.6232s\n", "2020-01-21 21:35:41,157 Epoch 14 Step: 69100 Batch Loss: 1.476706 Tokens per Sec: 20334, Lr: 0.000300\n", "2020-01-21 21:35:52,470 Epoch 14 Step: 69200 Batch Loss: 1.563891 Tokens per Sec: 20270, Lr: 0.000300\n", "2020-01-21 21:36:03,756 Epoch 14 Step: 69300 Batch Loss: 1.686563 Tokens per Sec: 20160, Lr: 0.000300\n", "2020-01-21 21:36:15,111 Epoch 14 Step: 69400 Batch Loss: 1.792481 Tokens per Sec: 20330, Lr: 0.000300\n", "2020-01-21 21:36:26,474 Epoch 14 Step: 69500 Batch Loss: 1.586640 Tokens per Sec: 20020, Lr: 0.000300\n", "2020-01-21 21:36:38,042 Epoch 14 Step: 69600 Batch Loss: 1.785769 Tokens per Sec: 20397, Lr: 0.000300\n", "2020-01-21 21:36:49,368 Epoch 14 Step: 69700 Batch Loss: 1.836882 Tokens per Sec: 20129, Lr: 0.000300\n", "2020-01-21 21:37:00,752 Epoch 14 Step: 69800 Batch Loss: 1.802576 Tokens per Sec: 20213, Lr: 0.000300\n", "2020-01-21 21:37:12,068 Epoch 14 Step: 69900 Batch Loss: 1.532484 Tokens per Sec: 20105, Lr: 0.000300\n", "2020-01-21 21:37:23,457 Epoch 14 Step: 70000 Batch Loss: 1.594505 Tokens per Sec: 20703, Lr: 0.000300\n", "2020-01-21 21:37:54,132 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:37:54,132 Saving new checkpoint.\n", "2020-01-21 21:37:54,406 Example #0\n", "2020-01-21 21:37:54,406 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:37:54,406 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:37:54,406 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:37:54,406 Example #1\n", "2020-01-21 21:37:54,406 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:37:54,406 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:37:54,406 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó dára jù lọ ni .\n", "2020-01-21 21:37:54,406 Example #2\n", "2020-01-21 21:37:54,406 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:37:54,406 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:37:54,406 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:37:54,407 Example #3\n", "2020-01-21 21:37:54,407 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:37:54,407 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:37:54,407 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì pọ̀ jù lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:37:54,407 Validation result (greedy) at epoch 14, step 70000: bleu: 26.63, loss: 46043.8711, ppl: 4.6904, duration: 30.9495s\n", "2020-01-21 21:38:05,823 Epoch 14 Step: 70100 Batch Loss: 1.830154 Tokens per Sec: 20414, Lr: 0.000300\n", "2020-01-21 21:38:17,156 Epoch 14 Step: 70200 Batch Loss: 1.782887 Tokens per Sec: 20469, Lr: 0.000300\n", "2020-01-21 21:38:28,584 Epoch 14 Step: 70300 Batch Loss: 1.770344 Tokens per Sec: 20594, Lr: 0.000300\n", "2020-01-21 21:38:40,043 Epoch 14 Step: 70400 Batch Loss: 1.626540 Tokens per Sec: 20460, Lr: 0.000300\n", "2020-01-21 21:38:51,495 Epoch 14 Step: 70500 Batch Loss: 1.685201 Tokens per Sec: 19961, Lr: 0.000300\n", "2020-01-21 21:39:02,868 Epoch 14 Step: 70600 Batch Loss: 1.653417 Tokens per Sec: 20249, Lr: 0.000300\n", "2020-01-21 21:39:14,157 Epoch 14 Step: 70700 Batch Loss: 1.722626 Tokens per Sec: 19823, Lr: 0.000300\n", "2020-01-21 21:39:25,593 Epoch 14 Step: 70800 Batch Loss: 1.606547 Tokens per Sec: 20772, Lr: 0.000300\n", "2020-01-21 21:39:36,827 Epoch 14 Step: 70900 Batch Loss: 1.702333 Tokens per Sec: 20037, Lr: 0.000300\n", "2020-01-21 21:39:48,298 Epoch 14 Step: 71000 Batch Loss: 1.600114 Tokens per Sec: 20668, Lr: 0.000300\n", "2020-01-21 21:40:18,927 Example #0\n", "2020-01-21 21:40:18,927 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:40:18,927 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:40:18,927 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:40:18,927 Example #1\n", "2020-01-21 21:40:18,928 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:40:18,928 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:40:18,928 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mówó wọlé fún mi .\n", "2020-01-21 21:40:18,928 Example #2\n", "2020-01-21 21:40:18,928 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:40:18,928 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:40:18,928 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:40:18,928 Example #3\n", "2020-01-21 21:40:18,928 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:40:18,928 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:40:18,928 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì pọ̀ ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:40:18,928 Validation result (greedy) at epoch 14, step 71000: bleu: 26.28, loss: 46083.7891, ppl: 4.6967, duration: 30.6303s\n", "2020-01-21 21:40:30,402 Epoch 14 Step: 71100 Batch Loss: 1.788579 Tokens per Sec: 20658, Lr: 0.000300\n", "2020-01-21 21:40:41,756 Epoch 14 Step: 71200 Batch Loss: 1.727310 Tokens per Sec: 20137, Lr: 0.000300\n", "2020-01-21 21:40:53,200 Epoch 14 Step: 71300 Batch Loss: 1.688208 Tokens per Sec: 20423, Lr: 0.000300\n", "2020-01-21 21:41:04,550 Epoch 14 Step: 71400 Batch Loss: 1.574791 Tokens per Sec: 20250, Lr: 0.000300\n", "2020-01-21 21:41:15,913 Epoch 14 Step: 71500 Batch Loss: 1.717142 Tokens per Sec: 20331, Lr: 0.000300\n", "2020-01-21 21:41:27,379 Epoch 14 Step: 71600 Batch Loss: 1.713893 Tokens per Sec: 20611, Lr: 0.000300\n", "2020-01-21 21:41:38,759 Epoch 14 Step: 71700 Batch Loss: 1.713906 Tokens per Sec: 20067, Lr: 0.000300\n", "2020-01-21 21:41:50,276 Epoch 14 Step: 71800 Batch Loss: 1.798044 Tokens per Sec: 20198, Lr: 0.000300\n", "2020-01-21 21:42:01,602 Epoch 14 Step: 71900 Batch Loss: 1.618388 Tokens per Sec: 20174, Lr: 0.000300\n", "2020-01-21 21:42:12,993 Epoch 14 Step: 72000 Batch Loss: 1.735338 Tokens per Sec: 20443, Lr: 0.000300\n", "2020-01-21 21:42:43,639 Example #0\n", "2020-01-21 21:42:43,639 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:42:43,639 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:42:43,639 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:42:43,639 Example #1\n", "2020-01-21 21:42:43,639 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:42:43,639 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:42:43,640 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ gidi ni mo ní .\n", "2020-01-21 21:42:43,640 Example #2\n", "2020-01-21 21:42:43,640 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:42:43,640 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:42:43,640 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:42:43,640 Example #3\n", "2020-01-21 21:42:43,640 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:42:43,640 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:42:43,640 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:42:43,640 Validation result (greedy) at epoch 14, step 72000: bleu: 26.27, loss: 46072.4258, ppl: 4.6949, duration: 30.6464s\n", "2020-01-21 21:42:55,165 Epoch 14 Step: 72100 Batch Loss: 1.742028 Tokens per Sec: 20385, Lr: 0.000300\n", "2020-01-21 21:43:06,513 Epoch 14 Step: 72200 Batch Loss: 1.689659 Tokens per Sec: 20067, Lr: 0.000300\n", "2020-01-21 21:43:18,037 Epoch 14 Step: 72300 Batch Loss: 1.713364 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 21:43:29,480 Epoch 14 Step: 72400 Batch Loss: 1.584090 Tokens per Sec: 19739, Lr: 0.000300\n", "2020-01-21 21:43:40,974 Epoch 14 Step: 72500 Batch Loss: 1.896921 Tokens per Sec: 20313, Lr: 0.000300\n", "2020-01-21 21:43:52,290 Epoch 14 Step: 72600 Batch Loss: 1.785586 Tokens per Sec: 20018, Lr: 0.000300\n", "2020-01-21 21:44:03,818 Epoch 14 Step: 72700 Batch Loss: 1.517971 Tokens per Sec: 20336, Lr: 0.000300\n", "2020-01-21 21:44:15,213 Epoch 14 Step: 72800 Batch Loss: 1.776048 Tokens per Sec: 20261, Lr: 0.000300\n", "2020-01-21 21:44:26,642 Epoch 14 Step: 72900 Batch Loss: 1.709090 Tokens per Sec: 20712, Lr: 0.000300\n", "2020-01-21 21:44:38,015 Epoch 14 Step: 73000 Batch Loss: 1.535784 Tokens per Sec: 20332, Lr: 0.000300\n", "2020-01-21 21:45:08,614 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:45:08,614 Saving new checkpoint.\n", "2020-01-21 21:45:08,871 Example #0\n", "2020-01-21 21:45:08,871 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:45:08,872 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:45:08,872 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:45:08,872 Example #1\n", "2020-01-21 21:45:08,872 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:45:08,872 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:45:08,872 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń ṣe mí láǹfààní gan - an .\n", "2020-01-21 21:45:08,872 Example #2\n", "2020-01-21 21:45:08,872 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:45:08,872 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:45:08,872 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:45:08,872 Example #3\n", "2020-01-21 21:45:08,872 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:45:08,872 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:45:08,872 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:45:08,872 Validation result (greedy) at epoch 14, step 73000: bleu: 26.43, loss: 45832.1484, ppl: 4.6572, duration: 30.8573s\n", "2020-01-21 21:45:20,350 Epoch 14 Step: 73100 Batch Loss: 1.769840 Tokens per Sec: 20131, Lr: 0.000300\n", "2020-01-21 21:45:31,724 Epoch 14 Step: 73200 Batch Loss: 1.764177 Tokens per Sec: 20323, Lr: 0.000300\n", "2020-01-21 21:45:43,199 Epoch 14 Step: 73300 Batch Loss: 1.626931 Tokens per Sec: 20612, Lr: 0.000300\n", "2020-01-21 21:45:54,646 Epoch 14 Step: 73400 Batch Loss: 1.674581 Tokens per Sec: 20432, Lr: 0.000300\n", "2020-01-21 21:46:06,019 Epoch 14 Step: 73500 Batch Loss: 1.748009 Tokens per Sec: 20109, Lr: 0.000300\n", "2020-01-21 21:46:07,914 Epoch 14: total training loss 8872.84\n", "2020-01-21 21:46:07,914 EPOCH 15\n", "2020-01-21 21:46:17,754 Epoch 15 Step: 73600 Batch Loss: 1.752743 Tokens per Sec: 19094, Lr: 0.000300\n", "2020-01-21 21:46:29,207 Epoch 15 Step: 73700 Batch Loss: 1.662954 Tokens per Sec: 20520, Lr: 0.000300\n", "2020-01-21 21:46:40,576 Epoch 15 Step: 73800 Batch Loss: 1.758139 Tokens per Sec: 20477, Lr: 0.000300\n", "2020-01-21 21:46:51,981 Epoch 15 Step: 73900 Batch Loss: 1.760364 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-21 21:47:03,450 Epoch 15 Step: 74000 Batch Loss: 1.538668 Tokens per Sec: 20472, Lr: 0.000300\n", "2020-01-21 21:47:34,025 Example #0\n", "2020-01-21 21:47:34,026 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:47:34,026 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:47:34,026 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:47:34,026 Example #1\n", "2020-01-21 21:47:34,026 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:47:34,026 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:47:34,026 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mówó wọlé ni .\n", "2020-01-21 21:47:34,026 Example #2\n", "2020-01-21 21:47:34,026 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:47:34,026 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:47:34,026 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:47:34,026 Example #3\n", "2020-01-21 21:47:34,026 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:47:34,026 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:47:34,026 \tHypothesis: Ó ní ìrírí àti ìṣesí tó ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:47:34,027 Validation result (greedy) at epoch 15, step 74000: bleu: 26.32, loss: 45857.4414, ppl: 4.6611, duration: 30.5764s\n", "2020-01-21 21:47:45,465 Epoch 15 Step: 74100 Batch Loss: 1.677195 Tokens per Sec: 20567, Lr: 0.000300\n", "2020-01-21 21:47:56,801 Epoch 15 Step: 74200 Batch Loss: 1.588982 Tokens per Sec: 20554, Lr: 0.000300\n", "2020-01-21 21:48:08,313 Epoch 15 Step: 74300 Batch Loss: 1.722008 Tokens per Sec: 20984, Lr: 0.000300\n", "2020-01-21 21:48:19,696 Epoch 15 Step: 74400 Batch Loss: 1.798096 Tokens per Sec: 20336, Lr: 0.000300\n", "2020-01-21 21:48:30,978 Epoch 15 Step: 74500 Batch Loss: 1.705327 Tokens per Sec: 19859, Lr: 0.000300\n", "2020-01-21 21:48:42,393 Epoch 15 Step: 74600 Batch Loss: 1.614851 Tokens per Sec: 20582, Lr: 0.000300\n", "2020-01-21 21:48:53,727 Epoch 15 Step: 74700 Batch Loss: 1.708690 Tokens per Sec: 20128, Lr: 0.000300\n", "2020-01-21 21:49:04,997 Epoch 15 Step: 74800 Batch Loss: 1.642358 Tokens per Sec: 20309, Lr: 0.000300\n", "2020-01-21 21:49:16,437 Epoch 15 Step: 74900 Batch Loss: 1.608981 Tokens per Sec: 20581, Lr: 0.000300\n", "2020-01-21 21:49:27,795 Epoch 15 Step: 75000 Batch Loss: 1.720957 Tokens per Sec: 19838, Lr: 0.000300\n", "2020-01-21 21:49:58,389 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:49:58,389 Saving new checkpoint.\n", "2020-01-21 21:49:58,670 Example #0\n", "2020-01-21 21:49:58,671 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:49:58,671 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:49:58,671 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:49:58,671 Example #1\n", "2020-01-21 21:49:58,671 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:49:58,671 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:49:58,671 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí wọ́n ti ń ṣe iṣẹ́ àṣekúdórógbó .\n", "2020-01-21 21:49:58,671 Example #2\n", "2020-01-21 21:49:58,671 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:49:58,671 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:49:58,671 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 21:49:58,671 Example #3\n", "2020-01-21 21:49:58,671 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:49:58,671 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:49:58,671 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:49:58,672 Validation result (greedy) at epoch 15, step 75000: bleu: 26.51, loss: 45782.2852, ppl: 4.6494, duration: 30.8762s\n", "2020-01-21 21:50:10,115 Epoch 15 Step: 75100 Batch Loss: 1.711276 Tokens per Sec: 20543, Lr: 0.000300\n", "2020-01-21 21:50:21,453 Epoch 15 Step: 75200 Batch Loss: 1.766278 Tokens per Sec: 20543, Lr: 0.000300\n", "2020-01-21 21:50:32,779 Epoch 15 Step: 75300 Batch Loss: 1.723137 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-21 21:50:44,216 Epoch 15 Step: 75400 Batch Loss: 1.759967 Tokens per Sec: 20480, Lr: 0.000300\n", "2020-01-21 21:50:55,542 Epoch 15 Step: 75500 Batch Loss: 1.979243 Tokens per Sec: 19965, Lr: 0.000300\n", "2020-01-21 21:51:06,919 Epoch 15 Step: 75600 Batch Loss: 1.586039 Tokens per Sec: 20921, Lr: 0.000300\n", "2020-01-21 21:51:18,269 Epoch 15 Step: 75700 Batch Loss: 1.553587 Tokens per Sec: 20134, Lr: 0.000300\n", "2020-01-21 21:51:29,618 Epoch 15 Step: 75800 Batch Loss: 1.906116 Tokens per Sec: 20197, Lr: 0.000300\n", "2020-01-21 21:51:41,005 Epoch 15 Step: 75900 Batch Loss: 1.667538 Tokens per Sec: 20465, Lr: 0.000300\n", "2020-01-21 21:51:52,370 Epoch 15 Step: 76000 Batch Loss: 1.496420 Tokens per Sec: 20023, Lr: 0.000300\n", "2020-01-21 21:52:22,986 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:52:22,986 Saving new checkpoint.\n", "2020-01-21 21:52:23,234 Example #0\n", "2020-01-21 21:52:23,234 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:52:23,234 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:52:23,234 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ láti ọ̀dọ̀ Kristi .\n", "2020-01-21 21:52:23,234 Example #1\n", "2020-01-21 21:52:23,234 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:52:23,234 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:52:23,234 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ kan tó máa jẹ́ kí n lè rí i pé iṣẹ́ náà ti tó .\n", "2020-01-21 21:52:23,234 Example #2\n", "2020-01-21 21:52:23,235 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:52:23,235 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:52:23,235 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 21:52:23,235 Example #3\n", "2020-01-21 21:52:23,235 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:52:23,235 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:52:23,235 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:52:23,235 Validation result (greedy) at epoch 15, step 76000: bleu: 26.78, loss: 45735.5273, ppl: 4.6421, duration: 30.8648s\n", "2020-01-21 21:52:34,555 Epoch 15 Step: 76100 Batch Loss: 1.664951 Tokens per Sec: 20327, Lr: 0.000300\n", "2020-01-21 21:52:45,953 Epoch 15 Step: 76200 Batch Loss: 1.402243 Tokens per Sec: 20574, Lr: 0.000300\n", "2020-01-21 21:52:57,384 Epoch 15 Step: 76300 Batch Loss: 1.762421 Tokens per Sec: 20350, Lr: 0.000300\n", "2020-01-21 21:53:08,821 Epoch 15 Step: 76400 Batch Loss: 1.655978 Tokens per Sec: 20393, Lr: 0.000300\n", "2020-01-21 21:53:20,124 Epoch 15 Step: 76500 Batch Loss: 1.717779 Tokens per Sec: 20107, Lr: 0.000300\n", "2020-01-21 21:53:31,452 Epoch 15 Step: 76600 Batch Loss: 1.794860 Tokens per Sec: 20271, Lr: 0.000300\n", "2020-01-21 21:53:42,912 Epoch 15 Step: 76700 Batch Loss: 1.669904 Tokens per Sec: 20309, Lr: 0.000300\n", "2020-01-21 21:53:54,294 Epoch 15 Step: 76800 Batch Loss: 1.818095 Tokens per Sec: 20205, Lr: 0.000300\n", "2020-01-21 21:54:05,654 Epoch 15 Step: 76900 Batch Loss: 1.635460 Tokens per Sec: 20045, Lr: 0.000300\n", "2020-01-21 21:54:16,933 Epoch 15 Step: 77000 Batch Loss: 1.633455 Tokens per Sec: 20019, Lr: 0.000300\n", "2020-01-21 21:54:47,522 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:54:47,523 Saving new checkpoint.\n", "2020-01-21 21:54:47,777 Example #0\n", "2020-01-21 21:54:47,777 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:54:47,777 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:54:47,777 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:54:47,777 Example #1\n", "2020-01-21 21:54:47,777 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:54:47,778 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:54:47,778 \tHypothesis: Ní báyìí , mo ti wá rí iṣẹ́ kan tó máa jẹ́ kí n lè rí iṣẹ́ tó bójú mu .\n", "2020-01-21 21:54:47,778 Example #2\n", "2020-01-21 21:54:47,778 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:54:47,778 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:54:47,778 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 21:54:47,778 Example #3\n", "2020-01-21 21:54:47,778 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:54:47,778 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:54:47,778 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ga ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:54:47,778 Validation result (greedy) at epoch 15, step 77000: bleu: 26.70, loss: 45685.9648, ppl: 4.6344, duration: 30.8455s\n", "2020-01-21 21:54:59,204 Epoch 15 Step: 77100 Batch Loss: 1.701176 Tokens per Sec: 20057, Lr: 0.000300\n", "2020-01-21 21:55:10,608 Epoch 15 Step: 77200 Batch Loss: 1.791855 Tokens per Sec: 20431, Lr: 0.000300\n", "2020-01-21 21:55:21,915 Epoch 15 Step: 77300 Batch Loss: 1.623503 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-21 21:55:33,326 Epoch 15 Step: 77400 Batch Loss: 1.743014 Tokens per Sec: 20567, Lr: 0.000300\n", "2020-01-21 21:55:44,586 Epoch 15 Step: 77500 Batch Loss: 1.827065 Tokens per Sec: 20306, Lr: 0.000300\n", "2020-01-21 21:55:55,850 Epoch 15 Step: 77600 Batch Loss: 1.684498 Tokens per Sec: 20167, Lr: 0.000300\n", "2020-01-21 21:56:07,266 Epoch 15 Step: 77700 Batch Loss: 1.753906 Tokens per Sec: 20654, Lr: 0.000300\n", "2020-01-21 21:56:18,668 Epoch 15 Step: 77800 Batch Loss: 1.754263 Tokens per Sec: 20342, Lr: 0.000300\n", "2020-01-21 21:56:30,023 Epoch 15 Step: 77900 Batch Loss: 1.463210 Tokens per Sec: 20440, Lr: 0.000300\n", "2020-01-21 21:56:41,469 Epoch 15 Step: 78000 Batch Loss: 1.643775 Tokens per Sec: 20598, Lr: 0.000300\n", "2020-01-21 21:57:12,102 Hooray! New best validation result [ppl]!\n", "2020-01-21 21:57:12,102 Saving new checkpoint.\n", "2020-01-21 21:57:12,353 Example #0\n", "2020-01-21 21:57:12,353 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:57:12,353 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:57:12,353 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:57:12,353 Example #1\n", "2020-01-21 21:57:12,354 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:57:12,354 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:57:12,354 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ kò tó nǹkan .\n", "2020-01-21 21:57:12,354 Example #2\n", "2020-01-21 21:57:12,354 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:57:12,354 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:57:12,354 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 21:57:12,354 Example #3\n", "2020-01-21 21:57:12,354 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:57:12,354 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:57:12,354 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti amọ̀ ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 21:57:12,355 Validation result (greedy) at epoch 15, step 78000: bleu: 26.76, loss: 45507.3516, ppl: 4.6067, duration: 30.8850s\n", "2020-01-21 21:57:23,850 Epoch 15 Step: 78100 Batch Loss: 1.633204 Tokens per Sec: 20074, Lr: 0.000300\n", "2020-01-21 21:57:35,310 Epoch 15 Step: 78200 Batch Loss: 1.757160 Tokens per Sec: 20474, Lr: 0.000300\n", "2020-01-21 21:57:46,757 Epoch 15 Step: 78300 Batch Loss: 1.656680 Tokens per Sec: 20642, Lr: 0.000300\n", "2020-01-21 21:57:58,106 Epoch 15 Step: 78400 Batch Loss: 1.520524 Tokens per Sec: 20173, Lr: 0.000300\n", "2020-01-21 21:58:09,467 Epoch 15 Step: 78500 Batch Loss: 1.565721 Tokens per Sec: 20184, Lr: 0.000300\n", "2020-01-21 21:58:20,831 Epoch 15 Step: 78600 Batch Loss: 1.983137 Tokens per Sec: 20584, Lr: 0.000300\n", "2020-01-21 21:58:32,243 Epoch 15 Step: 78700 Batch Loss: 1.794301 Tokens per Sec: 20233, Lr: 0.000300\n", "2020-01-21 21:58:39,389 Epoch 15: total training loss 8780.97\n", "2020-01-21 21:58:39,389 EPOCH 16\n", "2020-01-21 21:58:44,218 Epoch 16 Step: 78800 Batch Loss: 1.720862 Tokens per Sec: 17808, Lr: 0.000300\n", "2020-01-21 21:58:55,755 Epoch 16 Step: 78900 Batch Loss: 1.539339 Tokens per Sec: 20725, Lr: 0.000300\n", "2020-01-21 21:59:07,080 Epoch 16 Step: 79000 Batch Loss: 1.851431 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-21 21:59:37,729 Example #0\n", "2020-01-21 21:59:37,730 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 21:59:37,730 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 21:59:37,730 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 21:59:37,730 Example #1\n", "2020-01-21 21:59:37,730 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 21:59:37,730 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 21:59:37,730 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mówó wọlé ni mo máa ń ṣe .\n", "2020-01-21 21:59:37,730 Example #2\n", "2020-01-21 21:59:37,730 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 21:59:37,730 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 21:59:37,730 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 21:59:37,731 Example #3\n", "2020-01-21 21:59:37,731 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 21:59:37,731 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 21:59:37,731 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní ohun tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 21:59:37,731 Validation result (greedy) at epoch 16, step 79000: bleu: 26.75, loss: 45607.7500, ppl: 4.6222, duration: 30.6508s\n", "2020-01-21 21:59:49,232 Epoch 16 Step: 79100 Batch Loss: 1.657538 Tokens per Sec: 20584, Lr: 0.000300\n", "2020-01-21 22:00:00,530 Epoch 16 Step: 79200 Batch Loss: 1.875990 Tokens per Sec: 20190, Lr: 0.000300\n", "2020-01-21 22:00:11,954 Epoch 16 Step: 79300 Batch Loss: 1.389010 Tokens per Sec: 20610, Lr: 0.000300\n", "2020-01-21 22:00:23,348 Epoch 16 Step: 79400 Batch Loss: 1.641467 Tokens per Sec: 20221, Lr: 0.000300\n", "2020-01-21 22:00:34,774 Epoch 16 Step: 79500 Batch Loss: 1.709813 Tokens per Sec: 20450, Lr: 0.000300\n", "2020-01-21 22:00:46,184 Epoch 16 Step: 79600 Batch Loss: 1.640235 Tokens per Sec: 20353, Lr: 0.000300\n", "2020-01-21 22:00:57,602 Epoch 16 Step: 79700 Batch Loss: 1.739546 Tokens per Sec: 20412, Lr: 0.000300\n", "2020-01-21 22:01:08,924 Epoch 16 Step: 79800 Batch Loss: 1.614266 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-21 22:01:20,237 Epoch 16 Step: 79900 Batch Loss: 1.852093 Tokens per Sec: 19804, Lr: 0.000300\n", "2020-01-21 22:01:31,687 Epoch 16 Step: 80000 Batch Loss: 1.650737 Tokens per Sec: 20756, Lr: 0.000300\n", "2020-01-21 22:02:02,440 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:02:02,440 Saving new checkpoint.\n", "2020-01-21 22:02:02,732 Example #0\n", "2020-01-21 22:02:02,733 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:02:02,733 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:02:02,733 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:02:02,733 Example #1\n", "2020-01-21 22:02:02,733 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:02:02,733 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:02:02,733 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ kò tó nǹkan .\n", "2020-01-21 22:02:02,733 Example #2\n", "2020-01-21 22:02:02,733 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:02:02,733 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:02:02,733 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:02:02,733 Example #3\n", "2020-01-21 22:02:02,733 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:02:02,733 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:02:02,734 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ga ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:02:02,734 Validation result (greedy) at epoch 16, step 80000: bleu: 26.92, loss: 45203.7109, ppl: 4.5599, duration: 31.0461s\n", "2020-01-21 22:02:14,080 Epoch 16 Step: 80100 Batch Loss: 1.696941 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-21 22:02:25,472 Epoch 16 Step: 80200 Batch Loss: 1.546518 Tokens per Sec: 19786, Lr: 0.000300\n", "2020-01-21 22:02:36,907 Epoch 16 Step: 80300 Batch Loss: 1.673076 Tokens per Sec: 20788, Lr: 0.000300\n", "2020-01-21 22:02:48,273 Epoch 16 Step: 80400 Batch Loss: 1.613157 Tokens per Sec: 19960, Lr: 0.000300\n", "2020-01-21 22:02:59,626 Epoch 16 Step: 80500 Batch Loss: 1.589091 Tokens per Sec: 20084, Lr: 0.000300\n", "2020-01-21 22:03:10,956 Epoch 16 Step: 80600 Batch Loss: 1.530337 Tokens per Sec: 20400, Lr: 0.000300\n", "2020-01-21 22:03:22,327 Epoch 16 Step: 80700 Batch Loss: 1.557694 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 22:03:33,735 Epoch 16 Step: 80800 Batch Loss: 1.424649 Tokens per Sec: 20395, Lr: 0.000300\n", "2020-01-21 22:03:45,075 Epoch 16 Step: 80900 Batch Loss: 1.638979 Tokens per Sec: 20541, Lr: 0.000300\n", "2020-01-21 22:03:56,446 Epoch 16 Step: 81000 Batch Loss: 1.756031 Tokens per Sec: 20111, Lr: 0.000300\n", "2020-01-21 22:04:27,057 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:04:27,057 Saving new checkpoint.\n", "2020-01-21 22:04:27,303 Example #0\n", "2020-01-21 22:04:27,303 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:04:27,303 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:04:27,303 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:04:27,303 Example #1\n", "2020-01-21 22:04:27,303 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:04:27,303 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:04:27,303 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ kan tó máa jẹ́ kí n lè rí i pé iṣẹ́ ti wà .\n", "2020-01-21 22:04:27,303 Example #2\n", "2020-01-21 22:04:27,304 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:04:27,304 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:04:27,304 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:04:27,304 Example #3\n", "2020-01-21 22:04:27,304 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:04:27,304 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:04:27,304 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní àmúmọ́ra ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:04:27,304 Validation result (greedy) at epoch 16, step 81000: bleu: 26.77, loss: 45191.6836, ppl: 4.5581, duration: 30.8583s\n", "2020-01-21 22:04:38,603 Epoch 16 Step: 81100 Batch Loss: 1.793814 Tokens per Sec: 19893, Lr: 0.000300\n", "2020-01-21 22:04:49,986 Epoch 16 Step: 81200 Batch Loss: 1.438902 Tokens per Sec: 20390, Lr: 0.000300\n", "2020-01-21 22:05:01,432 Epoch 16 Step: 81300 Batch Loss: 1.617008 Tokens per Sec: 20577, Lr: 0.000300\n", "2020-01-21 22:05:12,766 Epoch 16 Step: 81400 Batch Loss: 1.852027 Tokens per Sec: 20349, Lr: 0.000300\n", "2020-01-21 22:05:24,173 Epoch 16 Step: 81500 Batch Loss: 1.612862 Tokens per Sec: 20346, Lr: 0.000300\n", "2020-01-21 22:05:35,541 Epoch 16 Step: 81600 Batch Loss: 1.644067 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-21 22:05:46,948 Epoch 16 Step: 81700 Batch Loss: 1.926098 Tokens per Sec: 20587, Lr: 0.000300\n", "2020-01-21 22:05:58,270 Epoch 16 Step: 81800 Batch Loss: 1.517222 Tokens per Sec: 20164, Lr: 0.000300\n", "2020-01-21 22:06:09,586 Epoch 16 Step: 81900 Batch Loss: 1.798786 Tokens per Sec: 20538, Lr: 0.000300\n", "2020-01-21 22:06:20,929 Epoch 16 Step: 82000 Batch Loss: 1.704021 Tokens per Sec: 20481, Lr: 0.000300\n", "2020-01-21 22:06:51,518 Example #0\n", "2020-01-21 22:06:51,518 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:06:51,518 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:06:51,518 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:06:51,518 Example #1\n", "2020-01-21 22:06:51,519 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:06:51,519 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:06:51,519 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 22:06:51,519 Example #2\n", "2020-01-21 22:06:51,519 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:06:51,519 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:06:51,519 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 22:06:51,519 Example #3\n", "2020-01-21 22:06:51,519 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:06:51,519 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:06:51,519 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , tó sì ń fọ́nnu ju bó ṣe yẹ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:06:51,519 Validation result (greedy) at epoch 16, step 82000: bleu: 27.02, loss: 45299.5156, ppl: 4.5746, duration: 30.5895s\n", "2020-01-21 22:07:02,967 Epoch 16 Step: 82100 Batch Loss: 1.428961 Tokens per Sec: 20130, Lr: 0.000300\n", "2020-01-21 22:07:14,415 Epoch 16 Step: 82200 Batch Loss: 1.648823 Tokens per Sec: 20594, Lr: 0.000300\n", "2020-01-21 22:07:25,689 Epoch 16 Step: 82300 Batch Loss: 1.739471 Tokens per Sec: 20209, Lr: 0.000300\n", "2020-01-21 22:07:37,118 Epoch 16 Step: 82400 Batch Loss: 1.651238 Tokens per Sec: 20355, Lr: 0.000300\n", "2020-01-21 22:07:48,436 Epoch 16 Step: 82500 Batch Loss: 1.972120 Tokens per Sec: 20446, Lr: 0.000300\n", "2020-01-21 22:07:59,854 Epoch 16 Step: 82600 Batch Loss: 1.631159 Tokens per Sec: 20790, Lr: 0.000300\n", "2020-01-21 22:08:11,167 Epoch 16 Step: 82700 Batch Loss: 1.538825 Tokens per Sec: 20346, Lr: 0.000300\n", "2020-01-21 22:08:22,537 Epoch 16 Step: 82800 Batch Loss: 1.544149 Tokens per Sec: 20087, Lr: 0.000300\n", "2020-01-21 22:08:33,868 Epoch 16 Step: 82900 Batch Loss: 1.631810 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 22:08:45,190 Epoch 16 Step: 83000 Batch Loss: 1.808543 Tokens per Sec: 20219, Lr: 0.000300\n", "2020-01-21 22:09:15,705 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:09:15,705 Saving new checkpoint.\n", "2020-01-21 22:09:15,963 Example #0\n", "2020-01-21 22:09:15,964 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:09:15,964 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:09:15,964 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:09:15,964 Example #1\n", "2020-01-21 22:09:15,964 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:09:15,964 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:09:15,964 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ kan tó bójú mu .\n", "2020-01-21 22:09:15,964 Example #2\n", "2020-01-21 22:09:15,964 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:09:15,964 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:09:15,964 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:09:15,964 Example #3\n", "2020-01-21 22:09:15,964 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:09:15,964 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:09:15,964 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní ohun tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:09:15,964 Validation result (greedy) at epoch 16, step 83000: bleu: 26.98, loss: 44943.0781, ppl: 4.5202, duration: 30.7745s\n", "2020-01-21 22:09:27,304 Epoch 16 Step: 83100 Batch Loss: 1.560723 Tokens per Sec: 20537, Lr: 0.000300\n", "2020-01-21 22:09:38,655 Epoch 16 Step: 83200 Batch Loss: 1.504679 Tokens per Sec: 20374, Lr: 0.000300\n", "2020-01-21 22:09:50,029 Epoch 16 Step: 83300 Batch Loss: 1.614877 Tokens per Sec: 20332, Lr: 0.000300\n", "2020-01-21 22:10:01,350 Epoch 16 Step: 83400 Batch Loss: 1.470507 Tokens per Sec: 20149, Lr: 0.000300\n", "2020-01-21 22:10:12,704 Epoch 16 Step: 83500 Batch Loss: 1.717294 Tokens per Sec: 20229, Lr: 0.000300\n", "2020-01-21 22:10:24,009 Epoch 16 Step: 83600 Batch Loss: 1.499616 Tokens per Sec: 20148, Lr: 0.000300\n", "2020-01-21 22:10:35,357 Epoch 16 Step: 83700 Batch Loss: 1.786312 Tokens per Sec: 20404, Lr: 0.000300\n", "2020-01-21 22:10:46,706 Epoch 16 Step: 83800 Batch Loss: 1.697998 Tokens per Sec: 20439, Lr: 0.000300\n", "2020-01-21 22:10:58,185 Epoch 16 Step: 83900 Batch Loss: 1.706804 Tokens per Sec: 20662, Lr: 0.000300\n", "2020-01-21 22:11:09,495 Epoch 16 Step: 84000 Batch Loss: 1.704499 Tokens per Sec: 20413, Lr: 0.000300\n", "2020-01-21 22:11:40,096 Example #0\n", "2020-01-21 22:11:40,097 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:11:40,097 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:11:40,097 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:11:40,097 Example #1\n", "2020-01-21 22:11:40,097 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:11:40,097 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:11:40,097 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń mówó wọlé fún mi .\n", "2020-01-21 22:11:40,097 Example #2\n", "2020-01-21 22:11:40,097 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:11:40,097 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:11:40,097 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 22:11:40,097 Example #3\n", "2020-01-21 22:11:40,097 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:11:40,097 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:11:40,097 \tHypothesis: Ó ní ìrírí tó ga ju tìẹ lọ , ó sì ní àmúmọ́ra ju bó ṣe yẹ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:11:40,097 Validation result (greedy) at epoch 16, step 84000: bleu: 27.39, loss: 45048.5195, ppl: 4.5363, duration: 30.6022s\n", "2020-01-21 22:11:41,476 Epoch 16: total training loss 8702.76\n", "2020-01-21 22:11:41,476 EPOCH 17\n", "2020-01-21 22:11:51,889 Epoch 17 Step: 84100 Batch Loss: 2.105317 Tokens per Sec: 19108, Lr: 0.000300\n", "2020-01-21 22:12:03,207 Epoch 17 Step: 84200 Batch Loss: 1.711482 Tokens per Sec: 20018, Lr: 0.000300\n", "2020-01-21 22:12:14,570 Epoch 17 Step: 84300 Batch Loss: 1.612619 Tokens per Sec: 20192, Lr: 0.000300\n", "2020-01-21 22:12:26,084 Epoch 17 Step: 84400 Batch Loss: 1.328709 Tokens per Sec: 20685, Lr: 0.000300\n", "2020-01-21 22:12:37,509 Epoch 17 Step: 84500 Batch Loss: 1.724843 Tokens per Sec: 20540, Lr: 0.000300\n", "2020-01-21 22:12:49,035 Epoch 17 Step: 84600 Batch Loss: 1.661964 Tokens per Sec: 20413, Lr: 0.000300\n", "2020-01-21 22:13:00,257 Epoch 17 Step: 84700 Batch Loss: 1.769973 Tokens per Sec: 20251, Lr: 0.000300\n", "2020-01-21 22:13:11,553 Epoch 17 Step: 84800 Batch Loss: 1.712163 Tokens per Sec: 20354, Lr: 0.000300\n", "2020-01-21 22:13:22,939 Epoch 17 Step: 84900 Batch Loss: 1.308200 Tokens per Sec: 20546, Lr: 0.000300\n", "2020-01-21 22:13:34,258 Epoch 17 Step: 85000 Batch Loss: 1.836921 Tokens per Sec: 20254, Lr: 0.000300\n", "2020-01-21 22:14:04,884 Example #0\n", "2020-01-21 22:14:04,884 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:14:04,884 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:14:04,884 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:14:04,884 Example #1\n", "2020-01-21 22:14:04,885 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:14:04,885 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:14:04,885 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 22:14:04,885 Example #2\n", "2020-01-21 22:14:04,885 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:14:04,885 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:14:04,885 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 22:14:04,885 Example #3\n", "2020-01-21 22:14:04,885 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:14:04,885 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:14:04,885 \tHypothesis: Ó ní ìrírí tó jinlẹ̀ tó sì tún ń ṣe ju bó ṣe yẹ lọ , àmọ́ ó ní sùúrù láti rìn nítòsí rẹ .\n", "2020-01-21 22:14:04,885 Validation result (greedy) at epoch 17, step 85000: bleu: 27.00, loss: 45150.0547, ppl: 4.5517, duration: 30.6268s\n", "2020-01-21 22:14:16,222 Epoch 17 Step: 85100 Batch Loss: 1.691501 Tokens per Sec: 20471, Lr: 0.000300\n", "2020-01-21 22:14:27,601 Epoch 17 Step: 85200 Batch Loss: 1.625365 Tokens per Sec: 20236, Lr: 0.000300\n", "2020-01-21 22:14:38,971 Epoch 17 Step: 85300 Batch Loss: 1.675933 Tokens per Sec: 20544, Lr: 0.000300\n", "2020-01-21 22:14:50,340 Epoch 17 Step: 85400 Batch Loss: 1.668196 Tokens per Sec: 20727, Lr: 0.000300\n", "2020-01-21 22:15:01,664 Epoch 17 Step: 85500 Batch Loss: 1.516878 Tokens per Sec: 20003, Lr: 0.000300\n", "2020-01-21 22:15:13,046 Epoch 17 Step: 85600 Batch Loss: 1.734058 Tokens per Sec: 20131, Lr: 0.000300\n", "2020-01-21 22:15:24,327 Epoch 17 Step: 85700 Batch Loss: 1.519556 Tokens per Sec: 20288, Lr: 0.000300\n", "2020-01-21 22:15:35,608 Epoch 17 Step: 85800 Batch Loss: 1.547774 Tokens per Sec: 20055, Lr: 0.000300\n", "2020-01-21 22:15:47,020 Epoch 17 Step: 85900 Batch Loss: 1.809468 Tokens per Sec: 20357, Lr: 0.000300\n", "2020-01-21 22:15:58,375 Epoch 17 Step: 86000 Batch Loss: 1.659658 Tokens per Sec: 20654, Lr: 0.000300\n", "2020-01-21 22:16:28,980 Example #0\n", "2020-01-21 22:16:28,980 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:16:28,980 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:16:28,980 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:16:28,980 Example #1\n", "2020-01-21 22:16:28,980 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:16:28,980 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:16:28,981 \tHypothesis: Ní báyìí , mo ti wá rí iṣẹ́ tó bójú mu .\n", "2020-01-21 22:16:28,981 Example #2\n", "2020-01-21 22:16:28,981 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:16:28,981 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:16:28,981 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 22:16:28,981 Example #3\n", "2020-01-21 22:16:28,981 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:16:28,981 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:16:28,981 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ń ṣamọ̀nà ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:16:28,981 Validation result (greedy) at epoch 17, step 86000: bleu: 27.30, loss: 45041.0312, ppl: 4.5351, duration: 30.6061s\n", "2020-01-21 22:16:40,218 Epoch 17 Step: 86100 Batch Loss: 1.636344 Tokens per Sec: 19961, Lr: 0.000300\n", "2020-01-21 22:16:51,621 Epoch 17 Step: 86200 Batch Loss: 1.629197 Tokens per Sec: 20406, Lr: 0.000300\n", "2020-01-21 22:17:02,968 Epoch 17 Step: 86300 Batch Loss: 1.736984 Tokens per Sec: 20353, Lr: 0.000300\n", "2020-01-21 22:17:14,337 Epoch 17 Step: 86400 Batch Loss: 1.741000 Tokens per Sec: 20508, Lr: 0.000300\n", "2020-01-21 22:17:25,661 Epoch 17 Step: 86500 Batch Loss: 1.716782 Tokens per Sec: 20245, Lr: 0.000300\n", "2020-01-21 22:17:37,002 Epoch 17 Step: 86600 Batch Loss: 1.688152 Tokens per Sec: 20428, Lr: 0.000300\n", "2020-01-21 22:17:48,284 Epoch 17 Step: 86700 Batch Loss: 1.560843 Tokens per Sec: 20208, Lr: 0.000300\n", "2020-01-21 22:17:59,722 Epoch 17 Step: 86800 Batch Loss: 1.645889 Tokens per Sec: 20441, Lr: 0.000300\n", "2020-01-21 22:18:11,021 Epoch 17 Step: 86900 Batch Loss: 1.567271 Tokens per Sec: 20267, Lr: 0.000300\n", "2020-01-21 22:18:22,336 Epoch 17 Step: 87000 Batch Loss: 1.625843 Tokens per Sec: 20326, Lr: 0.000300\n", "2020-01-21 22:18:52,924 Example #0\n", "2020-01-21 22:18:52,924 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:18:52,924 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:18:52,924 \tHypothesis: Òun ni Orísun ìwàláàyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:18:52,924 Example #1\n", "2020-01-21 22:18:52,924 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:18:52,924 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:18:52,925 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 22:18:52,925 Example #2\n", "2020-01-21 22:18:52,925 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:18:52,925 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:18:52,925 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:18:52,925 Example #3\n", "2020-01-21 22:18:52,925 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:18:52,925 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:18:52,925 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ń ṣamọ̀nà ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:18:52,925 Validation result (greedy) at epoch 17, step 87000: bleu: 27.11, loss: 44993.1211, ppl: 4.5278, duration: 30.5890s\n", "2020-01-21 22:19:04,252 Epoch 17 Step: 87100 Batch Loss: 1.796525 Tokens per Sec: 20234, Lr: 0.000300\n", "2020-01-21 22:19:15,658 Epoch 17 Step: 87200 Batch Loss: 1.660560 Tokens per Sec: 20935, Lr: 0.000300\n", "2020-01-21 22:19:26,937 Epoch 17 Step: 87300 Batch Loss: 1.508781 Tokens per Sec: 20286, Lr: 0.000300\n", "2020-01-21 22:19:38,330 Epoch 17 Step: 87400 Batch Loss: 1.550685 Tokens per Sec: 20627, Lr: 0.000300\n", "2020-01-21 22:19:49,614 Epoch 17 Step: 87500 Batch Loss: 1.650528 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-21 22:20:01,129 Epoch 17 Step: 87600 Batch Loss: 1.591359 Tokens per Sec: 20919, Lr: 0.000300\n", "2020-01-21 22:20:12,526 Epoch 17 Step: 87700 Batch Loss: 1.658913 Tokens per Sec: 20683, Lr: 0.000300\n", "2020-01-21 22:20:23,922 Epoch 17 Step: 87800 Batch Loss: 1.549433 Tokens per Sec: 20600, Lr: 0.000300\n", "2020-01-21 22:20:35,251 Epoch 17 Step: 87900 Batch Loss: 1.573841 Tokens per Sec: 20640, Lr: 0.000300\n", "2020-01-21 22:20:46,596 Epoch 17 Step: 88000 Batch Loss: 1.626719 Tokens per Sec: 20032, Lr: 0.000300\n", "2020-01-21 22:21:17,548 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:21:17,548 Saving new checkpoint.\n", "2020-01-21 22:21:17,826 Example #0\n", "2020-01-21 22:21:17,826 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:21:17,826 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:21:17,826 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:21:17,826 Example #1\n", "2020-01-21 22:21:17,826 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:21:17,826 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:21:17,826 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ kò tó nǹkan .\n", "2020-01-21 22:21:17,826 Example #2\n", "2020-01-21 22:21:17,826 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:21:17,826 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:21:17,826 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:21:17,826 Example #3\n", "2020-01-21 22:21:17,826 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:21:17,827 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:21:17,827 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ń ṣamọ̀nà ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:21:17,827 Validation result (greedy) at epoch 17, step 88000: bleu: 26.76, loss: 44803.7539, ppl: 4.4991, duration: 31.2305s\n", "2020-01-21 22:21:29,198 Epoch 17 Step: 88100 Batch Loss: 1.675113 Tokens per Sec: 20500, Lr: 0.000300\n", "2020-01-21 22:21:40,705 Epoch 17 Step: 88200 Batch Loss: 1.728809 Tokens per Sec: 20526, Lr: 0.000300\n", "2020-01-21 22:21:52,152 Epoch 17 Step: 88300 Batch Loss: 1.640887 Tokens per Sec: 19962, Lr: 0.000300\n", "2020-01-21 22:22:03,472 Epoch 17 Step: 88400 Batch Loss: 1.767399 Tokens per Sec: 20267, Lr: 0.000300\n", "2020-01-21 22:22:14,737 Epoch 17 Step: 88500 Batch Loss: 1.682996 Tokens per Sec: 19783, Lr: 0.000300\n", "2020-01-21 22:22:26,234 Epoch 17 Step: 88600 Batch Loss: 1.837083 Tokens per Sec: 20798, Lr: 0.000300\n", "2020-01-21 22:22:37,678 Epoch 17 Step: 88700 Batch Loss: 1.677157 Tokens per Sec: 20783, Lr: 0.000300\n", "2020-01-21 22:22:49,165 Epoch 17 Step: 88800 Batch Loss: 1.521674 Tokens per Sec: 20184, Lr: 0.000300\n", "2020-01-21 22:23:00,738 Epoch 17 Step: 88900 Batch Loss: 1.629217 Tokens per Sec: 20167, Lr: 0.000300\n", "2020-01-21 22:23:12,166 Epoch 17 Step: 89000 Batch Loss: 1.774973 Tokens per Sec: 20330, Lr: 0.000300\n", "2020-01-21 22:23:42,809 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:23:42,809 Saving new checkpoint.\n", "2020-01-21 22:23:43,093 Example #0\n", "2020-01-21 22:23:43,093 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:23:43,093 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:23:43,093 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:23:43,093 Example #1\n", "2020-01-21 22:23:43,093 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:23:43,093 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:23:43,093 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ńlá ni mo máa ń ṣe .\n", "2020-01-21 22:23:43,093 Example #2\n", "2020-01-21 22:23:43,094 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:23:43,094 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:23:43,094 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:23:43,094 Example #3\n", "2020-01-21 22:23:43,094 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:23:43,094 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:23:43,094 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn nǹkan tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 22:23:43,094 Validation result (greedy) at epoch 17, step 89000: bleu: 27.05, loss: 44711.8906, ppl: 4.4853, duration: 30.9280s\n", "2020-01-21 22:23:54,447 Epoch 17 Step: 89100 Batch Loss: 1.522162 Tokens per Sec: 19879, Lr: 0.000300\n", "2020-01-21 22:24:05,860 Epoch 17 Step: 89200 Batch Loss: 1.739100 Tokens per Sec: 20844, Lr: 0.000300\n", "2020-01-21 22:24:12,171 Epoch 17: total training loss 8621.38\n", "2020-01-21 22:24:12,171 EPOCH 18\n", "2020-01-21 22:24:17,735 Epoch 18 Step: 89300 Batch Loss: 1.527123 Tokens per Sec: 18564, Lr: 0.000300\n", "2020-01-21 22:24:29,117 Epoch 18 Step: 89400 Batch Loss: 1.598057 Tokens per Sec: 20335, Lr: 0.000300\n", "2020-01-21 22:24:40,442 Epoch 18 Step: 89500 Batch Loss: 1.617540 Tokens per Sec: 20399, Lr: 0.000300\n", "2020-01-21 22:24:51,736 Epoch 18 Step: 89600 Batch Loss: 1.695960 Tokens per Sec: 20436, Lr: 0.000300\n", "2020-01-21 22:25:03,115 Epoch 18 Step: 89700 Batch Loss: 1.609104 Tokens per Sec: 20866, Lr: 0.000300\n", "2020-01-21 22:25:14,397 Epoch 18 Step: 89800 Batch Loss: 1.733538 Tokens per Sec: 20541, Lr: 0.000300\n", "2020-01-21 22:25:25,712 Epoch 18 Step: 89900 Batch Loss: 1.562373 Tokens per Sec: 20350, Lr: 0.000300\n", "2020-01-21 22:25:37,104 Epoch 18 Step: 90000 Batch Loss: 1.517072 Tokens per Sec: 20487, Lr: 0.000300\n", "2020-01-21 22:26:07,728 Example #0\n", "2020-01-21 22:26:07,728 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:26:07,728 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:26:07,729 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:26:07,729 Example #1\n", "2020-01-21 22:26:07,729 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:26:07,729 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:26:07,729 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-21 22:26:07,729 Example #2\n", "2020-01-21 22:26:07,729 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:26:07,729 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:26:07,729 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:26:07,729 Example #3\n", "2020-01-21 22:26:07,729 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:26:07,729 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:26:07,729 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fídíò ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 22:26:07,729 Validation result (greedy) at epoch 18, step 90000: bleu: 27.01, loss: 44837.1914, ppl: 4.5042, duration: 30.6257s\n", "2020-01-21 22:26:19,088 Epoch 18 Step: 90100 Batch Loss: 1.607638 Tokens per Sec: 20238, Lr: 0.000300\n", "2020-01-21 22:26:30,447 Epoch 18 Step: 90200 Batch Loss: 1.906422 Tokens per Sec: 20509, Lr: 0.000300\n", "2020-01-21 22:26:41,868 Epoch 18 Step: 90300 Batch Loss: 1.730967 Tokens per Sec: 20490, Lr: 0.000300\n", "2020-01-21 22:26:53,205 Epoch 18 Step: 90400 Batch Loss: 1.787349 Tokens per Sec: 20657, Lr: 0.000300\n", "2020-01-21 22:27:04,564 Epoch 18 Step: 90500 Batch Loss: 1.549137 Tokens per Sec: 20425, Lr: 0.000300\n", "2020-01-21 22:27:15,889 Epoch 18 Step: 90600 Batch Loss: 1.601122 Tokens per Sec: 20151, Lr: 0.000300\n", "2020-01-21 22:27:27,263 Epoch 18 Step: 90700 Batch Loss: 1.644283 Tokens per Sec: 19808, Lr: 0.000300\n", "2020-01-21 22:27:38,531 Epoch 18 Step: 90800 Batch Loss: 1.584720 Tokens per Sec: 20486, Lr: 0.000300\n", "2020-01-21 22:27:49,828 Epoch 18 Step: 90900 Batch Loss: 1.681101 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-21 22:28:01,188 Epoch 18 Step: 91000 Batch Loss: 1.552531 Tokens per Sec: 20642, Lr: 0.000300\n", "2020-01-21 22:28:31,846 Example #0\n", "2020-01-21 22:28:31,847 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:28:31,847 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:28:31,847 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:28:31,847 Example #1\n", "2020-01-21 22:28:31,847 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:28:31,847 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:28:31,847 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-21 22:28:31,847 Example #2\n", "2020-01-21 22:28:31,847 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:28:31,847 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:28:31,847 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:28:31,847 Example #3\n", "2020-01-21 22:28:31,848 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:28:31,848 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:28:31,848 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn nǹkan tó ju tìẹ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 22:28:31,848 Validation result (greedy) at epoch 18, step 91000: bleu: 27.20, loss: 44792.7891, ppl: 4.4975, duration: 30.6591s\n", "2020-01-21 22:28:43,214 Epoch 18 Step: 91100 Batch Loss: 1.552743 Tokens per Sec: 20161, Lr: 0.000300\n", "2020-01-21 22:28:54,522 Epoch 18 Step: 91200 Batch Loss: 1.509987 Tokens per Sec: 20294, Lr: 0.000300\n", "2020-01-21 22:29:05,879 Epoch 18 Step: 91300 Batch Loss: 1.659998 Tokens per Sec: 20348, Lr: 0.000300\n", "2020-01-21 22:29:17,240 Epoch 18 Step: 91400 Batch Loss: 1.724509 Tokens per Sec: 20737, Lr: 0.000300\n", "2020-01-21 22:29:28,632 Epoch 18 Step: 91500 Batch Loss: 1.606760 Tokens per Sec: 20517, Lr: 0.000300\n", "2020-01-21 22:29:39,954 Epoch 18 Step: 91600 Batch Loss: 1.452108 Tokens per Sec: 20518, Lr: 0.000300\n", "2020-01-21 22:29:51,296 Epoch 18 Step: 91700 Batch Loss: 1.576298 Tokens per Sec: 20442, Lr: 0.000300\n", "2020-01-21 22:30:02,711 Epoch 18 Step: 91800 Batch Loss: 1.698425 Tokens per Sec: 20617, Lr: 0.000300\n", "2020-01-21 22:30:14,009 Epoch 18 Step: 91900 Batch Loss: 1.725748 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-21 22:30:25,433 Epoch 18 Step: 92000 Batch Loss: 1.604503 Tokens per Sec: 20692, Lr: 0.000300\n", "2020-01-21 22:30:56,042 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:30:56,042 Saving new checkpoint.\n", "2020-01-21 22:30:56,301 Example #0\n", "2020-01-21 22:30:56,302 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:30:56,302 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:30:56,302 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:30:56,302 Example #1\n", "2020-01-21 22:30:56,302 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:30:56,302 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:30:56,302 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 22:30:56,302 Example #2\n", "2020-01-21 22:30:56,302 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:30:56,302 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:30:56,302 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:30:56,302 Example #3\n", "2020-01-21 22:30:56,302 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:30:56,302 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:30:56,302 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:30:56,303 Validation result (greedy) at epoch 18, step 92000: bleu: 27.21, loss: 44558.3086, ppl: 4.4622, duration: 30.8691s\n", "2020-01-21 22:31:07,716 Epoch 18 Step: 92100 Batch Loss: 1.688359 Tokens per Sec: 19815, Lr: 0.000300\n", "2020-01-21 22:31:19,071 Epoch 18 Step: 92200 Batch Loss: 1.950520 Tokens per Sec: 20478, Lr: 0.000300\n", "2020-01-21 22:31:30,464 Epoch 18 Step: 92300 Batch Loss: 1.646692 Tokens per Sec: 20405, Lr: 0.000300\n", "2020-01-21 22:31:41,663 Epoch 18 Step: 92400 Batch Loss: 1.498056 Tokens per Sec: 19806, Lr: 0.000300\n", "2020-01-21 22:31:53,046 Epoch 18 Step: 92500 Batch Loss: 1.701947 Tokens per Sec: 20387, Lr: 0.000300\n", "2020-01-21 22:32:04,345 Epoch 18 Step: 92600 Batch Loss: 1.678493 Tokens per Sec: 20050, Lr: 0.000300\n", "2020-01-21 22:32:15,675 Epoch 18 Step: 92700 Batch Loss: 1.563277 Tokens per Sec: 20182, Lr: 0.000300\n", "2020-01-21 22:32:27,057 Epoch 18 Step: 92800 Batch Loss: 1.613040 Tokens per Sec: 20004, Lr: 0.000300\n", "2020-01-21 22:32:38,494 Epoch 18 Step: 92900 Batch Loss: 1.359211 Tokens per Sec: 20840, Lr: 0.000300\n", "2020-01-21 22:32:49,800 Epoch 18 Step: 93000 Batch Loss: 1.564879 Tokens per Sec: 20049, Lr: 0.000300\n", "2020-01-21 22:33:20,431 Example #0\n", "2020-01-21 22:33:20,431 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:33:20,431 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:33:20,431 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:33:20,431 Example #1\n", "2020-01-21 22:33:20,431 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:33:20,432 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:33:20,432 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ gidi ni .\n", "2020-01-21 22:33:20,432 Example #2\n", "2020-01-21 22:33:20,432 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:33:20,432 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:33:20,432 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:33:20,432 Example #3\n", "2020-01-21 22:33:20,432 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:33:20,432 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:33:20,432 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní èròjà fítámì ju tìẹ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 22:33:20,432 Validation result (greedy) at epoch 18, step 93000: bleu: 27.07, loss: 44566.6875, ppl: 4.4635, duration: 30.6324s\n", "2020-01-21 22:33:31,918 Epoch 18 Step: 93100 Batch Loss: 1.717591 Tokens per Sec: 20209, Lr: 0.000300\n", "2020-01-21 22:33:43,244 Epoch 18 Step: 93200 Batch Loss: 1.547084 Tokens per Sec: 20247, Lr: 0.000300\n", "2020-01-21 22:33:54,570 Epoch 18 Step: 93300 Batch Loss: 1.461066 Tokens per Sec: 20250, Lr: 0.000300\n", "2020-01-21 22:34:05,804 Epoch 18 Step: 93400 Batch Loss: 1.606118 Tokens per Sec: 20048, Lr: 0.000300\n", "2020-01-21 22:34:17,010 Epoch 18 Step: 93500 Batch Loss: 1.573963 Tokens per Sec: 19867, Lr: 0.000300\n", "2020-01-21 22:34:28,431 Epoch 18 Step: 93600 Batch Loss: 1.680404 Tokens per Sec: 20525, Lr: 0.000300\n", "2020-01-21 22:34:39,789 Epoch 18 Step: 93700 Batch Loss: 1.765089 Tokens per Sec: 20482, Lr: 0.000300\n", "2020-01-21 22:34:51,213 Epoch 18 Step: 93800 Batch Loss: 1.890053 Tokens per Sec: 20281, Lr: 0.000300\n", "2020-01-21 22:35:02,610 Epoch 18 Step: 93900 Batch Loss: 1.481746 Tokens per Sec: 20068, Lr: 0.000300\n", "2020-01-21 22:35:14,001 Epoch 18 Step: 94000 Batch Loss: 1.532439 Tokens per Sec: 20579, Lr: 0.000300\n", "2020-01-21 22:35:44,650 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:35:44,650 Saving new checkpoint.\n", "2020-01-21 22:35:44,918 Example #0\n", "2020-01-21 22:35:44,918 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:35:44,918 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:35:44,918 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:35:44,918 Example #1\n", "2020-01-21 22:35:44,919 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:35:44,919 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:35:44,919 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ kò tó nǹkan .\n", "2020-01-21 22:35:44,919 Example #2\n", "2020-01-21 22:35:44,919 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:35:44,919 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:35:44,919 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:35:44,919 Example #3\n", "2020-01-21 22:35:44,919 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:35:44,919 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:35:44,919 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní àmúmọ́ra ju bó ṣe yẹ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 22:35:44,919 Validation result (greedy) at epoch 18, step 94000: bleu: 27.19, loss: 44363.7070, ppl: 4.4332, duration: 30.9186s\n", "2020-01-21 22:35:56,240 Epoch 18 Step: 94100 Batch Loss: 1.561038 Tokens per Sec: 20422, Lr: 0.000300\n", "2020-01-21 22:36:07,496 Epoch 18 Step: 94200 Batch Loss: 1.694311 Tokens per Sec: 20184, Lr: 0.000300\n", "2020-01-21 22:36:18,873 Epoch 18 Step: 94300 Batch Loss: 1.767143 Tokens per Sec: 20406, Lr: 0.000300\n", "2020-01-21 22:36:30,182 Epoch 18 Step: 94400 Batch Loss: 1.691298 Tokens per Sec: 20230, Lr: 0.000300\n", "2020-01-21 22:36:41,533 Epoch 18 Step: 94500 Batch Loss: 1.636298 Tokens per Sec: 20392, Lr: 0.000300\n", "2020-01-21 22:36:43,112 Epoch 18: total training loss 8588.54\n", "2020-01-21 22:36:43,112 EPOCH 19\n", "2020-01-21 22:36:53,419 Epoch 19 Step: 94600 Batch Loss: 1.623680 Tokens per Sec: 19239, Lr: 0.000300\n", "2020-01-21 22:37:04,741 Epoch 19 Step: 94700 Batch Loss: 1.606897 Tokens per Sec: 20199, Lr: 0.000300\n", "2020-01-21 22:37:16,111 Epoch 19 Step: 94800 Batch Loss: 1.544959 Tokens per Sec: 20454, Lr: 0.000300\n", "2020-01-21 22:37:27,502 Epoch 19 Step: 94900 Batch Loss: 1.835765 Tokens per Sec: 20412, Lr: 0.000300\n", "2020-01-21 22:37:38,927 Epoch 19 Step: 95000 Batch Loss: 1.481731 Tokens per Sec: 20129, Lr: 0.000300\n", "2020-01-21 22:38:09,540 Example #0\n", "2020-01-21 22:38:09,540 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:38:09,540 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:38:09,541 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:38:09,541 Example #1\n", "2020-01-21 22:38:09,541 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:38:09,541 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:38:09,541 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó yẹ kí n ṣe .\n", "2020-01-21 22:38:09,541 Example #2\n", "2020-01-21 22:38:09,541 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:38:09,541 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:38:09,541 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:38:09,541 Example #3\n", "2020-01-21 22:38:09,541 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:38:09,541 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:38:09,541 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fídíò ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:38:09,542 Validation result (greedy) at epoch 19, step 95000: bleu: 27.25, loss: 44479.2852, ppl: 4.4504, duration: 30.6143s\n", "2020-01-21 22:38:20,876 Epoch 19 Step: 95100 Batch Loss: 1.625041 Tokens per Sec: 20356, Lr: 0.000300\n", "2020-01-21 22:38:32,195 Epoch 19 Step: 95200 Batch Loss: 1.622916 Tokens per Sec: 20156, Lr: 0.000300\n", "2020-01-21 22:38:43,659 Epoch 19 Step: 95300 Batch Loss: 1.531985 Tokens per Sec: 20123, Lr: 0.000300\n", "2020-01-21 22:38:55,110 Epoch 19 Step: 95400 Batch Loss: 1.751703 Tokens per Sec: 20610, Lr: 0.000300\n", "2020-01-21 22:39:06,442 Epoch 19 Step: 95500 Batch Loss: 1.574769 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-21 22:39:17,808 Epoch 19 Step: 95600 Batch Loss: 1.719962 Tokens per Sec: 20327, Lr: 0.000300\n", "2020-01-21 22:39:29,061 Epoch 19 Step: 95700 Batch Loss: 1.670185 Tokens per Sec: 20259, Lr: 0.000300\n", "2020-01-21 22:39:40,432 Epoch 19 Step: 95800 Batch Loss: 1.555370 Tokens per Sec: 20592, Lr: 0.000300\n", "2020-01-21 22:39:51,730 Epoch 19 Step: 95900 Batch Loss: 1.847329 Tokens per Sec: 20449, Lr: 0.000300\n", "2020-01-21 22:40:03,025 Epoch 19 Step: 96000 Batch Loss: 1.550228 Tokens per Sec: 20267, Lr: 0.000300\n", "2020-01-21 22:40:33,636 Example #0\n", "2020-01-21 22:40:33,636 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:40:33,636 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:40:33,636 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:40:33,636 Example #1\n", "2020-01-21 22:40:33,636 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:40:33,636 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:40:33,636 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ńlá ni mo máa ń ṣe .\n", "2020-01-21 22:40:33,636 Example #2\n", "2020-01-21 22:40:33,636 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:40:33,637 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:40:33,637 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:40:33,637 Example #3\n", "2020-01-21 22:40:33,637 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:40:33,637 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:40:33,637 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní àmúlùmálà ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:40:33,637 Validation result (greedy) at epoch 19, step 96000: bleu: 27.96, loss: 44428.9844, ppl: 4.4429, duration: 30.6121s\n", "2020-01-21 22:40:45,021 Epoch 19 Step: 96100 Batch Loss: 1.485026 Tokens per Sec: 20435, Lr: 0.000300\n", "2020-01-21 22:40:56,387 Epoch 19 Step: 96200 Batch Loss: 1.464354 Tokens per Sec: 20263, Lr: 0.000300\n", "2020-01-21 22:41:07,771 Epoch 19 Step: 96300 Batch Loss: 1.544629 Tokens per Sec: 20935, Lr: 0.000300\n", "2020-01-21 22:41:19,207 Epoch 19 Step: 96400 Batch Loss: 1.883837 Tokens per Sec: 20658, Lr: 0.000300\n", "2020-01-21 22:41:30,586 Epoch 19 Step: 96500 Batch Loss: 1.593014 Tokens per Sec: 20481, Lr: 0.000300\n", "2020-01-21 22:41:41,841 Epoch 19 Step: 96600 Batch Loss: 1.581031 Tokens per Sec: 19966, Lr: 0.000300\n", "2020-01-21 22:41:53,189 Epoch 19 Step: 96700 Batch Loss: 1.736522 Tokens per Sec: 19890, Lr: 0.000300\n", "2020-01-21 22:42:04,417 Epoch 19 Step: 96800 Batch Loss: 1.636762 Tokens per Sec: 19958, Lr: 0.000300\n", "2020-01-21 22:42:15,671 Epoch 19 Step: 96900 Batch Loss: 1.418717 Tokens per Sec: 20016, Lr: 0.000300\n", "2020-01-21 22:42:27,042 Epoch 19 Step: 97000 Batch Loss: 1.553327 Tokens per Sec: 20509, Lr: 0.000300\n", "2020-01-21 22:42:57,673 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:42:57,673 Saving new checkpoint.\n", "2020-01-21 22:42:57,911 Example #0\n", "2020-01-21 22:42:57,911 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:42:57,911 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:42:57,911 \tHypothesis: Òun ni Orísun ìwàláàyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:42:57,911 Example #1\n", "2020-01-21 22:42:57,912 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:42:57,912 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:42:57,912 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó ń lọ lọ́wọ́ ni mo ti ń ṣe .\n", "2020-01-21 22:42:57,912 Example #2\n", "2020-01-21 22:42:57,912 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:42:57,912 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:42:57,912 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:42:57,912 Example #3\n", "2020-01-21 22:42:57,912 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:42:57,912 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:42:57,912 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní àwọn ohun tó o ṣe , àmọ́ ó ní sùúrù láti rìn nítòsí rẹ .\n", "2020-01-21 22:42:57,912 Validation result (greedy) at epoch 19, step 97000: bleu: 27.42, loss: 44149.9375, ppl: 4.4015, duration: 30.8695s\n", "2020-01-21 22:43:09,414 Epoch 19 Step: 97100 Batch Loss: 1.641828 Tokens per Sec: 20523, Lr: 0.000300\n", "2020-01-21 22:43:20,851 Epoch 19 Step: 97200 Batch Loss: 1.954136 Tokens per Sec: 20452, Lr: 0.000300\n", "2020-01-21 22:43:32,147 Epoch 19 Step: 97300 Batch Loss: 1.574680 Tokens per Sec: 20309, Lr: 0.000300\n", "2020-01-21 22:43:43,534 Epoch 19 Step: 97400 Batch Loss: 1.728649 Tokens per Sec: 20410, Lr: 0.000300\n", "2020-01-21 22:43:54,974 Epoch 19 Step: 97500 Batch Loss: 1.531687 Tokens per Sec: 20133, Lr: 0.000300\n", "2020-01-21 22:44:06,258 Epoch 19 Step: 97600 Batch Loss: 2.377653 Tokens per Sec: 20514, Lr: 0.000300\n", "2020-01-21 22:44:17,641 Epoch 19 Step: 97700 Batch Loss: 1.614159 Tokens per Sec: 20526, Lr: 0.000300\n", "2020-01-21 22:44:29,024 Epoch 19 Step: 97800 Batch Loss: 1.732990 Tokens per Sec: 20399, Lr: 0.000300\n", "2020-01-21 22:44:40,378 Epoch 19 Step: 97900 Batch Loss: 1.697468 Tokens per Sec: 20317, Lr: 0.000300\n", "2020-01-21 22:44:51,777 Epoch 19 Step: 98000 Batch Loss: 1.598267 Tokens per Sec: 20282, Lr: 0.000300\n", "2020-01-21 22:45:22,379 Example #0\n", "2020-01-21 22:45:22,379 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:45:22,379 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:45:22,379 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:45:22,379 Example #1\n", "2020-01-21 22:45:22,379 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:45:22,379 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:45:22,379 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ńlá ni mo ṣe .\n", "2020-01-21 22:45:22,379 Example #2\n", "2020-01-21 22:45:22,380 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:45:22,380 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:45:22,380 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:45:22,380 Example #3\n", "2020-01-21 22:45:22,380 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:45:22,380 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:45:22,380 \tHypothesis: Ó ní ìrírí tó pọ̀ tó àti fídíò ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 22:45:22,380 Validation result (greedy) at epoch 19, step 98000: bleu: 27.43, loss: 44214.4492, ppl: 4.4110, duration: 30.6025s\n", "2020-01-21 22:45:33,654 Epoch 19 Step: 98100 Batch Loss: 1.737790 Tokens per Sec: 20072, Lr: 0.000300\n", "2020-01-21 22:45:45,106 Epoch 19 Step: 98200 Batch Loss: 1.636447 Tokens per Sec: 20560, Lr: 0.000300\n", "2020-01-21 22:45:56,549 Epoch 19 Step: 98300 Batch Loss: 1.661803 Tokens per Sec: 20582, Lr: 0.000300\n", "2020-01-21 22:46:07,848 Epoch 19 Step: 98400 Batch Loss: 1.662216 Tokens per Sec: 20375, Lr: 0.000300\n", "2020-01-21 22:46:19,119 Epoch 19 Step: 98500 Batch Loss: 1.583836 Tokens per Sec: 20305, Lr: 0.000300\n", "2020-01-21 22:46:30,433 Epoch 19 Step: 98600 Batch Loss: 1.493203 Tokens per Sec: 20524, Lr: 0.000300\n", "2020-01-21 22:46:41,741 Epoch 19 Step: 98700 Batch Loss: 1.637528 Tokens per Sec: 19943, Lr: 0.000300\n", "2020-01-21 22:46:53,092 Epoch 19 Step: 98800 Batch Loss: 1.368623 Tokens per Sec: 20602, Lr: 0.000300\n", "2020-01-21 22:47:04,444 Epoch 19 Step: 98900 Batch Loss: 1.769732 Tokens per Sec: 20377, Lr: 0.000300\n", "2020-01-21 22:47:15,761 Epoch 19 Step: 99000 Batch Loss: 1.725276 Tokens per Sec: 20453, Lr: 0.000300\n", "2020-01-21 22:47:46,351 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:47:46,351 Saving new checkpoint.\n", "2020-01-21 22:47:46,624 Example #0\n", "2020-01-21 22:47:46,624 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:47:46,624 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:47:46,624 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:47:46,624 Example #1\n", "2020-01-21 22:47:46,624 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:47:46,624 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:47:46,624 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ti kọjá àyè mi .\n", "2020-01-21 22:47:46,624 Example #2\n", "2020-01-21 22:47:46,625 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:47:46,625 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:47:46,625 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:47:46,625 Example #3\n", "2020-01-21 22:47:46,625 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:47:46,625 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:47:46,625 \tHypothesis: Ó ní ìrírí tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 22:47:46,625 Validation result (greedy) at epoch 19, step 99000: bleu: 27.67, loss: 44118.5234, ppl: 4.3968, duration: 30.8638s\n", "2020-01-21 22:47:57,892 Epoch 19 Step: 99100 Batch Loss: 1.688184 Tokens per Sec: 19597, Lr: 0.000300\n", "2020-01-21 22:48:09,199 Epoch 19 Step: 99200 Batch Loss: 1.681796 Tokens per Sec: 20521, Lr: 0.000300\n", "2020-01-21 22:48:20,571 Epoch 19 Step: 99300 Batch Loss: 1.537347 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-21 22:48:31,913 Epoch 19 Step: 99400 Batch Loss: 1.745760 Tokens per Sec: 20457, Lr: 0.000300\n", "2020-01-21 22:48:43,246 Epoch 19 Step: 99500 Batch Loss: 1.701653 Tokens per Sec: 20704, Lr: 0.000300\n", "2020-01-21 22:48:54,658 Epoch 19 Step: 99600 Batch Loss: 1.596041 Tokens per Sec: 20595, Lr: 0.000300\n", "2020-01-21 22:49:06,000 Epoch 19 Step: 99700 Batch Loss: 1.732494 Tokens per Sec: 20057, Lr: 0.000300\n", "2020-01-21 22:49:13,933 Epoch 19: total training loss 8509.15\n", "2020-01-21 22:49:13,933 EPOCH 20\n", "2020-01-21 22:49:17,856 Epoch 20 Step: 99800 Batch Loss: 1.498815 Tokens per Sec: 18414, Lr: 0.000300\n", "2020-01-21 22:49:29,178 Epoch 20 Step: 99900 Batch Loss: 1.574422 Tokens per Sec: 20053, Lr: 0.000300\n", "2020-01-21 22:49:40,564 Epoch 20 Step: 100000 Batch Loss: 1.816039 Tokens per Sec: 20472, Lr: 0.000300\n", "2020-01-21 22:50:11,419 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:50:11,419 Saving new checkpoint.\n", "2020-01-21 22:50:11,662 Example #0\n", "2020-01-21 22:50:11,662 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:50:11,662 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:50:11,662 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:50:11,662 Example #1\n", "2020-01-21 22:50:11,662 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:50:11,662 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:50:11,662 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára jù lọ ni .\n", "2020-01-21 22:50:11,662 Example #2\n", "2020-01-21 22:50:11,662 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:50:11,662 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:50:11,662 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:50:11,662 Example #3\n", "2020-01-21 22:50:11,663 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:50:11,663 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:50:11,663 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní àmúlùmálà ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 22:50:11,663 Validation result (greedy) at epoch 20, step 100000: bleu: 27.66, loss: 44098.3750, ppl: 4.3939, duration: 31.0987s\n", "2020-01-21 22:50:23,036 Epoch 20 Step: 100100 Batch Loss: 1.796759 Tokens per Sec: 20390, Lr: 0.000300\n", "2020-01-21 22:50:34,378 Epoch 20 Step: 100200 Batch Loss: 1.695102 Tokens per Sec: 20308, Lr: 0.000300\n", "2020-01-21 22:50:45,783 Epoch 20 Step: 100300 Batch Loss: 1.426222 Tokens per Sec: 20410, Lr: 0.000300\n", "2020-01-21 22:50:57,033 Epoch 20 Step: 100400 Batch Loss: 1.583864 Tokens per Sec: 20035, Lr: 0.000300\n", "2020-01-21 22:51:08,334 Epoch 20 Step: 100500 Batch Loss: 1.675272 Tokens per Sec: 20468, Lr: 0.000300\n", "2020-01-21 22:51:19,754 Epoch 20 Step: 100600 Batch Loss: 1.483457 Tokens per Sec: 20149, Lr: 0.000300\n", "2020-01-21 22:51:31,118 Epoch 20 Step: 100700 Batch Loss: 1.816481 Tokens per Sec: 20482, Lr: 0.000300\n", "2020-01-21 22:51:42,345 Epoch 20 Step: 100800 Batch Loss: 1.368442 Tokens per Sec: 20465, Lr: 0.000300\n", "2020-01-21 22:51:53,802 Epoch 20 Step: 100900 Batch Loss: 1.671076 Tokens per Sec: 20896, Lr: 0.000300\n", "2020-01-21 22:52:05,122 Epoch 20 Step: 101000 Batch Loss: 1.699189 Tokens per Sec: 20150, Lr: 0.000300\n", "2020-01-21 22:52:35,738 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:52:35,738 Saving new checkpoint.\n", "2020-01-21 22:52:36,043 Example #0\n", "2020-01-21 22:52:36,043 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:52:36,043 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:52:36,043 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:52:36,043 Example #1\n", "2020-01-21 22:52:36,043 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:52:36,043 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:52:36,043 \tHypothesis: Ní báyìí , mo ti ní láti rí i pé iṣẹ́ tó dára jù lọ ni .\n", "2020-01-21 22:52:36,043 Example #2\n", "2020-01-21 22:52:36,043 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:52:36,043 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:52:36,043 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:52:36,043 Example #3\n", "2020-01-21 22:52:36,044 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:52:36,044 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:52:36,044 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ amí ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 22:52:36,044 Validation result (greedy) at epoch 20, step 101000: bleu: 27.67, loss: 43869.2422, ppl: 4.3602, duration: 30.9214s\n", "2020-01-21 22:52:47,562 Epoch 20 Step: 101100 Batch Loss: 1.563899 Tokens per Sec: 20104, Lr: 0.000300\n", "2020-01-21 22:52:58,917 Epoch 20 Step: 101200 Batch Loss: 1.658227 Tokens per Sec: 20195, Lr: 0.000300\n", "2020-01-21 22:53:10,238 Epoch 20 Step: 101300 Batch Loss: 1.633509 Tokens per Sec: 20258, Lr: 0.000300\n", "2020-01-21 22:53:21,642 Epoch 20 Step: 101400 Batch Loss: 1.561576 Tokens per Sec: 20245, Lr: 0.000300\n", "2020-01-21 22:53:33,086 Epoch 20 Step: 101500 Batch Loss: 1.402091 Tokens per Sec: 20639, Lr: 0.000300\n", "2020-01-21 22:53:44,486 Epoch 20 Step: 101600 Batch Loss: 1.420900 Tokens per Sec: 20632, Lr: 0.000300\n", "2020-01-21 22:53:56,031 Epoch 20 Step: 101700 Batch Loss: 1.561386 Tokens per Sec: 20699, Lr: 0.000300\n", "2020-01-21 22:54:07,406 Epoch 20 Step: 101800 Batch Loss: 1.520800 Tokens per Sec: 20398, Lr: 0.000300\n", "2020-01-21 22:54:18,753 Epoch 20 Step: 101900 Batch Loss: 1.605597 Tokens per Sec: 19875, Lr: 0.000300\n", "2020-01-21 22:54:30,202 Epoch 20 Step: 102000 Batch Loss: 1.928415 Tokens per Sec: 20528, Lr: 0.000300\n", "2020-01-21 22:55:00,822 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:55:00,823 Saving new checkpoint.\n", "2020-01-21 22:55:01,103 Example #0\n", "2020-01-21 22:55:01,103 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:55:01,103 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:55:01,103 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:55:01,103 Example #1\n", "2020-01-21 22:55:01,103 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:55:01,103 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:55:01,103 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ gidi kan wà tó yẹ kí n ṣe .\n", "2020-01-21 22:55:01,103 Example #2\n", "2020-01-21 22:55:01,104 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:55:01,104 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:55:01,104 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 22:55:01,104 Example #3\n", "2020-01-21 22:55:01,104 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:55:01,104 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:55:01,104 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ kó o mọ̀ pé o ti ṣe dáadáa , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:55:01,104 Validation result (greedy) at epoch 20, step 102000: bleu: 27.64, loss: 43829.4805, ppl: 4.3544, duration: 30.9023s\n", "2020-01-21 22:55:12,409 Epoch 20 Step: 102100 Batch Loss: 1.636173 Tokens per Sec: 19967, Lr: 0.000300\n", "2020-01-21 22:55:23,810 Epoch 20 Step: 102200 Batch Loss: 1.647821 Tokens per Sec: 20528, Lr: 0.000300\n", "2020-01-21 22:55:35,207 Epoch 20 Step: 102300 Batch Loss: 1.581896 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-21 22:55:46,582 Epoch 20 Step: 102400 Batch Loss: 1.505439 Tokens per Sec: 20436, Lr: 0.000300\n", "2020-01-21 22:55:58,028 Epoch 20 Step: 102500 Batch Loss: 1.686342 Tokens per Sec: 20323, Lr: 0.000300\n", "2020-01-21 22:56:09,427 Epoch 20 Step: 102600 Batch Loss: 1.397297 Tokens per Sec: 20308, Lr: 0.000300\n", "2020-01-21 22:56:20,855 Epoch 20 Step: 102700 Batch Loss: 1.756144 Tokens per Sec: 20243, Lr: 0.000300\n", "2020-01-21 22:56:32,312 Epoch 20 Step: 102800 Batch Loss: 1.602289 Tokens per Sec: 20297, Lr: 0.000300\n", "2020-01-21 22:56:43,600 Epoch 20 Step: 102900 Batch Loss: 1.659409 Tokens per Sec: 20391, Lr: 0.000300\n", "2020-01-21 22:56:54,905 Epoch 20 Step: 103000 Batch Loss: 1.603780 Tokens per Sec: 19996, Lr: 0.000300\n", "2020-01-21 22:57:25,494 Example #0\n", "2020-01-21 22:57:25,494 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:57:25,495 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:57:25,495 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:57:25,495 Example #1\n", "2020-01-21 22:57:25,495 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:57:25,495 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:57:25,495 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó máa ṣe mí láǹfààní gan - an ni .\n", "2020-01-21 22:57:25,495 Example #2\n", "2020-01-21 22:57:25,495 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:57:25,495 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:57:25,495 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 22:57:25,495 Example #3\n", "2020-01-21 22:57:25,495 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:57:25,495 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:57:25,495 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ amọ̀ ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:57:25,496 Validation result (greedy) at epoch 20, step 103000: bleu: 27.71, loss: 43978.5391, ppl: 4.3762, duration: 30.5899s\n", "2020-01-21 22:57:36,854 Epoch 20 Step: 103100 Batch Loss: 1.411265 Tokens per Sec: 20439, Lr: 0.000300\n", "2020-01-21 22:57:48,213 Epoch 20 Step: 103200 Batch Loss: 1.780490 Tokens per Sec: 20289, Lr: 0.000300\n", "2020-01-21 22:57:59,603 Epoch 20 Step: 103300 Batch Loss: 1.588201 Tokens per Sec: 20329, Lr: 0.000300\n", "2020-01-21 22:58:10,821 Epoch 20 Step: 103400 Batch Loss: 1.722083 Tokens per Sec: 20145, Lr: 0.000300\n", "2020-01-21 22:58:22,144 Epoch 20 Step: 103500 Batch Loss: 1.672007 Tokens per Sec: 20316, Lr: 0.000300\n", "2020-01-21 22:58:33,496 Epoch 20 Step: 103600 Batch Loss: 1.655407 Tokens per Sec: 20188, Lr: 0.000300\n", "2020-01-21 22:58:44,791 Epoch 20 Step: 103700 Batch Loss: 1.782510 Tokens per Sec: 20125, Lr: 0.000300\n", "2020-01-21 22:58:56,188 Epoch 20 Step: 103800 Batch Loss: 1.863732 Tokens per Sec: 20583, Lr: 0.000300\n", "2020-01-21 22:59:07,559 Epoch 20 Step: 103900 Batch Loss: 1.709556 Tokens per Sec: 19990, Lr: 0.000300\n", "2020-01-21 22:59:18,970 Epoch 20 Step: 104000 Batch Loss: 1.533517 Tokens per Sec: 20274, Lr: 0.000300\n", "2020-01-21 22:59:49,587 Hooray! New best validation result [ppl]!\n", "2020-01-21 22:59:49,587 Saving new checkpoint.\n", "2020-01-21 22:59:49,904 Example #0\n", "2020-01-21 22:59:49,904 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 22:59:49,904 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 22:59:49,904 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 22:59:49,904 Example #1\n", "2020-01-21 22:59:49,904 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 22:59:49,904 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 22:59:49,904 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ ńlá ni mo ń ṣe .\n", "2020-01-21 22:59:49,904 Example #2\n", "2020-01-21 22:59:49,905 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 22:59:49,905 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 22:59:49,905 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 22:59:49,905 Example #3\n", "2020-01-21 22:59:49,905 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 22:59:49,905 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 22:59:49,905 \tHypothesis: Ó ní ìrírí tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 22:59:49,905 Validation result (greedy) at epoch 20, step 104000: bleu: 27.73, loss: 43794.8516, ppl: 4.3493, duration: 30.9349s\n", "2020-01-21 23:00:01,353 Epoch 20 Step: 104100 Batch Loss: 1.540812 Tokens per Sec: 20257, Lr: 0.000300\n", "2020-01-21 23:00:12,780 Epoch 20 Step: 104200 Batch Loss: 1.494078 Tokens per Sec: 20734, Lr: 0.000300\n", "2020-01-21 23:00:24,140 Epoch 20 Step: 104300 Batch Loss: 1.536463 Tokens per Sec: 19907, Lr: 0.000300\n", "2020-01-21 23:00:35,446 Epoch 20 Step: 104400 Batch Loss: 1.465181 Tokens per Sec: 20455, Lr: 0.000300\n", "2020-01-21 23:00:46,851 Epoch 20 Step: 104500 Batch Loss: 1.661396 Tokens per Sec: 20768, Lr: 0.000300\n", "2020-01-21 23:00:58,278 Epoch 20 Step: 104600 Batch Loss: 1.672824 Tokens per Sec: 20692, Lr: 0.000300\n", "2020-01-21 23:01:09,703 Epoch 20 Step: 104700 Batch Loss: 1.593964 Tokens per Sec: 20890, Lr: 0.000300\n", "2020-01-21 23:01:21,016 Epoch 20 Step: 104800 Batch Loss: 1.672006 Tokens per Sec: 20172, Lr: 0.000300\n", "2020-01-21 23:01:32,386 Epoch 20 Step: 104900 Batch Loss: 1.451198 Tokens per Sec: 20581, Lr: 0.000300\n", "2020-01-21 23:01:43,554 Epoch 20 Step: 105000 Batch Loss: 1.546514 Tokens per Sec: 19695, Lr: 0.000300\n", "2020-01-21 23:02:14,168 Example #0\n", "2020-01-21 23:02:14,168 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:02:14,168 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:02:14,168 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:02:14,168 Example #1\n", "2020-01-21 23:02:14,168 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:02:14,168 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:02:14,168 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 23:02:14,168 Example #2\n", "2020-01-21 23:02:14,169 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:02:14,169 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:02:14,169 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:02:14,169 Example #3\n", "2020-01-21 23:02:14,169 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:02:14,169 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:02:14,169 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ kó túbọ̀ nírìírí ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:02:14,169 Validation result (greedy) at epoch 20, step 105000: bleu: 27.81, loss: 43942.8086, ppl: 4.3710, duration: 30.6144s\n", "2020-01-21 23:02:16,281 Epoch 20: total training loss 8453.03\n", "2020-01-21 23:02:16,282 EPOCH 21\n", "2020-01-21 23:02:26,066 Epoch 21 Step: 105100 Batch Loss: 1.630706 Tokens per Sec: 19197, Lr: 0.000300\n", "2020-01-21 23:02:37,493 Epoch 21 Step: 105200 Batch Loss: 1.454762 Tokens per Sec: 20574, Lr: 0.000300\n", "2020-01-21 23:02:48,965 Epoch 21 Step: 105300 Batch Loss: 1.692194 Tokens per Sec: 20504, Lr: 0.000300\n", "2020-01-21 23:03:00,289 Epoch 21 Step: 105400 Batch Loss: 1.649301 Tokens per Sec: 19836, Lr: 0.000300\n", "2020-01-21 23:03:11,676 Epoch 21 Step: 105500 Batch Loss: 1.577168 Tokens per Sec: 20168, Lr: 0.000300\n", "2020-01-21 23:03:23,170 Epoch 21 Step: 105600 Batch Loss: 1.601354 Tokens per Sec: 20589, Lr: 0.000300\n", "2020-01-21 23:03:34,504 Epoch 21 Step: 105700 Batch Loss: 1.746315 Tokens per Sec: 20382, Lr: 0.000300\n", "2020-01-21 23:03:45,774 Epoch 21 Step: 105800 Batch Loss: 1.553963 Tokens per Sec: 20537, Lr: 0.000300\n", "2020-01-21 23:03:57,338 Epoch 21 Step: 105900 Batch Loss: 1.563124 Tokens per Sec: 20699, Lr: 0.000300\n", "2020-01-21 23:04:08,512 Epoch 21 Step: 106000 Batch Loss: 1.413524 Tokens per Sec: 19988, Lr: 0.000300\n", "2020-01-21 23:04:39,163 Example #0\n", "2020-01-21 23:04:39,163 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:04:39,163 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:04:39,163 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:04:39,163 Example #1\n", "2020-01-21 23:04:39,163 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:04:39,163 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:04:39,163 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó dáa ni .\n", "2020-01-21 23:04:39,163 Example #2\n", "2020-01-21 23:04:39,163 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:04:39,164 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:04:39,164 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:04:39,164 Example #3\n", "2020-01-21 23:04:39,164 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:04:39,164 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:04:39,164 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní àmúlùmálà ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 23:04:39,164 Validation result (greedy) at epoch 21, step 106000: bleu: 27.93, loss: 43859.3008, ppl: 4.3587, duration: 30.6518s\n", "2020-01-21 23:04:50,576 Epoch 21 Step: 106100 Batch Loss: 1.622924 Tokens per Sec: 20599, Lr: 0.000300\n", "2020-01-21 23:05:01,893 Epoch 21 Step: 106200 Batch Loss: 1.587960 Tokens per Sec: 20190, Lr: 0.000300\n", "2020-01-21 23:05:13,252 Epoch 21 Step: 106300 Batch Loss: 1.618187 Tokens per Sec: 20395, Lr: 0.000300\n", "2020-01-21 23:05:24,651 Epoch 21 Step: 106400 Batch Loss: 1.579180 Tokens per Sec: 20424, Lr: 0.000300\n", "2020-01-21 23:05:35,952 Epoch 21 Step: 106500 Batch Loss: 1.569646 Tokens per Sec: 20382, Lr: 0.000300\n", "2020-01-21 23:05:47,227 Epoch 21 Step: 106600 Batch Loss: 1.555428 Tokens per Sec: 20137, Lr: 0.000300\n", "2020-01-21 23:05:58,660 Epoch 21 Step: 106700 Batch Loss: 1.689374 Tokens per Sec: 20545, Lr: 0.000300\n", "2020-01-21 23:06:09,944 Epoch 21 Step: 106800 Batch Loss: 1.505359 Tokens per Sec: 20184, Lr: 0.000300\n", "2020-01-21 23:06:21,222 Epoch 21 Step: 106900 Batch Loss: 1.589511 Tokens per Sec: 20146, Lr: 0.000300\n", "2020-01-21 23:06:32,608 Epoch 21 Step: 107000 Batch Loss: 1.704749 Tokens per Sec: 20080, Lr: 0.000300\n", "2020-01-21 23:07:03,248 Example #0\n", "2020-01-21 23:07:03,248 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:07:03,248 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:07:03,248 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:07:03,248 Example #1\n", "2020-01-21 23:07:03,248 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:07:03,248 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:07:03,248 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ tó yẹ kí n máa ṣe .\n", "2020-01-21 23:07:03,248 Example #2\n", "2020-01-21 23:07:03,248 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:07:03,249 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:07:03,249 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:07:03,249 Example #3\n", "2020-01-21 23:07:03,249 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:07:03,249 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:07:03,249 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:07:03,249 Validation result (greedy) at epoch 21, step 107000: bleu: 27.73, loss: 43992.9531, ppl: 4.3783, duration: 30.6403s\n", "2020-01-21 23:07:14,586 Epoch 21 Step: 107100 Batch Loss: 1.693442 Tokens per Sec: 20458, Lr: 0.000300\n", "2020-01-21 23:07:25,905 Epoch 21 Step: 107200 Batch Loss: 1.684431 Tokens per Sec: 20256, Lr: 0.000300\n", "2020-01-21 23:07:37,070 Epoch 21 Step: 107300 Batch Loss: 1.661153 Tokens per Sec: 20262, Lr: 0.000300\n", "2020-01-21 23:07:48,404 Epoch 21 Step: 107400 Batch Loss: 1.581286 Tokens per Sec: 20360, Lr: 0.000300\n", "2020-01-21 23:07:59,652 Epoch 21 Step: 107500 Batch Loss: 1.597414 Tokens per Sec: 19642, Lr: 0.000300\n", "2020-01-21 23:08:11,026 Epoch 21 Step: 107600 Batch Loss: 1.654187 Tokens per Sec: 20161, Lr: 0.000300\n", "2020-01-21 23:08:22,316 Epoch 21 Step: 107700 Batch Loss: 1.447600 Tokens per Sec: 20232, Lr: 0.000300\n", "2020-01-21 23:08:33,743 Epoch 21 Step: 107800 Batch Loss: 1.611076 Tokens per Sec: 19970, Lr: 0.000300\n", "2020-01-21 23:08:45,173 Epoch 21 Step: 107900 Batch Loss: 1.543890 Tokens per Sec: 20189, Lr: 0.000300\n", "2020-01-21 23:08:56,499 Epoch 21 Step: 108000 Batch Loss: 1.442837 Tokens per Sec: 20401, Lr: 0.000300\n", "2020-01-21 23:09:27,088 Example #0\n", "2020-01-21 23:09:27,088 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:09:27,088 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:09:27,088 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:09:27,088 Example #1\n", "2020-01-21 23:09:27,088 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:09:27,088 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:09:27,088 \tHypothesis: Ní báyìí , mo ní láti rí ibi tí wọ́n ti ń ṣe iṣẹ́ .\n", "2020-01-21 23:09:27,088 Example #2\n", "2020-01-21 23:09:27,088 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:09:27,088 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:09:27,088 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:09:27,088 Example #3\n", "2020-01-21 23:09:27,088 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:09:27,088 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:09:27,089 \tHypothesis: Ó ní ìrírí tó pọ̀ gan - an , ó sì ní ìrírí tó ju ìwọ lọ , àmọ́ ó ní sùúrù láti rìn nítòsí rẹ .\n", "2020-01-21 23:09:27,089 Validation result (greedy) at epoch 21, step 108000: bleu: 27.85, loss: 43861.2266, ppl: 4.3590, duration: 30.5890s\n", "2020-01-21 23:09:38,403 Epoch 21 Step: 108100 Batch Loss: 1.707636 Tokens per Sec: 19949, Lr: 0.000300\n", "2020-01-21 23:09:49,935 Epoch 21 Step: 108200 Batch Loss: 1.594248 Tokens per Sec: 20625, Lr: 0.000300\n", "2020-01-21 23:10:01,341 Epoch 21 Step: 108300 Batch Loss: 1.707482 Tokens per Sec: 20475, Lr: 0.000300\n", "2020-01-21 23:10:12,798 Epoch 21 Step: 108400 Batch Loss: 1.664228 Tokens per Sec: 20847, Lr: 0.000300\n", "2020-01-21 23:10:24,082 Epoch 21 Step: 108500 Batch Loss: 1.724311 Tokens per Sec: 20303, Lr: 0.000300\n", "2020-01-21 23:10:35,373 Epoch 21 Step: 108600 Batch Loss: 1.606036 Tokens per Sec: 20202, Lr: 0.000300\n", "2020-01-21 23:10:46,561 Epoch 21 Step: 108700 Batch Loss: 1.597408 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-21 23:10:58,007 Epoch 21 Step: 108800 Batch Loss: 1.689252 Tokens per Sec: 20927, Lr: 0.000300\n", "2020-01-21 23:11:09,254 Epoch 21 Step: 108900 Batch Loss: 1.566193 Tokens per Sec: 20033, Lr: 0.000300\n", "2020-01-21 23:11:20,698 Epoch 21 Step: 109000 Batch Loss: 1.713798 Tokens per Sec: 20564, Lr: 0.000300\n", "2020-01-21 23:11:51,274 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:11:51,274 Saving new checkpoint.\n", "2020-01-21 23:11:51,554 Example #0\n", "2020-01-21 23:11:51,554 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:11:51,554 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:11:51,554 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:11:51,554 Example #1\n", "2020-01-21 23:11:51,555 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:11:51,555 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:11:51,555 \tHypothesis: Ní báyìí , mo ti wá rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:11:51,555 Example #2\n", "2020-01-21 23:11:51,555 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:11:51,555 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:11:51,555 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:11:51,555 Example #3\n", "2020-01-21 23:11:51,555 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:11:51,555 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:11:51,555 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju ìwọ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:11:51,555 Validation result (greedy) at epoch 21, step 109000: bleu: 27.59, loss: 43728.4688, ppl: 4.3396, duration: 30.8566s\n", "2020-01-21 23:12:02,928 Epoch 21 Step: 109100 Batch Loss: 1.567751 Tokens per Sec: 20594, Lr: 0.000300\n", "2020-01-21 23:12:14,246 Epoch 21 Step: 109200 Batch Loss: 1.633537 Tokens per Sec: 20341, Lr: 0.000300\n", "2020-01-21 23:12:25,600 Epoch 21 Step: 109300 Batch Loss: 1.582413 Tokens per Sec: 20446, Lr: 0.000300\n", "2020-01-21 23:12:36,976 Epoch 21 Step: 109400 Batch Loss: 1.586282 Tokens per Sec: 20284, Lr: 0.000300\n", "2020-01-21 23:12:48,332 Epoch 21 Step: 109500 Batch Loss: 1.527868 Tokens per Sec: 20201, Lr: 0.000300\n", "2020-01-21 23:12:59,581 Epoch 21 Step: 109600 Batch Loss: 1.569519 Tokens per Sec: 20033, Lr: 0.000300\n", "2020-01-21 23:13:10,985 Epoch 21 Step: 109700 Batch Loss: 1.613153 Tokens per Sec: 20302, Lr: 0.000300\n", "2020-01-21 23:13:22,369 Epoch 21 Step: 109800 Batch Loss: 1.593599 Tokens per Sec: 20332, Lr: 0.000300\n", "2020-01-21 23:13:33,708 Epoch 21 Step: 109900 Batch Loss: 1.678029 Tokens per Sec: 20377, Lr: 0.000300\n", "2020-01-21 23:13:45,109 Epoch 21 Step: 110000 Batch Loss: 1.630754 Tokens per Sec: 20624, Lr: 0.000300\n", "2020-01-21 23:14:15,739 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:14:15,739 Saving new checkpoint.\n", "2020-01-21 23:14:16,059 Example #0\n", "2020-01-21 23:14:16,059 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:14:16,059 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:14:16,059 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:14:16,059 Example #1\n", "2020-01-21 23:14:16,059 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:14:16,059 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:14:16,059 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:14:16,059 Example #2\n", "2020-01-21 23:14:16,060 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:14:16,060 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:14:16,060 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:14:16,060 Example #3\n", "2020-01-21 23:14:16,060 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:14:16,060 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:14:16,060 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì tún ní ohun tó o ṣe , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:14:16,060 Validation result (greedy) at epoch 21, step 110000: bleu: 27.73, loss: 43717.2383, ppl: 4.3380, duration: 30.9510s\n", "2020-01-21 23:14:27,435 Epoch 21 Step: 110100 Batch Loss: 1.659730 Tokens per Sec: 20390, Lr: 0.000300\n", "2020-01-21 23:14:38,644 Epoch 21 Step: 110200 Batch Loss: 1.617501 Tokens per Sec: 20095, Lr: 0.000300\n", "2020-01-21 23:14:47,843 Epoch 21: total training loss 8419.15\n", "2020-01-21 23:14:47,843 EPOCH 22\n", "2020-01-21 23:14:50,560 Epoch 22 Step: 110300 Batch Loss: 1.290286 Tokens per Sec: 16095, Lr: 0.000300\n", "2020-01-21 23:15:01,960 Epoch 22 Step: 110400 Batch Loss: 1.621343 Tokens per Sec: 20266, Lr: 0.000300\n", "2020-01-21 23:15:13,350 Epoch 22 Step: 110500 Batch Loss: 1.605311 Tokens per Sec: 20746, Lr: 0.000300\n", "2020-01-21 23:15:24,838 Epoch 22 Step: 110600 Batch Loss: 1.580765 Tokens per Sec: 20411, Lr: 0.000300\n", "2020-01-21 23:15:36,245 Epoch 22 Step: 110700 Batch Loss: 1.616497 Tokens per Sec: 20540, Lr: 0.000300\n", "2020-01-21 23:15:47,604 Epoch 22 Step: 110800 Batch Loss: 1.596676 Tokens per Sec: 20294, Lr: 0.000300\n", "2020-01-21 23:15:58,904 Epoch 22 Step: 110900 Batch Loss: 1.727754 Tokens per Sec: 19810, Lr: 0.000300\n", "2020-01-21 23:16:10,231 Epoch 22 Step: 111000 Batch Loss: 1.631200 Tokens per Sec: 20469, Lr: 0.000300\n", "2020-01-21 23:16:40,880 Example #0\n", "2020-01-21 23:16:40,880 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:16:40,880 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:16:40,880 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:16:40,880 Example #1\n", "2020-01-21 23:16:40,880 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:16:40,880 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:16:40,880 \tHypothesis: Ní báyìí , mo ti ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:16:40,880 Example #2\n", "2020-01-21 23:16:40,881 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:16:40,881 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:16:40,881 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:16:40,881 Example #3\n", "2020-01-21 23:16:40,881 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:16:40,881 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:16:40,881 \tHypothesis: Ó ní ìrírí tó pọ̀ gan - an , ó sì ní ohun tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:16:40,881 Validation result (greedy) at epoch 22, step 111000: bleu: 27.53, loss: 43770.7969, ppl: 4.3458, duration: 30.6498s\n", "2020-01-21 23:16:52,214 Epoch 22 Step: 111100 Batch Loss: 1.449078 Tokens per Sec: 20326, Lr: 0.000300\n", "2020-01-21 23:17:03,607 Epoch 22 Step: 111200 Batch Loss: 1.512482 Tokens per Sec: 20503, Lr: 0.000300\n", "2020-01-21 23:17:14,890 Epoch 22 Step: 111300 Batch Loss: 1.595334 Tokens per Sec: 20220, Lr: 0.000300\n", "2020-01-21 23:17:26,294 Epoch 22 Step: 111400 Batch Loss: 1.597044 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-21 23:17:37,667 Epoch 22 Step: 111500 Batch Loss: 1.418181 Tokens per Sec: 20486, Lr: 0.000300\n", "2020-01-21 23:17:49,058 Epoch 22 Step: 111600 Batch Loss: 1.555897 Tokens per Sec: 20486, Lr: 0.000300\n", "2020-01-21 23:18:00,405 Epoch 22 Step: 111700 Batch Loss: 1.699978 Tokens per Sec: 20167, Lr: 0.000300\n", "2020-01-21 23:18:11,808 Epoch 22 Step: 111800 Batch Loss: 1.545590 Tokens per Sec: 20411, Lr: 0.000300\n", "2020-01-21 23:18:23,252 Epoch 22 Step: 111900 Batch Loss: 1.633234 Tokens per Sec: 20692, Lr: 0.000300\n", "2020-01-21 23:18:34,535 Epoch 22 Step: 112000 Batch Loss: 1.404800 Tokens per Sec: 20477, Lr: 0.000300\n", "2020-01-21 23:19:05,121 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:19:05,121 Saving new checkpoint.\n", "2020-01-21 23:19:05,381 Example #0\n", "2020-01-21 23:19:05,381 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:19:05,381 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:19:05,381 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:19:05,381 Example #1\n", "2020-01-21 23:19:05,381 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:19:05,382 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:19:05,382 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè rí i pé iṣẹ́ náà kò tó nǹkan .\n", "2020-01-21 23:19:05,382 Example #2\n", "2020-01-21 23:19:05,382 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:19:05,382 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:19:05,382 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:19:05,382 Example #3\n", "2020-01-21 23:19:05,382 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:19:05,382 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:19:05,382 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:19:05,382 Validation result (greedy) at epoch 22, step 112000: bleu: 27.82, loss: 43562.8828, ppl: 4.3156, duration: 30.8472s\n", "2020-01-21 23:19:16,749 Epoch 22 Step: 112100 Batch Loss: 1.538205 Tokens per Sec: 20380, Lr: 0.000300\n", "2020-01-21 23:19:28,162 Epoch 22 Step: 112200 Batch Loss: 1.583982 Tokens per Sec: 20556, Lr: 0.000300\n", "2020-01-21 23:19:39,494 Epoch 22 Step: 112300 Batch Loss: 1.705614 Tokens per Sec: 20148, Lr: 0.000300\n", "2020-01-21 23:19:50,765 Epoch 22 Step: 112400 Batch Loss: 1.504998 Tokens per Sec: 20182, Lr: 0.000300\n", "2020-01-21 23:20:02,145 Epoch 22 Step: 112500 Batch Loss: 1.518515 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-21 23:20:13,518 Epoch 22 Step: 112600 Batch Loss: 1.551820 Tokens per Sec: 20192, Lr: 0.000300\n", "2020-01-21 23:20:24,887 Epoch 22 Step: 112700 Batch Loss: 1.674649 Tokens per Sec: 20292, Lr: 0.000300\n", "2020-01-21 23:20:36,287 Epoch 22 Step: 112800 Batch Loss: 1.610311 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-21 23:20:47,637 Epoch 22 Step: 112900 Batch Loss: 1.482689 Tokens per Sec: 20671, Lr: 0.000300\n", "2020-01-21 23:20:58,989 Epoch 22 Step: 113000 Batch Loss: 1.496845 Tokens per Sec: 20445, Lr: 0.000300\n", "2020-01-21 23:21:29,544 Example #0\n", "2020-01-21 23:21:29,544 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:21:29,544 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:21:29,544 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:21:29,544 Example #1\n", "2020-01-21 23:21:29,544 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:21:29,544 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:21:29,544 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 23:21:29,544 Example #2\n", "2020-01-21 23:21:29,545 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:21:29,545 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:21:29,545 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:21:29,545 Example #3\n", "2020-01-21 23:21:29,545 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:21:29,545 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:21:29,545 \tHypothesis: Ó ní ìrírí tó ju bó o ṣe ń ṣe lọ , àmọ́ ó ní sùúrù láti rìn nítòsí rẹ .\n", "2020-01-21 23:21:29,545 Validation result (greedy) at epoch 22, step 113000: bleu: 27.95, loss: 43577.3789, ppl: 4.3177, duration: 30.5553s\n", "2020-01-21 23:21:40,800 Epoch 22 Step: 113100 Batch Loss: 1.760115 Tokens per Sec: 19904, Lr: 0.000300\n", "2020-01-21 23:21:52,138 Epoch 22 Step: 113200 Batch Loss: 1.279229 Tokens per Sec: 20255, Lr: 0.000300\n", "2020-01-21 23:22:03,574 Epoch 22 Step: 113300 Batch Loss: 1.641065 Tokens per Sec: 20994, Lr: 0.000300\n", "2020-01-21 23:22:14,938 Epoch 22 Step: 113400 Batch Loss: 1.503071 Tokens per Sec: 20343, Lr: 0.000300\n", "2020-01-21 23:22:26,205 Epoch 22 Step: 113500 Batch Loss: 1.572937 Tokens per Sec: 20401, Lr: 0.000300\n", "2020-01-21 23:22:37,568 Epoch 22 Step: 113600 Batch Loss: 1.607447 Tokens per Sec: 20580, Lr: 0.000300\n", "2020-01-21 23:22:48,976 Epoch 22 Step: 113700 Batch Loss: 1.583416 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-21 23:23:00,324 Epoch 22 Step: 113800 Batch Loss: 1.604763 Tokens per Sec: 20421, Lr: 0.000300\n", "2020-01-21 23:23:11,674 Epoch 22 Step: 113900 Batch Loss: 1.697308 Tokens per Sec: 20163, Lr: 0.000300\n", "2020-01-21 23:23:23,137 Epoch 22 Step: 114000 Batch Loss: 1.632750 Tokens per Sec: 20641, Lr: 0.000300\n", "2020-01-21 23:23:53,736 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:23:53,736 Saving new checkpoint.\n", "2020-01-21 23:23:54,008 Example #0\n", "2020-01-21 23:23:54,008 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:23:54,008 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:23:54,009 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:23:54,009 Example #1\n", "2020-01-21 23:23:54,009 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:23:54,009 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:23:54,009 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó dára gan - an .\n", "2020-01-21 23:23:54,009 Example #2\n", "2020-01-21 23:23:54,009 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:23:54,009 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:23:54,009 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:23:54,009 Example #3\n", "2020-01-21 23:23:54,009 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:23:54,009 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:23:54,009 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ amáyédẹrùn , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:23:54,010 Validation result (greedy) at epoch 22, step 114000: bleu: 27.62, loss: 43521.9375, ppl: 4.3097, duration: 30.8720s\n", "2020-01-21 23:24:05,340 Epoch 22 Step: 114100 Batch Loss: 1.628634 Tokens per Sec: 19965, Lr: 0.000300\n", "2020-01-21 23:24:16,694 Epoch 22 Step: 114200 Batch Loss: 1.615312 Tokens per Sec: 20346, Lr: 0.000300\n", "2020-01-21 23:24:28,041 Epoch 22 Step: 114300 Batch Loss: 1.543409 Tokens per Sec: 19856, Lr: 0.000300\n", "2020-01-21 23:24:39,394 Epoch 22 Step: 114400 Batch Loss: 1.754675 Tokens per Sec: 19980, Lr: 0.000300\n", "2020-01-21 23:24:50,815 Epoch 22 Step: 114500 Batch Loss: 1.604228 Tokens per Sec: 20551, Lr: 0.000300\n", "2020-01-21 23:25:02,171 Epoch 22 Step: 114600 Batch Loss: 1.637954 Tokens per Sec: 20560, Lr: 0.000300\n", "2020-01-21 23:25:13,623 Epoch 22 Step: 114700 Batch Loss: 1.560050 Tokens per Sec: 20350, Lr: 0.000300\n", "2020-01-21 23:25:24,991 Epoch 22 Step: 114800 Batch Loss: 1.688520 Tokens per Sec: 20307, Lr: 0.000300\n", "2020-01-21 23:25:36,332 Epoch 22 Step: 114900 Batch Loss: 1.463482 Tokens per Sec: 20561, Lr: 0.000300\n", "2020-01-21 23:25:47,674 Epoch 22 Step: 115000 Batch Loss: 1.575919 Tokens per Sec: 20344, Lr: 0.000300\n", "2020-01-21 23:26:18,310 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:26:18,310 Saving new checkpoint.\n", "2020-01-21 23:26:18,546 Example #0\n", "2020-01-21 23:26:18,547 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:26:18,547 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:26:18,547 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:26:18,547 Example #1\n", "2020-01-21 23:26:18,547 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:26:18,547 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:26:18,547 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-21 23:26:18,547 Example #2\n", "2020-01-21 23:26:18,548 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:26:18,548 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:26:18,548 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan ìní tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 23:26:18,548 Example #3\n", "2020-01-21 23:26:18,548 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:26:18,548 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:26:18,548 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:26:18,548 Validation result (greedy) at epoch 22, step 115000: bleu: 28.03, loss: 43390.3594, ppl: 4.2907, duration: 30.8743s\n", "2020-01-21 23:26:29,966 Epoch 22 Step: 115100 Batch Loss: 1.503001 Tokens per Sec: 20263, Lr: 0.000300\n", "2020-01-21 23:26:41,352 Epoch 22 Step: 115200 Batch Loss: 1.601113 Tokens per Sec: 20708, Lr: 0.000300\n", "2020-01-21 23:26:52,678 Epoch 22 Step: 115300 Batch Loss: 1.761133 Tokens per Sec: 20391, Lr: 0.000300\n", "2020-01-21 23:27:04,022 Epoch 22 Step: 115400 Batch Loss: 1.533694 Tokens per Sec: 20666, Lr: 0.000300\n", "2020-01-21 23:27:15,404 Epoch 22 Step: 115500 Batch Loss: 1.764624 Tokens per Sec: 20343, Lr: 0.000300\n", "2020-01-21 23:27:18,642 Epoch 22: total training loss 8345.62\n", "2020-01-21 23:27:18,642 EPOCH 23\n", "2020-01-21 23:27:27,207 Epoch 23 Step: 115600 Batch Loss: 1.428904 Tokens per Sec: 19309, Lr: 0.000300\n", "2020-01-21 23:27:38,548 Epoch 23 Step: 115700 Batch Loss: 1.517661 Tokens per Sec: 20488, Lr: 0.000300\n", "2020-01-21 23:27:49,821 Epoch 23 Step: 115800 Batch Loss: 1.525382 Tokens per Sec: 20253, Lr: 0.000300\n", "2020-01-21 23:28:01,129 Epoch 23 Step: 115900 Batch Loss: 1.687685 Tokens per Sec: 19925, Lr: 0.000300\n", "2020-01-21 23:28:12,534 Epoch 23 Step: 116000 Batch Loss: 1.669300 Tokens per Sec: 20627, Lr: 0.000300\n", "2020-01-21 23:28:43,206 Example #0\n", "2020-01-21 23:28:43,206 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:28:43,206 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:28:43,206 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:28:43,206 Example #1\n", "2020-01-21 23:28:43,207 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:28:43,207 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:28:43,207 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 23:28:43,207 Example #2\n", "2020-01-21 23:28:43,207 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:28:43,207 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:28:43,207 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:28:43,207 Example #3\n", "2020-01-21 23:28:43,207 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:28:43,207 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:28:43,207 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ẹ .\n", "2020-01-21 23:28:43,207 Validation result (greedy) at epoch 23, step 116000: bleu: 27.98, loss: 43429.7539, ppl: 4.2963, duration: 30.6731s\n", "2020-01-21 23:28:54,524 Epoch 23 Step: 116100 Batch Loss: 1.755537 Tokens per Sec: 19847, Lr: 0.000300\n", "2020-01-21 23:29:05,799 Epoch 23 Step: 116200 Batch Loss: 1.767526 Tokens per Sec: 20311, Lr: 0.000300\n", "2020-01-21 23:29:17,168 Epoch 23 Step: 116300 Batch Loss: 1.753285 Tokens per Sec: 20766, Lr: 0.000300\n", "2020-01-21 23:29:28,483 Epoch 23 Step: 116400 Batch Loss: 1.774580 Tokens per Sec: 20219, Lr: 0.000300\n", "2020-01-21 23:29:39,817 Epoch 23 Step: 116500 Batch Loss: 1.732253 Tokens per Sec: 20205, Lr: 0.000300\n", "2020-01-21 23:29:51,043 Epoch 23 Step: 116600 Batch Loss: 1.581984 Tokens per Sec: 20363, Lr: 0.000300\n", "2020-01-21 23:30:02,361 Epoch 23 Step: 116700 Batch Loss: 1.513312 Tokens per Sec: 20195, Lr: 0.000300\n", "2020-01-21 23:30:13,675 Epoch 23 Step: 116800 Batch Loss: 1.651425 Tokens per Sec: 20437, Lr: 0.000300\n", "2020-01-21 23:30:25,141 Epoch 23 Step: 116900 Batch Loss: 1.665813 Tokens per Sec: 20305, Lr: 0.000300\n", "2020-01-21 23:30:36,396 Epoch 23 Step: 117000 Batch Loss: 1.629099 Tokens per Sec: 19969, Lr: 0.000300\n", "2020-01-21 23:31:06,999 Example #0\n", "2020-01-21 23:31:07,000 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:31:07,000 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:31:07,000 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:31:07,000 Example #1\n", "2020-01-21 23:31:07,000 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:31:07,000 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:31:07,000 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó máa ṣe mí láǹfààní .\n", "2020-01-21 23:31:07,000 Example #2\n", "2020-01-21 23:31:07,000 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:31:07,000 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:31:07,000 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:31:07,000 Example #3\n", "2020-01-21 23:31:07,000 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:31:07,000 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:31:07,000 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:31:07,000 Validation result (greedy) at epoch 23, step 117000: bleu: 27.65, loss: 43539.7852, ppl: 4.3122, duration: 30.6042s\n", "2020-01-21 23:31:18,379 Epoch 23 Step: 117100 Batch Loss: 1.606747 Tokens per Sec: 20269, Lr: 0.000300\n", "2020-01-21 23:31:29,730 Epoch 23 Step: 117200 Batch Loss: 1.753233 Tokens per Sec: 20555, Lr: 0.000300\n", "2020-01-21 23:31:41,097 Epoch 23 Step: 117300 Batch Loss: 1.727680 Tokens per Sec: 20293, Lr: 0.000300\n", "2020-01-21 23:31:52,450 Epoch 23 Step: 117400 Batch Loss: 1.627326 Tokens per Sec: 20258, Lr: 0.000300\n", "2020-01-21 23:32:03,851 Epoch 23 Step: 117500 Batch Loss: 1.522339 Tokens per Sec: 19924, Lr: 0.000300\n", "2020-01-21 23:32:15,154 Epoch 23 Step: 117600 Batch Loss: 1.677043 Tokens per Sec: 20396, Lr: 0.000300\n", "2020-01-21 23:32:26,493 Epoch 23 Step: 117700 Batch Loss: 1.695175 Tokens per Sec: 20550, Lr: 0.000300\n", "2020-01-21 23:32:37,838 Epoch 23 Step: 117800 Batch Loss: 1.812151 Tokens per Sec: 20387, Lr: 0.000300\n", "2020-01-21 23:32:49,182 Epoch 23 Step: 117900 Batch Loss: 1.907288 Tokens per Sec: 20398, Lr: 0.000300\n", "2020-01-21 23:33:00,420 Epoch 23 Step: 118000 Batch Loss: 1.649064 Tokens per Sec: 19976, Lr: 0.000300\n", "2020-01-21 23:33:30,994 Example #0\n", "2020-01-21 23:33:30,995 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:33:30,995 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:33:30,995 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:33:30,995 Example #1\n", "2020-01-21 23:33:30,995 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:33:30,995 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:33:30,995 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa ṣe mí láǹfààní .\n", "2020-01-21 23:33:30,995 Example #2\n", "2020-01-21 23:33:30,995 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:33:30,995 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:33:30,995 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:33:30,995 Example #3\n", "2020-01-21 23:33:30,995 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:33:30,995 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:33:30,995 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní èròjà fítámì ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:33:30,995 Validation result (greedy) at epoch 23, step 118000: bleu: 27.97, loss: 43510.5977, ppl: 4.3080, duration: 30.5753s\n", "2020-01-21 23:33:42,259 Epoch 23 Step: 118100 Batch Loss: 1.662331 Tokens per Sec: 20242, Lr: 0.000300\n", "2020-01-21 23:33:53,624 Epoch 23 Step: 118200 Batch Loss: 1.383170 Tokens per Sec: 20419, Lr: 0.000300\n", "2020-01-21 23:34:04,976 Epoch 23 Step: 118300 Batch Loss: 1.813679 Tokens per Sec: 20306, Lr: 0.000300\n", "2020-01-21 23:34:16,386 Epoch 23 Step: 118400 Batch Loss: 1.618265 Tokens per Sec: 20718, Lr: 0.000300\n", "2020-01-21 23:34:27,660 Epoch 23 Step: 118500 Batch Loss: 1.658625 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-21 23:34:38,981 Epoch 23 Step: 118600 Batch Loss: 1.450910 Tokens per Sec: 20379, Lr: 0.000300\n", "2020-01-21 23:34:50,279 Epoch 23 Step: 118700 Batch Loss: 1.495389 Tokens per Sec: 20437, Lr: 0.000300\n", "2020-01-21 23:35:01,727 Epoch 23 Step: 118800 Batch Loss: 1.533746 Tokens per Sec: 20761, Lr: 0.000300\n", "2020-01-21 23:35:13,065 Epoch 23 Step: 118900 Batch Loss: 1.750398 Tokens per Sec: 20361, Lr: 0.000300\n", "2020-01-21 23:35:24,420 Epoch 23 Step: 119000 Batch Loss: 1.475403 Tokens per Sec: 20087, Lr: 0.000300\n", "2020-01-21 23:35:55,046 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:35:55,046 Saving new checkpoint.\n", "2020-01-21 23:35:55,320 Example #0\n", "2020-01-21 23:35:55,321 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:35:55,321 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:35:55,321 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:35:55,321 Example #1\n", "2020-01-21 23:35:55,321 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:35:55,321 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:35:55,321 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:35:55,321 Example #2\n", "2020-01-21 23:35:55,321 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:35:55,321 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:35:55,321 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 23:35:55,321 Example #3\n", "2020-01-21 23:35:55,321 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:35:55,321 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:35:55,321 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:35:55,321 Validation result (greedy) at epoch 23, step 119000: bleu: 28.22, loss: 43333.4453, ppl: 4.2825, duration: 30.9016s\n", "2020-01-21 23:36:06,670 Epoch 23 Step: 119100 Batch Loss: 1.455110 Tokens per Sec: 20448, Lr: 0.000300\n", "2020-01-21 23:36:18,072 Epoch 23 Step: 119200 Batch Loss: 1.516030 Tokens per Sec: 20584, Lr: 0.000300\n", "2020-01-21 23:36:29,401 Epoch 23 Step: 119300 Batch Loss: 1.542281 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-21 23:36:40,843 Epoch 23 Step: 119400 Batch Loss: 1.691436 Tokens per Sec: 20772, Lr: 0.000300\n", "2020-01-21 23:36:52,255 Epoch 23 Step: 119500 Batch Loss: 1.656852 Tokens per Sec: 20742, Lr: 0.000300\n", "2020-01-21 23:37:03,664 Epoch 23 Step: 119600 Batch Loss: 1.684605 Tokens per Sec: 20854, Lr: 0.000300\n", "2020-01-21 23:37:15,037 Epoch 23 Step: 119700 Batch Loss: 1.599382 Tokens per Sec: 20382, Lr: 0.000300\n", "2020-01-21 23:37:26,450 Epoch 23 Step: 119800 Batch Loss: 1.629053 Tokens per Sec: 20674, Lr: 0.000300\n", "2020-01-21 23:37:37,758 Epoch 23 Step: 119900 Batch Loss: 1.595021 Tokens per Sec: 20544, Lr: 0.000300\n", "2020-01-21 23:37:49,116 Epoch 23 Step: 120000 Batch Loss: 1.618133 Tokens per Sec: 20335, Lr: 0.000300\n", "2020-01-21 23:38:19,746 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:38:19,747 Saving new checkpoint.\n", "2020-01-21 23:38:19,984 Example #0\n", "2020-01-21 23:38:19,984 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:38:19,984 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:38:19,984 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:38:19,984 Example #1\n", "2020-01-21 23:38:19,984 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:38:19,984 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:38:19,992 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:38:19,992 Example #2\n", "2020-01-21 23:38:19,992 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:38:19,992 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:38:19,992 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:38:19,992 Example #3\n", "2020-01-21 23:38:19,992 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:38:19,992 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:38:19,992 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:38:19,992 Validation result (greedy) at epoch 23, step 120000: bleu: 27.81, loss: 43124.6445, ppl: 4.2526, duration: 30.8757s\n", "2020-01-21 23:38:31,328 Epoch 23 Step: 120100 Batch Loss: 1.460249 Tokens per Sec: 20024, Lr: 0.000300\n", "2020-01-21 23:38:42,655 Epoch 23 Step: 120200 Batch Loss: 1.514997 Tokens per Sec: 20166, Lr: 0.000300\n", "2020-01-21 23:38:53,909 Epoch 23 Step: 120300 Batch Loss: 1.498591 Tokens per Sec: 20270, Lr: 0.000300\n", "2020-01-21 23:39:05,309 Epoch 23 Step: 120400 Batch Loss: 1.243115 Tokens per Sec: 20712, Lr: 0.000300\n", "2020-01-21 23:39:16,729 Epoch 23 Step: 120500 Batch Loss: 1.484248 Tokens per Sec: 20563, Lr: 0.000300\n", "2020-01-21 23:39:28,069 Epoch 23 Step: 120600 Batch Loss: 1.315913 Tokens per Sec: 20466, Lr: 0.000300\n", "2020-01-21 23:39:39,437 Epoch 23 Step: 120700 Batch Loss: 1.684736 Tokens per Sec: 20025, Lr: 0.000300\n", "2020-01-21 23:39:48,747 Epoch 23: total training loss 8304.04\n", "2020-01-21 23:39:48,747 EPOCH 24\n", "2020-01-21 23:39:51,264 Epoch 24 Step: 120800 Batch Loss: 1.494150 Tokens per Sec: 16155, Lr: 0.000300\n", "2020-01-21 23:40:02,611 Epoch 24 Step: 120900 Batch Loss: 1.610623 Tokens per Sec: 20287, Lr: 0.000300\n", "2020-01-21 23:40:13,984 Epoch 24 Step: 121000 Batch Loss: 1.583363 Tokens per Sec: 20663, Lr: 0.000300\n", "2020-01-21 23:40:44,654 Example #0\n", "2020-01-21 23:40:44,655 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:40:44,655 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:40:44,655 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:40:44,655 Example #1\n", "2020-01-21 23:40:44,655 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:40:44,655 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:40:44,655 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí wọ́n ti ń ṣe iṣẹ́ .\n", "2020-01-21 23:40:44,655 Example #2\n", "2020-01-21 23:40:44,655 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:40:44,655 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:40:44,655 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:40:44,655 Example #3\n", "2020-01-21 23:40:44,655 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:40:44,655 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:40:44,655 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:40:44,655 Validation result (greedy) at epoch 24, step 121000: bleu: 28.11, loss: 43431.7031, ppl: 4.2966, duration: 30.6710s\n", "2020-01-21 23:40:56,031 Epoch 24 Step: 121100 Batch Loss: 1.536588 Tokens per Sec: 20498, Lr: 0.000300\n", "2020-01-21 23:41:07,290 Epoch 24 Step: 121200 Batch Loss: 1.567967 Tokens per Sec: 20072, Lr: 0.000300\n", "2020-01-21 23:41:18,616 Epoch 24 Step: 121300 Batch Loss: 1.686351 Tokens per Sec: 20019, Lr: 0.000300\n", "2020-01-21 23:41:30,019 Epoch 24 Step: 121400 Batch Loss: 1.728543 Tokens per Sec: 20544, Lr: 0.000300\n", "2020-01-21 23:41:41,310 Epoch 24 Step: 121500 Batch Loss: 1.693203 Tokens per Sec: 20024, Lr: 0.000300\n", "2020-01-21 23:41:52,690 Epoch 24 Step: 121600 Batch Loss: 1.535418 Tokens per Sec: 20672, Lr: 0.000300\n", "2020-01-21 23:42:03,955 Epoch 24 Step: 121700 Batch Loss: 1.726538 Tokens per Sec: 20052, Lr: 0.000300\n", "2020-01-21 23:42:15,315 Epoch 24 Step: 121800 Batch Loss: 1.409264 Tokens per Sec: 20518, Lr: 0.000300\n", "2020-01-21 23:42:26,643 Epoch 24 Step: 121900 Batch Loss: 1.524742 Tokens per Sec: 20320, Lr: 0.000300\n", "2020-01-21 23:42:38,003 Epoch 24 Step: 122000 Batch Loss: 1.497770 Tokens per Sec: 20691, Lr: 0.000300\n", "2020-01-21 23:43:08,532 Example #0\n", "2020-01-21 23:43:08,532 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:43:08,533 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:43:08,533 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:43:08,533 Example #1\n", "2020-01-21 23:43:08,533 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:43:08,533 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:43:08,533 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó dára gan - an .\n", "2020-01-21 23:43:08,533 Example #2\n", "2020-01-21 23:43:08,533 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:43:08,533 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:43:08,533 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-21 23:43:08,533 Example #3\n", "2020-01-21 23:43:08,533 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:43:08,533 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:43:08,533 \tHypothesis: Ó ní ìrírí tó pọ̀ gan - an , ó sì ní àrùn àtọ̀gbẹ ju bó ṣe yẹ lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:43:08,534 Validation result (greedy) at epoch 24, step 122000: bleu: 27.80, loss: 43238.9062, ppl: 4.2689, duration: 30.5305s\n", "2020-01-21 23:43:19,942 Epoch 24 Step: 122100 Batch Loss: 1.710188 Tokens per Sec: 20387, Lr: 0.000300\n", "2020-01-21 23:43:31,291 Epoch 24 Step: 122200 Batch Loss: 1.554068 Tokens per Sec: 20182, Lr: 0.000300\n", "2020-01-21 23:43:42,634 Epoch 24 Step: 122300 Batch Loss: 1.624669 Tokens per Sec: 20022, Lr: 0.000300\n", "2020-01-21 23:43:53,905 Epoch 24 Step: 122400 Batch Loss: 1.643826 Tokens per Sec: 20468, Lr: 0.000300\n", "2020-01-21 23:44:05,243 Epoch 24 Step: 122500 Batch Loss: 1.519198 Tokens per Sec: 20562, Lr: 0.000300\n", "2020-01-21 23:44:16,600 Epoch 24 Step: 122600 Batch Loss: 1.583096 Tokens per Sec: 20473, Lr: 0.000300\n", "2020-01-21 23:44:27,961 Epoch 24 Step: 122700 Batch Loss: 1.607360 Tokens per Sec: 20409, Lr: 0.000300\n", "2020-01-21 23:44:39,339 Epoch 24 Step: 122800 Batch Loss: 1.581606 Tokens per Sec: 20509, Lr: 0.000300\n", "2020-01-21 23:44:50,723 Epoch 24 Step: 122900 Batch Loss: 1.595206 Tokens per Sec: 20568, Lr: 0.000300\n", "2020-01-21 23:45:02,030 Epoch 24 Step: 123000 Batch Loss: 1.711422 Tokens per Sec: 20386, Lr: 0.000300\n", "2020-01-21 23:45:32,598 Example #0\n", "2020-01-21 23:45:32,598 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:45:32,598 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:45:32,598 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fi í fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:45:32,599 Example #1\n", "2020-01-21 23:45:32,599 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:45:32,599 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:45:32,599 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó máa jẹ́ kí n lè rí iṣẹ́ tó dára .\n", "2020-01-21 23:45:32,599 Example #2\n", "2020-01-21 23:45:32,599 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:45:32,599 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:45:32,599 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:45:32,599 Example #3\n", "2020-01-21 23:45:32,599 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:45:32,599 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:45:32,599 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:45:32,599 Validation result (greedy) at epoch 24, step 123000: bleu: 28.15, loss: 43184.7422, ppl: 4.2612, duration: 30.5694s\n", "2020-01-21 23:45:43,956 Epoch 24 Step: 123100 Batch Loss: 1.666949 Tokens per Sec: 20403, Lr: 0.000300\n", "2020-01-21 23:45:55,350 Epoch 24 Step: 123200 Batch Loss: 1.692981 Tokens per Sec: 19933, Lr: 0.000300\n", "2020-01-21 23:46:06,744 Epoch 24 Step: 123300 Batch Loss: 1.541193 Tokens per Sec: 20677, Lr: 0.000300\n", "2020-01-21 23:46:18,066 Epoch 24 Step: 123400 Batch Loss: 1.638480 Tokens per Sec: 20297, Lr: 0.000300\n", "2020-01-21 23:46:29,442 Epoch 24 Step: 123500 Batch Loss: 1.597285 Tokens per Sec: 20646, Lr: 0.000300\n", "2020-01-21 23:46:40,791 Epoch 24 Step: 123600 Batch Loss: 1.574560 Tokens per Sec: 20719, Lr: 0.000300\n", "2020-01-21 23:46:52,022 Epoch 24 Step: 123700 Batch Loss: 1.750601 Tokens per Sec: 19993, Lr: 0.000300\n", "2020-01-21 23:47:03,433 Epoch 24 Step: 123800 Batch Loss: 1.449373 Tokens per Sec: 20144, Lr: 0.000300\n", "2020-01-21 23:47:14,798 Epoch 24 Step: 123900 Batch Loss: 1.560476 Tokens per Sec: 20767, Lr: 0.000300\n", "2020-01-21 23:47:26,179 Epoch 24 Step: 124000 Batch Loss: 1.498422 Tokens per Sec: 19975, Lr: 0.000300\n", "2020-01-21 23:47:56,818 Example #0\n", "2020-01-21 23:47:56,819 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:47:56,819 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:47:56,819 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:47:56,819 Example #1\n", "2020-01-21 23:47:56,819 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:47:56,819 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:47:56,819 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti ń ṣiṣẹ́ .\n", "2020-01-21 23:47:56,819 Example #2\n", "2020-01-21 23:47:56,819 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:47:56,819 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:47:56,819 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:47:56,819 Example #3\n", "2020-01-21 23:47:56,820 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:47:56,820 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:47:56,820 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn ohun tó o ṣe , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:47:56,820 Validation result (greedy) at epoch 24, step 124000: bleu: 28.22, loss: 43177.2812, ppl: 4.2601, duration: 30.6409s\n", "2020-01-21 23:48:08,038 Epoch 24 Step: 124100 Batch Loss: 1.703995 Tokens per Sec: 19979, Lr: 0.000300\n", "2020-01-21 23:48:19,516 Epoch 24 Step: 124200 Batch Loss: 1.400581 Tokens per Sec: 20837, Lr: 0.000300\n", "2020-01-21 23:48:30,737 Epoch 24 Step: 124300 Batch Loss: 1.552096 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-21 23:48:41,942 Epoch 24 Step: 124400 Batch Loss: 1.757873 Tokens per Sec: 19931, Lr: 0.000300\n", "2020-01-21 23:48:53,305 Epoch 24 Step: 124500 Batch Loss: 1.472988 Tokens per Sec: 20375, Lr: 0.000300\n", "2020-01-21 23:49:04,722 Epoch 24 Step: 124600 Batch Loss: 1.687926 Tokens per Sec: 20817, Lr: 0.000300\n", "2020-01-21 23:49:15,876 Epoch 24 Step: 124700 Batch Loss: 1.458370 Tokens per Sec: 19902, Lr: 0.000300\n", "2020-01-21 23:49:27,156 Epoch 24 Step: 124800 Batch Loss: 1.511342 Tokens per Sec: 20575, Lr: 0.000300\n", "2020-01-21 23:49:38,513 Epoch 24 Step: 124900 Batch Loss: 1.424956 Tokens per Sec: 20594, Lr: 0.000300\n", "2020-01-21 23:49:49,823 Epoch 24 Step: 125000 Batch Loss: 1.787918 Tokens per Sec: 20112, Lr: 0.000300\n", "2020-01-21 23:50:20,440 Example #0\n", "2020-01-21 23:50:20,441 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:50:20,441 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:50:20,441 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:50:20,441 Example #1\n", "2020-01-21 23:50:20,441 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:50:20,441 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:50:20,441 \tHypothesis: Ní báyìí , mo ti ní láti rí iṣẹ́ tó máa jẹ́ kí n lè ṣe é .\n", "2020-01-21 23:50:20,441 Example #2\n", "2020-01-21 23:50:20,441 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:50:20,441 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:50:20,441 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-21 23:50:20,442 Example #3\n", "2020-01-21 23:50:20,442 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:50:20,442 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:50:20,442 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún ní èròjà fítámì ju ìwọ lọ , àmọ́ ó fi sùúrù rìn sún mọ́ ọ .\n", "2020-01-21 23:50:20,442 Validation result (greedy) at epoch 24, step 125000: bleu: 27.96, loss: 43199.1289, ppl: 4.2632, duration: 30.6191s\n", "2020-01-21 23:50:31,804 Epoch 24 Step: 125100 Batch Loss: 1.639323 Tokens per Sec: 20616, Lr: 0.000300\n", "2020-01-21 23:50:43,181 Epoch 24 Step: 125200 Batch Loss: 1.633325 Tokens per Sec: 20424, Lr: 0.000300\n", "2020-01-21 23:50:54,532 Epoch 24 Step: 125300 Batch Loss: 1.553308 Tokens per Sec: 20633, Lr: 0.000300\n", "2020-01-21 23:51:06,050 Epoch 24 Step: 125400 Batch Loss: 1.533725 Tokens per Sec: 20868, Lr: 0.000300\n", "2020-01-21 23:51:17,345 Epoch 24 Step: 125500 Batch Loss: 1.670816 Tokens per Sec: 20093, Lr: 0.000300\n", "2020-01-21 23:51:28,744 Epoch 24 Step: 125600 Batch Loss: 1.432093 Tokens per Sec: 20226, Lr: 0.000300\n", "2020-01-21 23:51:40,085 Epoch 24 Step: 125700 Batch Loss: 1.630447 Tokens per Sec: 20323, Lr: 0.000300\n", "2020-01-21 23:51:51,346 Epoch 24 Step: 125800 Batch Loss: 1.603729 Tokens per Sec: 20005, Lr: 0.000300\n", "2020-01-21 23:52:02,717 Epoch 24 Step: 125900 Batch Loss: 1.488218 Tokens per Sec: 20648, Lr: 0.000300\n", "2020-01-21 23:52:14,049 Epoch 24 Step: 126000 Batch Loss: 1.666147 Tokens per Sec: 20366, Lr: 0.000300\n", "2020-01-21 23:52:44,659 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:52:44,659 Saving new checkpoint.\n", "2020-01-21 23:52:44,911 Example #0\n", "2020-01-21 23:52:44,911 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:52:44,911 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:52:44,911 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:52:44,911 Example #1\n", "2020-01-21 23:52:44,911 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:52:44,912 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:52:44,912 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè rí i pé iṣẹ́ tó dáa ni mo ń ṣe .\n", "2020-01-21 23:52:44,912 Example #2\n", "2020-01-21 23:52:44,912 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:52:44,912 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:52:44,912 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:52:44,912 Example #3\n", "2020-01-21 23:52:44,912 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:52:44,912 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:52:44,912 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju ìwọ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:52:44,912 Validation result (greedy) at epoch 24, step 126000: bleu: 28.20, loss: 43084.8242, ppl: 4.2469, duration: 30.8634s\n", "2020-01-21 23:52:49,138 Epoch 24: total training loss 8260.46\n", "2020-01-21 23:52:49,138 EPOCH 25\n", "2020-01-21 23:52:56,760 Epoch 25 Step: 126100 Batch Loss: 1.522004 Tokens per Sec: 18588, Lr: 0.000300\n", "2020-01-21 23:53:08,081 Epoch 25 Step: 126200 Batch Loss: 1.411069 Tokens per Sec: 20282, Lr: 0.000300\n", "2020-01-21 23:53:19,372 Epoch 25 Step: 126300 Batch Loss: 1.414538 Tokens per Sec: 20099, Lr: 0.000300\n", "2020-01-21 23:53:30,743 Epoch 25 Step: 126400 Batch Loss: 1.562040 Tokens per Sec: 20710, Lr: 0.000300\n", "2020-01-21 23:53:42,036 Epoch 25 Step: 126500 Batch Loss: 1.473210 Tokens per Sec: 20221, Lr: 0.000300\n", "2020-01-21 23:53:53,420 Epoch 25 Step: 126600 Batch Loss: 1.532487 Tokens per Sec: 20237, Lr: 0.000300\n", "2020-01-21 23:54:04,758 Epoch 25 Step: 126700 Batch Loss: 1.525694 Tokens per Sec: 20073, Lr: 0.000300\n", "2020-01-21 23:54:16,150 Epoch 25 Step: 126800 Batch Loss: 1.441337 Tokens per Sec: 20079, Lr: 0.000300\n", "2020-01-21 23:54:27,534 Epoch 25 Step: 126900 Batch Loss: 1.442893 Tokens per Sec: 20701, Lr: 0.000300\n", "2020-01-21 23:54:38,851 Epoch 25 Step: 127000 Batch Loss: 1.627609 Tokens per Sec: 20465, Lr: 0.000300\n", "2020-01-21 23:55:09,439 Example #0\n", "2020-01-21 23:55:09,440 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:55:09,440 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:55:09,440 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:55:09,440 Example #1\n", "2020-01-21 23:55:09,440 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:55:09,440 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:55:09,440 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:55:09,440 Example #2\n", "2020-01-21 23:55:09,440 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:55:09,440 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:55:09,440 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:55:09,440 Example #3\n", "2020-01-21 23:55:09,440 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:55:09,440 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:55:09,440 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àmúlùmálà ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:55:09,440 Validation result (greedy) at epoch 25, step 127000: bleu: 28.11, loss: 43116.9414, ppl: 4.2515, duration: 30.5893s\n", "2020-01-21 23:55:20,711 Epoch 25 Step: 127100 Batch Loss: 1.700197 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-21 23:55:32,036 Epoch 25 Step: 127200 Batch Loss: 1.720898 Tokens per Sec: 20802, Lr: 0.000300\n", "2020-01-21 23:55:43,367 Epoch 25 Step: 127300 Batch Loss: 1.608685 Tokens per Sec: 20185, Lr: 0.000300\n", "2020-01-21 23:55:54,665 Epoch 25 Step: 127400 Batch Loss: 1.566612 Tokens per Sec: 20157, Lr: 0.000300\n", "2020-01-21 23:56:06,003 Epoch 25 Step: 127500 Batch Loss: 1.563397 Tokens per Sec: 20730, Lr: 0.000300\n", "2020-01-21 23:56:17,367 Epoch 25 Step: 127600 Batch Loss: 1.569616 Tokens per Sec: 20281, Lr: 0.000300\n", "2020-01-21 23:56:28,644 Epoch 25 Step: 127700 Batch Loss: 1.543838 Tokens per Sec: 20123, Lr: 0.000300\n", "2020-01-21 23:56:40,103 Epoch 25 Step: 127800 Batch Loss: 1.693068 Tokens per Sec: 21080, Lr: 0.000300\n", "2020-01-21 23:56:51,393 Epoch 25 Step: 127900 Batch Loss: 1.668949 Tokens per Sec: 20350, Lr: 0.000300\n", "2020-01-21 23:57:02,724 Epoch 25 Step: 128000 Batch Loss: 1.562913 Tokens per Sec: 20481, Lr: 0.000300\n", "2020-01-21 23:57:33,304 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:57:33,304 Saving new checkpoint.\n", "2020-01-21 23:57:33,570 Example #0\n", "2020-01-21 23:57:33,570 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:57:33,570 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:57:33,570 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:57:33,570 Example #1\n", "2020-01-21 23:57:33,570 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:57:33,570 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:57:33,570 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-21 23:57:33,570 Example #2\n", "2020-01-21 23:57:33,571 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:57:33,571 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:57:33,571 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:57:33,571 Example #3\n", "2020-01-21 23:57:33,571 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:57:33,571 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:57:33,571 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:57:33,572 Validation result (greedy) at epoch 25, step 128000: bleu: 28.15, loss: 42994.3477, ppl: 4.2340, duration: 30.8472s\n", "2020-01-21 23:57:44,833 Epoch 25 Step: 128100 Batch Loss: 1.668006 Tokens per Sec: 20058, Lr: 0.000300\n", "2020-01-21 23:57:56,106 Epoch 25 Step: 128200 Batch Loss: 1.543328 Tokens per Sec: 20412, Lr: 0.000300\n", "2020-01-21 23:58:07,435 Epoch 25 Step: 128300 Batch Loss: 1.730477 Tokens per Sec: 19999, Lr: 0.000300\n", "2020-01-21 23:58:18,782 Epoch 25 Step: 128400 Batch Loss: 1.573100 Tokens per Sec: 20346, Lr: 0.000300\n", "2020-01-21 23:58:30,166 Epoch 25 Step: 128500 Batch Loss: 1.527762 Tokens per Sec: 20463, Lr: 0.000300\n", "2020-01-21 23:58:41,478 Epoch 25 Step: 128600 Batch Loss: 1.492221 Tokens per Sec: 20132, Lr: 0.000300\n", "2020-01-21 23:58:52,902 Epoch 25 Step: 128700 Batch Loss: 1.675426 Tokens per Sec: 20811, Lr: 0.000300\n", "2020-01-21 23:59:04,198 Epoch 25 Step: 128800 Batch Loss: 1.463042 Tokens per Sec: 20422, Lr: 0.000300\n", "2020-01-21 23:59:15,528 Epoch 25 Step: 128900 Batch Loss: 1.470033 Tokens per Sec: 20091, Lr: 0.000300\n", "2020-01-21 23:59:26,850 Epoch 25 Step: 129000 Batch Loss: 1.602183 Tokens per Sec: 20516, Lr: 0.000300\n", "2020-01-21 23:59:57,458 Hooray! New best validation result [ppl]!\n", "2020-01-21 23:59:57,459 Saving new checkpoint.\n", "2020-01-21 23:59:57,714 Example #0\n", "2020-01-21 23:59:57,714 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-21 23:59:57,714 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-21 23:59:57,714 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-21 23:59:57,714 Example #1\n", "2020-01-21 23:59:57,714 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-21 23:59:57,714 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-21 23:59:57,714 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó dára gan - an .\n", "2020-01-21 23:59:57,714 Example #2\n", "2020-01-21 23:59:57,714 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-21 23:59:57,714 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-21 23:59:57,714 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-21 23:59:57,714 Example #3\n", "2020-01-21 23:59:57,714 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-21 23:59:57,715 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-21 23:59:57,715 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-21 23:59:57,715 Validation result (greedy) at epoch 25, step 129000: bleu: 28.07, loss: 42964.8047, ppl: 4.2298, duration: 30.8641s\n", "2020-01-22 00:00:09,088 Epoch 25 Step: 129100 Batch Loss: 1.488717 Tokens per Sec: 20280, Lr: 0.000300\n", "2020-01-22 00:00:20,474 Epoch 25 Step: 129200 Batch Loss: 1.592020 Tokens per Sec: 20255, Lr: 0.000300\n", "2020-01-22 00:00:31,828 Epoch 25 Step: 129300 Batch Loss: 1.624585 Tokens per Sec: 20352, Lr: 0.000300\n", "2020-01-22 00:00:43,269 Epoch 25 Step: 129400 Batch Loss: 1.524243 Tokens per Sec: 20700, Lr: 0.000300\n", "2020-01-22 00:00:54,646 Epoch 25 Step: 129500 Batch Loss: 1.540551 Tokens per Sec: 20376, Lr: 0.000300\n", "2020-01-22 00:01:06,121 Epoch 25 Step: 129600 Batch Loss: 1.546884 Tokens per Sec: 20964, Lr: 0.000300\n", "2020-01-22 00:01:17,390 Epoch 25 Step: 129700 Batch Loss: 1.536848 Tokens per Sec: 20245, Lr: 0.000300\n", "2020-01-22 00:01:28,877 Epoch 25 Step: 129800 Batch Loss: 1.533746 Tokens per Sec: 20539, Lr: 0.000300\n", "2020-01-22 00:01:40,204 Epoch 25 Step: 129900 Batch Loss: 1.492660 Tokens per Sec: 20188, Lr: 0.000300\n", "2020-01-22 00:01:51,469 Epoch 25 Step: 130000 Batch Loss: 1.558585 Tokens per Sec: 20215, Lr: 0.000300\n", "2020-01-22 00:02:22,045 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:02:22,045 Saving new checkpoint.\n", "2020-01-22 00:02:22,310 Example #0\n", "2020-01-22 00:02:22,311 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:02:22,311 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:02:22,311 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:02:22,311 Example #1\n", "2020-01-22 00:02:22,311 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:02:22,311 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:02:22,311 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó dára ni mo ṣe .\n", "2020-01-22 00:02:22,311 Example #2\n", "2020-01-22 00:02:22,311 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:02:22,311 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:02:22,311 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:02:22,311 Example #3\n", "2020-01-22 00:02:22,312 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:02:22,312 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:02:22,312 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:02:22,312 Validation result (greedy) at epoch 25, step 130000: bleu: 28.17, loss: 42957.3203, ppl: 4.2288, duration: 30.8430s\n", "2020-01-22 00:02:33,772 Epoch 25 Step: 130100 Batch Loss: 1.508959 Tokens per Sec: 20580, Lr: 0.000300\n", "2020-01-22 00:02:45,158 Epoch 25 Step: 130200 Batch Loss: 1.589881 Tokens per Sec: 20299, Lr: 0.000300\n", "2020-01-22 00:02:56,488 Epoch 25 Step: 130300 Batch Loss: 1.418051 Tokens per Sec: 20217, Lr: 0.000300\n", "2020-01-22 00:03:07,862 Epoch 25 Step: 130400 Batch Loss: 1.720745 Tokens per Sec: 20378, Lr: 0.000300\n", "2020-01-22 00:03:19,100 Epoch 25 Step: 130500 Batch Loss: 1.481531 Tokens per Sec: 20236, Lr: 0.000300\n", "2020-01-22 00:03:30,476 Epoch 25 Step: 130600 Batch Loss: 1.456433 Tokens per Sec: 20614, Lr: 0.000300\n", "2020-01-22 00:03:41,894 Epoch 25 Step: 130700 Batch Loss: 1.605391 Tokens per Sec: 20137, Lr: 0.000300\n", "2020-01-22 00:03:53,244 Epoch 25 Step: 130800 Batch Loss: 1.623163 Tokens per Sec: 20056, Lr: 0.000300\n", "2020-01-22 00:04:04,608 Epoch 25 Step: 130900 Batch Loss: 1.637433 Tokens per Sec: 20408, Lr: 0.000300\n", "2020-01-22 00:04:15,986 Epoch 25 Step: 131000 Batch Loss: 1.561685 Tokens per Sec: 20477, Lr: 0.000300\n", "2020-01-22 00:04:46,591 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:04:46,591 Saving new checkpoint.\n", "2020-01-22 00:04:46,853 Example #0\n", "2020-01-22 00:04:46,853 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:04:46,853 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:04:46,854 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:04:46,854 Example #1\n", "2020-01-22 00:04:46,854 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:04:46,854 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:04:46,854 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-22 00:04:46,854 Example #2\n", "2020-01-22 00:04:46,854 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:04:46,854 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:04:46,854 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:04:46,854 Example #3\n", "2020-01-22 00:04:46,854 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:04:46,854 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:04:46,854 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:04:46,855 Validation result (greedy) at epoch 25, step 131000: bleu: 28.26, loss: 42926.8047, ppl: 4.2244, duration: 30.8684s\n", "2020-01-22 00:04:58,307 Epoch 25 Step: 131100 Batch Loss: 1.369954 Tokens per Sec: 20591, Lr: 0.000300\n", "2020-01-22 00:05:09,601 Epoch 25 Step: 131200 Batch Loss: 1.596198 Tokens per Sec: 20297, Lr: 0.000300\n", "2020-01-22 00:05:19,786 Epoch 25: total training loss 8221.70\n", "2020-01-22 00:05:19,786 EPOCH 26\n", "2020-01-22 00:05:21,438 Epoch 26 Step: 131300 Batch Loss: 1.629519 Tokens per Sec: 14028, Lr: 0.000300\n", "2020-01-22 00:05:32,703 Epoch 26 Step: 131400 Batch Loss: 1.333449 Tokens per Sec: 20154, Lr: 0.000300\n", "2020-01-22 00:05:44,039 Epoch 26 Step: 131500 Batch Loss: 1.683130 Tokens per Sec: 20594, Lr: 0.000300\n", "2020-01-22 00:05:55,427 Epoch 26 Step: 131600 Batch Loss: 1.761028 Tokens per Sec: 20496, Lr: 0.000300\n", "2020-01-22 00:06:06,875 Epoch 26 Step: 131700 Batch Loss: 1.458512 Tokens per Sec: 20583, Lr: 0.000300\n", "2020-01-22 00:06:18,276 Epoch 26 Step: 131800 Batch Loss: 1.732346 Tokens per Sec: 20482, Lr: 0.000300\n", "2020-01-22 00:06:29,601 Epoch 26 Step: 131900 Batch Loss: 1.606090 Tokens per Sec: 20363, Lr: 0.000300\n", "2020-01-22 00:06:41,053 Epoch 26 Step: 132000 Batch Loss: 1.646899 Tokens per Sec: 20479, Lr: 0.000300\n", "2020-01-22 00:07:11,692 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:07:11,692 Saving new checkpoint.\n", "2020-01-22 00:07:11,929 Example #0\n", "2020-01-22 00:07:11,929 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:07:11,929 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:07:11,929 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:07:11,929 Example #1\n", "2020-01-22 00:07:11,929 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:07:11,929 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:07:11,929 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-22 00:07:11,929 Example #2\n", "2020-01-22 00:07:11,930 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:07:11,930 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:07:11,930 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:07:11,930 Example #3\n", "2020-01-22 00:07:11,930 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:07:11,930 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:07:11,930 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì ní àmúmọ́ra ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:07:11,930 Validation result (greedy) at epoch 26, step 132000: bleu: 28.17, loss: 42888.7812, ppl: 4.2190, duration: 30.8773s\n", "2020-01-22 00:07:23,296 Epoch 26 Step: 132100 Batch Loss: 1.530297 Tokens per Sec: 20222, Lr: 0.000300\n", "2020-01-22 00:07:34,722 Epoch 26 Step: 132200 Batch Loss: 1.567954 Tokens per Sec: 20475, Lr: 0.000300\n", "2020-01-22 00:07:46,062 Epoch 26 Step: 132300 Batch Loss: 1.541335 Tokens per Sec: 20143, Lr: 0.000300\n", "2020-01-22 00:07:57,340 Epoch 26 Step: 132400 Batch Loss: 1.592706 Tokens per Sec: 20209, Lr: 0.000300\n", "2020-01-22 00:08:08,635 Epoch 26 Step: 132500 Batch Loss: 1.564691 Tokens per Sec: 20507, Lr: 0.000300\n", "2020-01-22 00:08:19,878 Epoch 26 Step: 132600 Batch Loss: 1.595116 Tokens per Sec: 19984, Lr: 0.000300\n", "2020-01-22 00:08:31,181 Epoch 26 Step: 132700 Batch Loss: 1.718929 Tokens per Sec: 20448, Lr: 0.000300\n", "2020-01-22 00:08:42,634 Epoch 26 Step: 132800 Batch Loss: 1.516850 Tokens per Sec: 20547, Lr: 0.000300\n", "2020-01-22 00:08:54,129 Epoch 26 Step: 132900 Batch Loss: 1.533833 Tokens per Sec: 20794, Lr: 0.000300\n", "2020-01-22 00:09:05,531 Epoch 26 Step: 133000 Batch Loss: 1.457927 Tokens per Sec: 20217, Lr: 0.000300\n", "2020-01-22 00:09:36,086 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:09:36,087 Saving new checkpoint.\n", "2020-01-22 00:09:36,353 Example #0\n", "2020-01-22 00:09:36,353 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:09:36,353 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:09:36,353 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ó fún un ní ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:09:36,354 Example #1\n", "2020-01-22 00:09:36,354 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:09:36,354 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:09:36,354 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-22 00:09:36,354 Example #2\n", "2020-01-22 00:09:36,354 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:09:36,354 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:09:36,354 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:09:36,354 Example #3\n", "2020-01-22 00:09:36,354 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:09:36,354 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:09:36,354 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó máa ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:09:36,355 Validation result (greedy) at epoch 26, step 133000: bleu: 28.55, loss: 42859.8164, ppl: 4.2149, duration: 30.8234s\n", "2020-01-22 00:09:47,742 Epoch 26 Step: 133100 Batch Loss: 1.557110 Tokens per Sec: 20329, Lr: 0.000300\n", "2020-01-22 00:09:59,066 Epoch 26 Step: 133200 Batch Loss: 1.538644 Tokens per Sec: 20480, Lr: 0.000300\n", "2020-01-22 00:10:10,438 Epoch 26 Step: 133300 Batch Loss: 1.609585 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-22 00:10:21,792 Epoch 26 Step: 133400 Batch Loss: 1.619176 Tokens per Sec: 20239, Lr: 0.000300\n", "2020-01-22 00:10:33,119 Epoch 26 Step: 133500 Batch Loss: 1.676950 Tokens per Sec: 20496, Lr: 0.000300\n", "2020-01-22 00:10:44,414 Epoch 26 Step: 133600 Batch Loss: 1.514376 Tokens per Sec: 20546, Lr: 0.000300\n", "2020-01-22 00:10:55,742 Epoch 26 Step: 133700 Batch Loss: 1.496118 Tokens per Sec: 20294, Lr: 0.000300\n", "2020-01-22 00:11:06,940 Epoch 26 Step: 133800 Batch Loss: 1.271205 Tokens per Sec: 20011, Lr: 0.000300\n", "2020-01-22 00:11:18,361 Epoch 26 Step: 133900 Batch Loss: 1.538640 Tokens per Sec: 20658, Lr: 0.000300\n", "2020-01-22 00:11:29,866 Epoch 26 Step: 134000 Batch Loss: 1.473492 Tokens per Sec: 20639, Lr: 0.000300\n", "2020-01-22 00:12:00,459 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:12:00,459 Saving new checkpoint.\n", "2020-01-22 00:12:00,695 Example #0\n", "2020-01-22 00:12:00,695 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:12:00,695 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:12:00,695 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:12:00,695 Example #1\n", "2020-01-22 00:12:00,695 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:12:00,696 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:12:00,696 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó dára gan - an .\n", "2020-01-22 00:12:00,696 Example #2\n", "2020-01-22 00:12:00,696 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:12:00,696 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:12:00,696 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:12:00,696 Example #3\n", "2020-01-22 00:12:00,696 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:12:00,696 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:12:00,696 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:12:00,696 Validation result (greedy) at epoch 26, step 134000: bleu: 28.47, loss: 42723.4023, ppl: 4.1957, duration: 30.8302s\n", "2020-01-22 00:12:12,102 Epoch 26 Step: 134100 Batch Loss: 1.659131 Tokens per Sec: 20181, Lr: 0.000300\n", "2020-01-22 00:12:23,329 Epoch 26 Step: 134200 Batch Loss: 1.546069 Tokens per Sec: 20383, Lr: 0.000300\n", "2020-01-22 00:12:34,635 Epoch 26 Step: 134300 Batch Loss: 1.512224 Tokens per Sec: 20464, Lr: 0.000300\n", "2020-01-22 00:12:45,872 Epoch 26 Step: 134400 Batch Loss: 1.491773 Tokens per Sec: 20099, Lr: 0.000300\n", "2020-01-22 00:12:57,280 Epoch 26 Step: 134500 Batch Loss: 1.468861 Tokens per Sec: 20599, Lr: 0.000300\n", "2020-01-22 00:13:08,615 Epoch 26 Step: 134600 Batch Loss: 2.954380 Tokens per Sec: 20381, Lr: 0.000300\n", "2020-01-22 00:13:20,109 Epoch 26 Step: 134700 Batch Loss: 1.564203 Tokens per Sec: 20930, Lr: 0.000300\n", "2020-01-22 00:13:31,490 Epoch 26 Step: 134800 Batch Loss: 1.566574 Tokens per Sec: 20538, Lr: 0.000300\n", "2020-01-22 00:13:42,754 Epoch 26 Step: 134900 Batch Loss: 1.498614 Tokens per Sec: 20196, Lr: 0.000300\n", "2020-01-22 00:13:54,157 Epoch 26 Step: 135000 Batch Loss: 1.574444 Tokens per Sec: 20498, Lr: 0.000300\n", "2020-01-22 00:14:24,778 Example #0\n", "2020-01-22 00:14:24,778 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:14:24,778 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:14:24,778 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:14:24,778 Example #1\n", "2020-01-22 00:14:24,778 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:14:24,778 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:14:24,778 \tHypothesis: Ní báyìí , mo ní láti wá ibi iṣẹ́ tó bójú mu .\n", "2020-01-22 00:14:24,778 Example #2\n", "2020-01-22 00:14:24,778 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:14:24,778 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:14:24,779 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:14:24,779 Example #3\n", "2020-01-22 00:14:24,779 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:14:24,779 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:14:24,779 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:14:24,779 Validation result (greedy) at epoch 26, step 135000: bleu: 28.49, loss: 42866.8086, ppl: 4.2159, duration: 30.6219s\n", "2020-01-22 00:14:36,058 Epoch 26 Step: 135100 Batch Loss: 1.358126 Tokens per Sec: 20089, Lr: 0.000300\n", "2020-01-22 00:14:47,352 Epoch 26 Step: 135200 Batch Loss: 1.640670 Tokens per Sec: 20305, Lr: 0.000300\n", "2020-01-22 00:14:58,722 Epoch 26 Step: 135300 Batch Loss: 1.504819 Tokens per Sec: 20286, Lr: 0.000300\n", "2020-01-22 00:15:09,996 Epoch 26 Step: 135400 Batch Loss: 1.535905 Tokens per Sec: 20400, Lr: 0.000300\n", "2020-01-22 00:15:21,358 Epoch 26 Step: 135500 Batch Loss: 1.494691 Tokens per Sec: 20610, Lr: 0.000300\n", "2020-01-22 00:15:32,808 Epoch 26 Step: 135600 Batch Loss: 1.633438 Tokens per Sec: 20783, Lr: 0.000300\n", "2020-01-22 00:15:44,171 Epoch 26 Step: 135700 Batch Loss: 1.624012 Tokens per Sec: 20691, Lr: 0.000300\n", "2020-01-22 00:15:55,507 Epoch 26 Step: 135800 Batch Loss: 1.528524 Tokens per Sec: 20159, Lr: 0.000300\n", "2020-01-22 00:16:06,830 Epoch 26 Step: 135900 Batch Loss: 1.522803 Tokens per Sec: 20570, Lr: 0.000300\n", "2020-01-22 00:16:18,229 Epoch 26 Step: 136000 Batch Loss: 1.490196 Tokens per Sec: 20097, Lr: 0.000300\n", "2020-01-22 00:16:48,841 Example #0\n", "2020-01-22 00:16:48,841 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:16:48,841 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:16:48,841 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:16:48,841 Example #1\n", "2020-01-22 00:16:48,842 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:16:48,842 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:16:48,842 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 00:16:48,842 Example #2\n", "2020-01-22 00:16:48,842 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:16:48,842 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:16:48,842 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-22 00:16:48,842 Example #3\n", "2020-01-22 00:16:48,842 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:16:48,842 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:16:48,842 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì ní ìwọ̀nba ohun tó o ṣe , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:16:48,842 Validation result (greedy) at epoch 26, step 136000: bleu: 28.28, loss: 42913.5234, ppl: 4.2225, duration: 30.6133s\n", "2020-01-22 00:17:00,208 Epoch 26 Step: 136100 Batch Loss: 1.549639 Tokens per Sec: 20504, Lr: 0.000300\n", "2020-01-22 00:17:11,526 Epoch 26 Step: 136200 Batch Loss: 1.694115 Tokens per Sec: 20256, Lr: 0.000300\n", "2020-01-22 00:17:22,846 Epoch 26 Step: 136300 Batch Loss: 1.459454 Tokens per Sec: 19930, Lr: 0.000300\n", "2020-01-22 00:17:34,254 Epoch 26 Step: 136400 Batch Loss: 1.790444 Tokens per Sec: 20673, Lr: 0.000300\n", "2020-01-22 00:17:45,578 Epoch 26 Step: 136500 Batch Loss: 1.443643 Tokens per Sec: 19959, Lr: 0.000300\n", "2020-01-22 00:17:49,435 Epoch 26: total training loss 8168.88\n", "2020-01-22 00:17:49,435 EPOCH 27\n", "2020-01-22 00:17:57,399 Epoch 27 Step: 136600 Batch Loss: 1.483747 Tokens per Sec: 19226, Lr: 0.000300\n", "2020-01-22 00:18:08,772 Epoch 27 Step: 136700 Batch Loss: 1.609759 Tokens per Sec: 20322, Lr: 0.000300\n", "2020-01-22 00:18:20,127 Epoch 27 Step: 136800 Batch Loss: 1.610974 Tokens per Sec: 20388, Lr: 0.000300\n", "2020-01-22 00:18:31,450 Epoch 27 Step: 136900 Batch Loss: 1.621392 Tokens per Sec: 20272, Lr: 0.000300\n", "2020-01-22 00:18:42,770 Epoch 27 Step: 137000 Batch Loss: 1.640719 Tokens per Sec: 20057, Lr: 0.000300\n", "2020-01-22 00:19:13,401 Example #0\n", "2020-01-22 00:19:13,401 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:19:13,401 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:19:13,401 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:19:13,401 Example #1\n", "2020-01-22 00:19:13,402 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:19:13,402 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:19:13,402 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-22 00:19:13,402 Example #2\n", "2020-01-22 00:19:13,402 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:19:13,402 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:19:13,402 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:19:13,402 Example #3\n", "2020-01-22 00:19:13,402 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:19:13,402 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:19:13,402 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:19:13,402 Validation result (greedy) at epoch 27, step 137000: bleu: 28.48, loss: 42739.4219, ppl: 4.1979, duration: 30.6318s\n", "2020-01-22 00:19:24,781 Epoch 27 Step: 137100 Batch Loss: 1.455595 Tokens per Sec: 20416, Lr: 0.000300\n", "2020-01-22 00:19:36,163 Epoch 27 Step: 137200 Batch Loss: 1.419029 Tokens per Sec: 20552, Lr: 0.000300\n", "2020-01-22 00:19:47,457 Epoch 27 Step: 137300 Batch Loss: 1.644476 Tokens per Sec: 20403, Lr: 0.000300\n", "2020-01-22 00:19:58,873 Epoch 27 Step: 137400 Batch Loss: 1.696989 Tokens per Sec: 20598, Lr: 0.000300\n", "2020-01-22 00:20:10,123 Epoch 27 Step: 137500 Batch Loss: 1.505904 Tokens per Sec: 20190, Lr: 0.000300\n", "2020-01-22 00:20:21,461 Epoch 27 Step: 137600 Batch Loss: 1.251653 Tokens per Sec: 20590, Lr: 0.000300\n", "2020-01-22 00:20:32,791 Epoch 27 Step: 137700 Batch Loss: 1.485048 Tokens per Sec: 20022, Lr: 0.000300\n", "2020-01-22 00:20:44,153 Epoch 27 Step: 137800 Batch Loss: 1.397272 Tokens per Sec: 20496, Lr: 0.000300\n", "2020-01-22 00:20:55,512 Epoch 27 Step: 137900 Batch Loss: 1.733672 Tokens per Sec: 20426, Lr: 0.000300\n", "2020-01-22 00:21:06,671 Epoch 27 Step: 138000 Batch Loss: 1.467620 Tokens per Sec: 19885, Lr: 0.000300\n", "2020-01-22 00:21:37,245 Example #0\n", "2020-01-22 00:21:37,245 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:21:37,245 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:21:37,245 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:21:37,245 Example #1\n", "2020-01-22 00:21:37,245 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:21:37,245 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:21:37,245 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-22 00:21:37,245 Example #2\n", "2020-01-22 00:21:37,245 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:21:37,246 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:21:37,246 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:21:37,246 Example #3\n", "2020-01-22 00:21:37,246 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:21:37,246 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:21:37,246 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:21:37,246 Validation result (greedy) at epoch 27, step 138000: bleu: 28.09, loss: 42852.0039, ppl: 4.2138, duration: 30.5749s\n", "2020-01-22 00:21:48,603 Epoch 27 Step: 138100 Batch Loss: 1.455868 Tokens per Sec: 20502, Lr: 0.000300\n", "2020-01-22 00:21:59,998 Epoch 27 Step: 138200 Batch Loss: 1.586590 Tokens per Sec: 20444, Lr: 0.000300\n", "2020-01-22 00:22:11,373 Epoch 27 Step: 138300 Batch Loss: 1.536478 Tokens per Sec: 20574, Lr: 0.000300\n", "2020-01-22 00:22:22,749 Epoch 27 Step: 138400 Batch Loss: 1.713592 Tokens per Sec: 20435, Lr: 0.000300\n", "2020-01-22 00:22:34,100 Epoch 27 Step: 138500 Batch Loss: 1.555440 Tokens per Sec: 20632, Lr: 0.000300\n", "2020-01-22 00:22:45,459 Epoch 27 Step: 138600 Batch Loss: 1.670979 Tokens per Sec: 20483, Lr: 0.000300\n", "2020-01-22 00:22:56,721 Epoch 27 Step: 138700 Batch Loss: 1.763361 Tokens per Sec: 20301, Lr: 0.000300\n", "2020-01-22 00:23:08,046 Epoch 27 Step: 138800 Batch Loss: 1.581262 Tokens per Sec: 20628, Lr: 0.000300\n", "2020-01-22 00:23:19,424 Epoch 27 Step: 138900 Batch Loss: 1.356976 Tokens per Sec: 20647, Lr: 0.000300\n", "2020-01-22 00:23:30,860 Epoch 27 Step: 139000 Batch Loss: 1.391974 Tokens per Sec: 20740, Lr: 0.000300\n", "2020-01-22 00:24:01,450 Example #0\n", "2020-01-22 00:24:01,450 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:24:01,450 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:24:01,450 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:24:01,450 Example #1\n", "2020-01-22 00:24:01,450 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:24:01,450 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:24:01,450 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó dára gan - an .\n", "2020-01-22 00:24:01,450 Example #2\n", "2020-01-22 00:24:01,451 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:24:01,451 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:24:01,451 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:24:01,451 Example #3\n", "2020-01-22 00:24:01,451 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:24:01,451 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:24:01,451 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:24:01,451 Validation result (greedy) at epoch 27, step 139000: bleu: 28.71, loss: 42783.0000, ppl: 4.2041, duration: 30.5906s\n", "2020-01-22 00:24:12,823 Epoch 27 Step: 139100 Batch Loss: 1.524790 Tokens per Sec: 20313, Lr: 0.000300\n", "2020-01-22 00:24:24,186 Epoch 27 Step: 139200 Batch Loss: 1.488802 Tokens per Sec: 20148, Lr: 0.000300\n", "2020-01-22 00:24:35,498 Epoch 27 Step: 139300 Batch Loss: 1.749980 Tokens per Sec: 20695, Lr: 0.000300\n", "2020-01-22 00:24:46,795 Epoch 27 Step: 139400 Batch Loss: 1.477905 Tokens per Sec: 20329, Lr: 0.000300\n", "2020-01-22 00:24:58,076 Epoch 27 Step: 139500 Batch Loss: 1.612401 Tokens per Sec: 20060, Lr: 0.000300\n", "2020-01-22 00:25:09,318 Epoch 27 Step: 139600 Batch Loss: 1.498908 Tokens per Sec: 20337, Lr: 0.000300\n", "2020-01-22 00:25:20,636 Epoch 27 Step: 139700 Batch Loss: 1.574624 Tokens per Sec: 20403, Lr: 0.000300\n", "2020-01-22 00:25:31,944 Epoch 27 Step: 139800 Batch Loss: 1.599594 Tokens per Sec: 20039, Lr: 0.000300\n", "2020-01-22 00:25:43,291 Epoch 27 Step: 139900 Batch Loss: 1.411867 Tokens per Sec: 20249, Lr: 0.000300\n", "2020-01-22 00:25:54,695 Epoch 27 Step: 140000 Batch Loss: 1.626122 Tokens per Sec: 20710, Lr: 0.000300\n", "2020-01-22 00:26:25,288 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:26:25,288 Saving new checkpoint.\n", "2020-01-22 00:26:25,532 Example #0\n", "2020-01-22 00:26:25,533 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:26:25,533 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:26:25,533 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:26:25,533 Example #1\n", "2020-01-22 00:26:25,533 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:26:25,533 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:26:25,533 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 00:26:25,533 Example #2\n", "2020-01-22 00:26:25,533 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:26:25,533 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:26:25,533 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:26:25,533 Example #3\n", "2020-01-22 00:26:25,533 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:26:25,533 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:26:25,533 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:26:25,533 Validation result (greedy) at epoch 27, step 140000: bleu: 28.75, loss: 42455.3125, ppl: 4.1581, duration: 30.8380s\n", "2020-01-22 00:26:36,990 Epoch 27 Step: 140100 Batch Loss: 1.527007 Tokens per Sec: 20455, Lr: 0.000300\n", "2020-01-22 00:26:48,270 Epoch 27 Step: 140200 Batch Loss: 1.691092 Tokens per Sec: 20224, Lr: 0.000300\n", "2020-01-22 00:26:59,680 Epoch 27 Step: 140300 Batch Loss: 1.465644 Tokens per Sec: 20518, Lr: 0.000300\n", "2020-01-22 00:27:11,019 Epoch 27 Step: 140400 Batch Loss: 1.614033 Tokens per Sec: 20409, Lr: 0.000300\n", "2020-01-22 00:27:22,412 Epoch 27 Step: 140500 Batch Loss: 1.456582 Tokens per Sec: 20631, Lr: 0.000300\n", "2020-01-22 00:27:33,726 Epoch 27 Step: 140600 Batch Loss: 1.512849 Tokens per Sec: 19929, Lr: 0.000300\n", "2020-01-22 00:27:45,050 Epoch 27 Step: 140700 Batch Loss: 1.595264 Tokens per Sec: 20228, Lr: 0.000300\n", "2020-01-22 00:27:56,272 Epoch 27 Step: 140800 Batch Loss: 1.706288 Tokens per Sec: 20166, Lr: 0.000300\n", "2020-01-22 00:28:07,597 Epoch 27 Step: 140900 Batch Loss: 1.620412 Tokens per Sec: 20232, Lr: 0.000300\n", "2020-01-22 00:28:18,870 Epoch 27 Step: 141000 Batch Loss: 1.519954 Tokens per Sec: 20519, Lr: 0.000300\n", "2020-01-22 00:28:49,421 Example #0\n", "2020-01-22 00:28:49,421 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:28:49,421 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:28:49,421 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:28:49,421 Example #1\n", "2020-01-22 00:28:49,421 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:28:49,421 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:28:49,421 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó dára gan - an .\n", "2020-01-22 00:28:49,421 Example #2\n", "2020-01-22 00:28:49,422 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:28:49,422 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:28:49,422 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:28:49,422 Example #3\n", "2020-01-22 00:28:49,422 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:28:49,422 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:28:49,422 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:28:49,422 Validation result (greedy) at epoch 27, step 141000: bleu: 28.33, loss: 42504.1953, ppl: 4.1649, duration: 30.5523s\n", "2020-01-22 00:29:00,788 Epoch 27 Step: 141100 Batch Loss: 1.546128 Tokens per Sec: 20200, Lr: 0.000300\n", "2020-01-22 00:29:12,011 Epoch 27 Step: 141200 Batch Loss: 1.565770 Tokens per Sec: 19812, Lr: 0.000300\n", "2020-01-22 00:29:23,416 Epoch 27 Step: 141300 Batch Loss: 1.682719 Tokens per Sec: 20854, Lr: 0.000300\n", "2020-01-22 00:29:34,691 Epoch 27 Step: 141400 Batch Loss: 1.402130 Tokens per Sec: 20039, Lr: 0.000300\n", "2020-01-22 00:29:46,214 Epoch 27 Step: 141500 Batch Loss: 1.548584 Tokens per Sec: 20820, Lr: 0.000300\n", "2020-01-22 00:29:57,582 Epoch 27 Step: 141600 Batch Loss: 1.794827 Tokens per Sec: 20740, Lr: 0.000300\n", "2020-01-22 00:30:08,893 Epoch 27 Step: 141700 Batch Loss: 1.734785 Tokens per Sec: 20115, Lr: 0.000300\n", "2020-01-22 00:30:18,790 Epoch 27: total training loss 8150.02\n", "2020-01-22 00:30:18,790 EPOCH 28\n", "2020-01-22 00:30:20,796 Epoch 28 Step: 141800 Batch Loss: 1.248003 Tokens per Sec: 15539, Lr: 0.000300\n", "2020-01-22 00:30:32,149 Epoch 28 Step: 141900 Batch Loss: 1.672301 Tokens per Sec: 20175, Lr: 0.000300\n", "2020-01-22 00:30:43,508 Epoch 28 Step: 142000 Batch Loss: 1.599784 Tokens per Sec: 20255, Lr: 0.000300\n", "2020-01-22 00:31:14,131 Example #0\n", "2020-01-22 00:31:14,132 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:31:14,132 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:31:14,132 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:31:14,132 Example #1\n", "2020-01-22 00:31:14,132 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:31:14,132 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:31:14,132 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 00:31:14,132 Example #2\n", "2020-01-22 00:31:14,132 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:31:14,132 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:31:14,132 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:31:14,132 Example #3\n", "2020-01-22 00:31:14,133 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:31:14,133 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:31:14,133 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:31:14,133 Validation result (greedy) at epoch 28, step 142000: bleu: 28.49, loss: 42566.4219, ppl: 4.1736, duration: 30.6249s\n", "2020-01-22 00:31:25,486 Epoch 28 Step: 142100 Batch Loss: 1.546057 Tokens per Sec: 20415, Lr: 0.000300\n", "2020-01-22 00:31:36,847 Epoch 28 Step: 142200 Batch Loss: 1.391571 Tokens per Sec: 20317, Lr: 0.000300\n", "2020-01-22 00:31:48,171 Epoch 28 Step: 142300 Batch Loss: 1.497156 Tokens per Sec: 20222, Lr: 0.000300\n", "2020-01-22 00:31:59,513 Epoch 28 Step: 142400 Batch Loss: 1.713170 Tokens per Sec: 20335, Lr: 0.000300\n", "2020-01-22 00:32:10,909 Epoch 28 Step: 142500 Batch Loss: 1.699084 Tokens per Sec: 20762, Lr: 0.000300\n", "2020-01-22 00:32:22,226 Epoch 28 Step: 142600 Batch Loss: 1.614375 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-22 00:32:33,711 Epoch 28 Step: 142700 Batch Loss: 1.253832 Tokens per Sec: 20224, Lr: 0.000300\n", "2020-01-22 00:32:45,011 Epoch 28 Step: 142800 Batch Loss: 1.440566 Tokens per Sec: 20077, Lr: 0.000300\n", "2020-01-22 00:32:56,429 Epoch 28 Step: 142900 Batch Loss: 1.493867 Tokens per Sec: 20255, Lr: 0.000300\n", "2020-01-22 00:33:07,659 Epoch 28 Step: 143000 Batch Loss: 1.488807 Tokens per Sec: 20360, Lr: 0.000300\n", "2020-01-22 00:33:38,264 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:33:38,264 Saving new checkpoint.\n", "2020-01-22 00:33:38,508 Example #0\n", "2020-01-22 00:33:38,508 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:33:38,508 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:33:38,508 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:33:38,508 Example #1\n", "2020-01-22 00:33:38,508 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:33:38,508 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:33:38,509 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa ṣe mí láǹfààní .\n", "2020-01-22 00:33:38,509 Example #2\n", "2020-01-22 00:33:38,509 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:33:38,509 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:33:38,509 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:33:38,509 Example #3\n", "2020-01-22 00:33:38,509 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:33:38,509 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:33:38,509 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:33:38,509 Validation result (greedy) at epoch 28, step 143000: bleu: 28.51, loss: 42425.0898, ppl: 4.1539, duration: 30.8499s\n", "2020-01-22 00:33:49,796 Epoch 28 Step: 143100 Batch Loss: 1.587965 Tokens per Sec: 20274, Lr: 0.000300\n", "2020-01-22 00:34:01,160 Epoch 28 Step: 143200 Batch Loss: 1.566861 Tokens per Sec: 20416, Lr: 0.000300\n", "2020-01-22 00:34:12,455 Epoch 28 Step: 143300 Batch Loss: 1.616583 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-22 00:34:23,809 Epoch 28 Step: 143400 Batch Loss: 1.597729 Tokens per Sec: 20410, Lr: 0.000300\n", "2020-01-22 00:34:35,076 Epoch 28 Step: 143500 Batch Loss: 1.420747 Tokens per Sec: 20324, Lr: 0.000300\n", "2020-01-22 00:34:46,489 Epoch 28 Step: 143600 Batch Loss: 1.567189 Tokens per Sec: 20850, Lr: 0.000300\n", "2020-01-22 00:34:57,915 Epoch 28 Step: 143700 Batch Loss: 1.430840 Tokens per Sec: 20733, Lr: 0.000300\n", "2020-01-22 00:35:09,189 Epoch 28 Step: 143800 Batch Loss: 1.492760 Tokens per Sec: 20412, Lr: 0.000300\n", "2020-01-22 00:35:20,586 Epoch 28 Step: 143900 Batch Loss: 1.699912 Tokens per Sec: 20530, Lr: 0.000300\n", "2020-01-22 00:35:31,814 Epoch 28 Step: 144000 Batch Loss: 1.382476 Tokens per Sec: 20370, Lr: 0.000300\n", "2020-01-22 00:36:02,409 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:36:02,409 Saving new checkpoint.\n", "2020-01-22 00:36:02,663 Example #0\n", "2020-01-22 00:36:02,663 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:36:02,663 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:36:02,663 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:36:02,663 Example #1\n", "2020-01-22 00:36:02,663 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:36:02,663 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:36:02,663 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó bójú mu .\n", "2020-01-22 00:36:02,663 Example #2\n", "2020-01-22 00:36:02,664 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:36:02,664 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:36:02,664 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:36:02,664 Example #3\n", "2020-01-22 00:36:02,664 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:36:02,664 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:36:02,664 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:36:02,664 Validation result (greedy) at epoch 28, step 144000: bleu: 28.58, loss: 42390.6055, ppl: 4.1491, duration: 30.8499s\n", "2020-01-22 00:36:13,967 Epoch 28 Step: 144100 Batch Loss: 1.574389 Tokens per Sec: 20328, Lr: 0.000300\n", "2020-01-22 00:36:25,306 Epoch 28 Step: 144200 Batch Loss: 1.411873 Tokens per Sec: 20146, Lr: 0.000300\n", "2020-01-22 00:36:36,631 Epoch 28 Step: 144300 Batch Loss: 1.596022 Tokens per Sec: 20304, Lr: 0.000300\n", "2020-01-22 00:36:48,044 Epoch 28 Step: 144400 Batch Loss: 1.531585 Tokens per Sec: 20171, Lr: 0.000300\n", "2020-01-22 00:36:59,389 Epoch 28 Step: 144500 Batch Loss: 1.625833 Tokens per Sec: 20248, Lr: 0.000300\n", "2020-01-22 00:37:10,674 Epoch 28 Step: 144600 Batch Loss: 1.483836 Tokens per Sec: 20419, Lr: 0.000300\n", "2020-01-22 00:37:22,021 Epoch 28 Step: 144700 Batch Loss: 1.490466 Tokens per Sec: 20430, Lr: 0.000300\n", "2020-01-22 00:37:33,400 Epoch 28 Step: 144800 Batch Loss: 1.550925 Tokens per Sec: 20555, Lr: 0.000300\n", "2020-01-22 00:37:44,794 Epoch 28 Step: 144900 Batch Loss: 1.610388 Tokens per Sec: 20180, Lr: 0.000300\n", "2020-01-22 00:37:56,146 Epoch 28 Step: 145000 Batch Loss: 1.518907 Tokens per Sec: 20147, Lr: 0.000300\n", "2020-01-22 00:38:26,743 Example #0\n", "2020-01-22 00:38:26,744 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:38:26,744 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:38:26,744 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn aláìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:38:26,744 Example #1\n", "2020-01-22 00:38:26,744 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:38:26,744 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:38:26,744 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè rí i pé mo ti ń ṣiṣẹ́ dáadáa .\n", "2020-01-22 00:38:26,744 Example #2\n", "2020-01-22 00:38:26,744 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:38:26,744 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:38:26,744 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti àwọn èèyàn lọ ?\n", "2020-01-22 00:38:26,744 Example #3\n", "2020-01-22 00:38:26,745 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:38:26,745 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:38:26,745 \tHypothesis: Ó ní ìrírí tó pọ̀ ju tìẹ lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:38:26,745 Validation result (greedy) at epoch 28, step 145000: bleu: 28.35, loss: 42460.3203, ppl: 4.1588, duration: 30.5988s\n", "2020-01-22 00:38:38,099 Epoch 28 Step: 145100 Batch Loss: 1.437683 Tokens per Sec: 20475, Lr: 0.000300\n", "2020-01-22 00:38:49,478 Epoch 28 Step: 145200 Batch Loss: 1.541133 Tokens per Sec: 20519, Lr: 0.000300\n", "2020-01-22 00:39:00,872 Epoch 28 Step: 145300 Batch Loss: 1.448104 Tokens per Sec: 20418, Lr: 0.000300\n", "2020-01-22 00:39:12,213 Epoch 28 Step: 145400 Batch Loss: 1.593645 Tokens per Sec: 20237, Lr: 0.000300\n", "2020-01-22 00:39:23,462 Epoch 28 Step: 145500 Batch Loss: 1.561548 Tokens per Sec: 20133, Lr: 0.000300\n", "2020-01-22 00:39:34,852 Epoch 28 Step: 145600 Batch Loss: 1.563940 Tokens per Sec: 20804, Lr: 0.000300\n", "2020-01-22 00:39:46,139 Epoch 28 Step: 145700 Batch Loss: 1.676682 Tokens per Sec: 20322, Lr: 0.000300\n", "2020-01-22 00:39:57,525 Epoch 28 Step: 145800 Batch Loss: 1.648616 Tokens per Sec: 20360, Lr: 0.000300\n", "2020-01-22 00:40:08,806 Epoch 28 Step: 145900 Batch Loss: 1.488254 Tokens per Sec: 20516, Lr: 0.000300\n", "2020-01-22 00:40:20,138 Epoch 28 Step: 146000 Batch Loss: 1.582022 Tokens per Sec: 20409, Lr: 0.000300\n", "2020-01-22 00:40:50,744 Example #0\n", "2020-01-22 00:40:50,744 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:40:50,744 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:40:50,744 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:40:50,744 Example #1\n", "2020-01-22 00:40:50,744 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:40:50,744 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:40:50,744 \tHypothesis: Ní báyìí , mo ní láti wá ibi tí mo ti lè rí iṣẹ́ tó dára .\n", "2020-01-22 00:40:50,744 Example #2\n", "2020-01-22 00:40:50,744 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:40:50,744 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:40:50,744 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:40:50,744 Example #3\n", "2020-01-22 00:40:50,744 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:40:50,745 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:40:50,745 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:40:50,745 Validation result (greedy) at epoch 28, step 146000: bleu: 28.23, loss: 42515.2969, ppl: 4.1665, duration: 30.6062s\n", "2020-01-22 00:41:02,100 Epoch 28 Step: 146100 Batch Loss: 1.474584 Tokens per Sec: 20579, Lr: 0.000300\n", "2020-01-22 00:41:13,494 Epoch 28 Step: 146200 Batch Loss: 1.507394 Tokens per Sec: 20521, Lr: 0.000300\n", "2020-01-22 00:41:24,837 Epoch 28 Step: 146300 Batch Loss: 1.393283 Tokens per Sec: 20264, Lr: 0.000300\n", "2020-01-22 00:41:36,114 Epoch 28 Step: 146400 Batch Loss: 1.487510 Tokens per Sec: 20272, Lr: 0.000300\n", "2020-01-22 00:41:47,536 Epoch 28 Step: 146500 Batch Loss: 1.504894 Tokens per Sec: 20580, Lr: 0.000300\n", "2020-01-22 00:41:58,841 Epoch 28 Step: 146600 Batch Loss: 1.557386 Tokens per Sec: 20053, Lr: 0.000300\n", "2020-01-22 00:42:10,142 Epoch 28 Step: 146700 Batch Loss: 1.518736 Tokens per Sec: 20387, Lr: 0.000300\n", "2020-01-22 00:42:21,535 Epoch 28 Step: 146800 Batch Loss: 1.605439 Tokens per Sec: 20620, Lr: 0.000300\n", "2020-01-22 00:42:32,922 Epoch 28 Step: 146900 Batch Loss: 1.561886 Tokens per Sec: 20343, Lr: 0.000300\n", "2020-01-22 00:42:44,342 Epoch 28 Step: 147000 Batch Loss: 1.499902 Tokens per Sec: 20263, Lr: 0.000300\n", "2020-01-22 00:43:14,944 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:43:14,945 Saving new checkpoint.\n", "2020-01-22 00:43:15,197 Example #0\n", "2020-01-22 00:43:15,197 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:43:15,197 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:43:15,197 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:43:15,197 Example #1\n", "2020-01-22 00:43:15,197 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:43:15,197 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:43:15,197 \tHypothesis: Ní báyìí , mo ní láti rí i pé iṣẹ́ tó dára gan - an ni .\n", "2020-01-22 00:43:15,197 Example #2\n", "2020-01-22 00:43:15,197 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:43:15,198 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:43:15,198 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:43:15,198 Example #3\n", "2020-01-22 00:43:15,198 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:43:15,198 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:43:15,198 \tHypothesis: Ó ní ìrírí tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:43:15,198 Validation result (greedy) at epoch 28, step 147000: bleu: 28.90, loss: 42285.5859, ppl: 4.1345, duration: 30.8561s\n", "2020-01-22 00:43:19,741 Epoch 28: total training loss 8106.96\n", "2020-01-22 00:43:19,741 EPOCH 29\n", "2020-01-22 00:43:27,049 Epoch 29 Step: 147100 Batch Loss: 1.533235 Tokens per Sec: 19349, Lr: 0.000300\n", "2020-01-22 00:43:38,404 Epoch 29 Step: 147200 Batch Loss: 1.531116 Tokens per Sec: 20408, Lr: 0.000300\n", "2020-01-22 00:43:49,724 Epoch 29 Step: 147300 Batch Loss: 1.513816 Tokens per Sec: 20575, Lr: 0.000300\n", "2020-01-22 00:44:01,062 Epoch 29 Step: 147400 Batch Loss: 1.492095 Tokens per Sec: 20427, Lr: 0.000300\n", "2020-01-22 00:44:12,415 Epoch 29 Step: 147500 Batch Loss: 1.549019 Tokens per Sec: 20343, Lr: 0.000300\n", "2020-01-22 00:44:23,834 Epoch 29 Step: 147600 Batch Loss: 1.515715 Tokens per Sec: 20589, Lr: 0.000300\n", "2020-01-22 00:44:35,151 Epoch 29 Step: 147700 Batch Loss: 1.646796 Tokens per Sec: 20489, Lr: 0.000300\n", "2020-01-22 00:44:46,520 Epoch 29 Step: 147800 Batch Loss: 1.497103 Tokens per Sec: 20344, Lr: 0.000300\n", "2020-01-22 00:44:57,904 Epoch 29 Step: 147900 Batch Loss: 1.602167 Tokens per Sec: 20490, Lr: 0.000300\n", "2020-01-22 00:45:09,164 Epoch 29 Step: 148000 Batch Loss: 1.603961 Tokens per Sec: 20239, Lr: 0.000300\n", "2020-01-22 00:45:39,782 Example #0\n", "2020-01-22 00:45:39,782 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:45:39,782 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:45:39,782 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:45:39,782 Example #1\n", "2020-01-22 00:45:39,782 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:45:39,782 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:45:39,782 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó dára gan - an .\n", "2020-01-22 00:45:39,783 Example #2\n", "2020-01-22 00:45:39,783 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:45:39,783 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:45:39,783 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:45:39,783 Example #3\n", "2020-01-22 00:45:39,783 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:45:39,783 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:45:39,783 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:45:39,783 Validation result (greedy) at epoch 29, step 148000: bleu: 28.73, loss: 42406.0742, ppl: 4.1512, duration: 30.6187s\n", "2020-01-22 00:45:51,222 Epoch 29 Step: 148100 Batch Loss: 1.654364 Tokens per Sec: 20826, Lr: 0.000300\n", "2020-01-22 00:46:02,579 Epoch 29 Step: 148200 Batch Loss: 1.673305 Tokens per Sec: 20235, Lr: 0.000300\n", "2020-01-22 00:46:13,908 Epoch 29 Step: 148300 Batch Loss: 1.574214 Tokens per Sec: 20626, Lr: 0.000300\n", "2020-01-22 00:46:25,224 Epoch 29 Step: 148400 Batch Loss: 1.564210 Tokens per Sec: 20150, Lr: 0.000300\n", "2020-01-22 00:46:36,604 Epoch 29 Step: 148500 Batch Loss: 1.525182 Tokens per Sec: 20639, Lr: 0.000300\n", "2020-01-22 00:46:47,945 Epoch 29 Step: 148600 Batch Loss: 1.611911 Tokens per Sec: 20231, Lr: 0.000300\n", "2020-01-22 00:46:59,344 Epoch 29 Step: 148700 Batch Loss: 1.447963 Tokens per Sec: 20590, Lr: 0.000300\n", "2020-01-22 00:47:10,584 Epoch 29 Step: 148800 Batch Loss: 1.537544 Tokens per Sec: 20191, Lr: 0.000300\n", "2020-01-22 00:47:21,934 Epoch 29 Step: 148900 Batch Loss: 1.526670 Tokens per Sec: 20709, Lr: 0.000300\n", "2020-01-22 00:47:33,193 Epoch 29 Step: 149000 Batch Loss: 1.515710 Tokens per Sec: 20135, Lr: 0.000300\n", "2020-01-22 00:48:03,752 Example #0\n", "2020-01-22 00:48:03,752 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:48:03,752 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:48:03,753 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:48:03,753 Example #1\n", "2020-01-22 00:48:03,753 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:48:03,753 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:48:03,753 \tHypothesis: Ní báyìí , mo ti wá rí i pé iṣẹ́ tó dára jù lọ ni mo ń ṣe .\n", "2020-01-22 00:48:03,753 Example #2\n", "2020-01-22 00:48:03,753 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:48:03,753 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:48:03,753 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:48:03,753 Example #3\n", "2020-01-22 00:48:03,753 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:48:03,753 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:48:03,753 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ní sùúrù láti rìn nítòsí rẹ .\n", "2020-01-22 00:48:03,754 Validation result (greedy) at epoch 29, step 149000: bleu: 28.90, loss: 42385.6875, ppl: 4.1484, duration: 30.5599s\n", "2020-01-22 00:48:15,014 Epoch 29 Step: 149100 Batch Loss: 1.429205 Tokens per Sec: 20130, Lr: 0.000300\n", "2020-01-22 00:48:26,256 Epoch 29 Step: 149200 Batch Loss: 1.690994 Tokens per Sec: 20100, Lr: 0.000300\n", "2020-01-22 00:48:37,538 Epoch 29 Step: 149300 Batch Loss: 1.573414 Tokens per Sec: 20405, Lr: 0.000300\n", "2020-01-22 00:48:48,869 Epoch 29 Step: 149400 Batch Loss: 1.381088 Tokens per Sec: 20179, Lr: 0.000300\n", "2020-01-22 00:49:00,199 Epoch 29 Step: 149500 Batch Loss: 1.468224 Tokens per Sec: 20082, Lr: 0.000300\n", "2020-01-22 00:49:11,522 Epoch 29 Step: 149600 Batch Loss: 1.626847 Tokens per Sec: 20530, Lr: 0.000300\n", "2020-01-22 00:49:22,785 Epoch 29 Step: 149700 Batch Loss: 1.639727 Tokens per Sec: 20113, Lr: 0.000300\n", "2020-01-22 00:49:34,109 Epoch 29 Step: 149800 Batch Loss: 1.678675 Tokens per Sec: 20240, Lr: 0.000300\n", "2020-01-22 00:49:45,482 Epoch 29 Step: 149900 Batch Loss: 1.432254 Tokens per Sec: 20536, Lr: 0.000300\n", "2020-01-22 00:49:56,834 Epoch 29 Step: 150000 Batch Loss: 1.633874 Tokens per Sec: 20444, Lr: 0.000300\n", "2020-01-22 00:50:27,448 Example #0\n", "2020-01-22 00:50:27,449 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:50:27,449 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:50:27,449 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn tí a kò lẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:50:27,449 Example #1\n", "2020-01-22 00:50:27,449 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:50:27,449 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:50:27,449 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 00:50:27,449 Example #2\n", "2020-01-22 00:50:27,449 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:50:27,449 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:50:27,449 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:50:27,449 Example #3\n", "2020-01-22 00:50:27,449 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:50:27,449 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:50:27,449 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:50:27,449 Validation result (greedy) at epoch 29, step 150000: bleu: 28.91, loss: 42512.1484, ppl: 4.1660, duration: 30.6153s\n", "2020-01-22 00:50:38,842 Epoch 29 Step: 150100 Batch Loss: 1.683658 Tokens per Sec: 20548, Lr: 0.000300\n", "2020-01-22 00:50:50,261 Epoch 29 Step: 150200 Batch Loss: 1.760888 Tokens per Sec: 20407, Lr: 0.000300\n", "2020-01-22 00:51:01,615 Epoch 29 Step: 150300 Batch Loss: 1.570402 Tokens per Sec: 20522, Lr: 0.000300\n", "2020-01-22 00:51:12,984 Epoch 29 Step: 150400 Batch Loss: 1.558506 Tokens per Sec: 20287, Lr: 0.000300\n", "2020-01-22 00:51:24,336 Epoch 29 Step: 150500 Batch Loss: 1.789441 Tokens per Sec: 20414, Lr: 0.000300\n", "2020-01-22 00:51:35,630 Epoch 29 Step: 150600 Batch Loss: 1.616312 Tokens per Sec: 20062, Lr: 0.000300\n", "2020-01-22 00:51:46,951 Epoch 29 Step: 150700 Batch Loss: 1.453522 Tokens per Sec: 20286, Lr: 0.000300\n", "2020-01-22 00:51:58,284 Epoch 29 Step: 150800 Batch Loss: 1.482880 Tokens per Sec: 20276, Lr: 0.000300\n", "2020-01-22 00:52:09,634 Epoch 29 Step: 150900 Batch Loss: 1.700957 Tokens per Sec: 20402, Lr: 0.000300\n", "2020-01-22 00:52:20,960 Epoch 29 Step: 151000 Batch Loss: 1.745059 Tokens per Sec: 20191, Lr: 0.000300\n", "2020-01-22 00:52:51,544 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:52:51,544 Saving new checkpoint.\n", "2020-01-22 00:52:51,789 Example #0\n", "2020-01-22 00:52:51,789 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:52:51,790 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:52:51,790 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:52:51,790 Example #1\n", "2020-01-22 00:52:51,790 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:52:51,790 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:52:51,790 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè rí i pé iṣẹ́ tó dára jù ni .\n", "2020-01-22 00:52:51,790 Example #2\n", "2020-01-22 00:52:51,790 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:52:51,790 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:52:51,790 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:52:51,790 Example #3\n", "2020-01-22 00:52:51,790 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:52:51,790 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:52:51,791 \tHypothesis: Ó ní ìrírí tó pọ̀ ju èyí tó o lè ṣe lọ , àmọ́ ó ní sùúrù láti máa rìn nítòsí rẹ .\n", "2020-01-22 00:52:51,791 Validation result (greedy) at epoch 29, step 151000: bleu: 28.55, loss: 42234.7070, ppl: 4.1274, duration: 30.8309s\n", "2020-01-22 00:53:03,053 Epoch 29 Step: 151100 Batch Loss: 1.556375 Tokens per Sec: 20056, Lr: 0.000300\n", "2020-01-22 00:53:14,372 Epoch 29 Step: 151200 Batch Loss: 1.497556 Tokens per Sec: 20095, Lr: 0.000300\n", "2020-01-22 00:53:25,775 Epoch 29 Step: 151300 Batch Loss: 1.572677 Tokens per Sec: 20509, Lr: 0.000300\n", "2020-01-22 00:53:37,209 Epoch 29 Step: 151400 Batch Loss: 1.234136 Tokens per Sec: 20303, Lr: 0.000300\n", "2020-01-22 00:53:48,457 Epoch 29 Step: 151500 Batch Loss: 1.645700 Tokens per Sec: 20530, Lr: 0.000300\n", "2020-01-22 00:53:59,753 Epoch 29 Step: 151600 Batch Loss: 1.544469 Tokens per Sec: 20396, Lr: 0.000300\n", "2020-01-22 00:54:11,003 Epoch 29 Step: 151700 Batch Loss: 1.199791 Tokens per Sec: 20005, Lr: 0.000300\n", "2020-01-22 00:54:22,459 Epoch 29 Step: 151800 Batch Loss: 1.345740 Tokens per Sec: 20942, Lr: 0.000300\n", "2020-01-22 00:54:33,785 Epoch 29 Step: 151900 Batch Loss: 1.511720 Tokens per Sec: 20338, Lr: 0.000300\n", "2020-01-22 00:54:45,130 Epoch 29 Step: 152000 Batch Loss: 1.502402 Tokens per Sec: 20315, Lr: 0.000300\n", "2020-01-22 00:55:15,713 Example #0\n", "2020-01-22 00:55:15,713 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:55:15,713 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:55:15,713 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fi í fúnni gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:55:15,713 Example #1\n", "2020-01-22 00:55:15,714 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:55:15,714 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:55:15,714 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè ṣe é .\n", "2020-01-22 00:55:15,714 Example #2\n", "2020-01-22 00:55:15,714 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:55:15,714 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:55:15,714 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:55:15,714 Example #3\n", "2020-01-22 00:55:15,714 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:55:15,714 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:55:15,714 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní àwọn nǹkan tó pọ̀ ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:55:15,714 Validation result (greedy) at epoch 29, step 152000: bleu: 28.40, loss: 42299.1367, ppl: 4.1364, duration: 30.5844s\n", "2020-01-22 00:55:26,967 Epoch 29 Step: 152100 Batch Loss: 1.514800 Tokens per Sec: 20146, Lr: 0.000300\n", "2020-01-22 00:55:38,341 Epoch 29 Step: 152200 Batch Loss: 1.642169 Tokens per Sec: 20325, Lr: 0.000300\n", "2020-01-22 00:55:49,355 Epoch 29: total training loss 8084.34\n", "2020-01-22 00:55:49,356 EPOCH 30\n", "2020-01-22 00:55:50,201 Epoch 30 Step: 152300 Batch Loss: 1.467047 Tokens per Sec: 6418, Lr: 0.000300\n", "2020-01-22 00:56:01,496 Epoch 30 Step: 152400 Batch Loss: 1.609743 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-22 00:56:12,951 Epoch 30 Step: 152500 Batch Loss: 1.207421 Tokens per Sec: 20953, Lr: 0.000300\n", "2020-01-22 00:56:24,184 Epoch 30 Step: 152600 Batch Loss: 1.468427 Tokens per Sec: 19989, Lr: 0.000300\n", "2020-01-22 00:56:35,466 Epoch 30 Step: 152700 Batch Loss: 1.589602 Tokens per Sec: 20447, Lr: 0.000300\n", "2020-01-22 00:56:46,743 Epoch 30 Step: 152800 Batch Loss: 1.532340 Tokens per Sec: 20022, Lr: 0.000300\n", "2020-01-22 00:56:58,014 Epoch 30 Step: 152900 Batch Loss: 1.584159 Tokens per Sec: 20381, Lr: 0.000300\n", "2020-01-22 00:57:09,372 Epoch 30 Step: 153000 Batch Loss: 1.471944 Tokens per Sec: 20548, Lr: 0.000300\n", "2020-01-22 00:57:39,975 Hooray! New best validation result [ppl]!\n", "2020-01-22 00:57:39,975 Saving new checkpoint.\n", "2020-01-22 00:57:40,238 Example #0\n", "2020-01-22 00:57:40,238 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 00:57:40,239 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 00:57:40,239 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 00:57:40,239 Example #1\n", "2020-01-22 00:57:40,239 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 00:57:40,239 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 00:57:40,239 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 00:57:40,239 Example #2\n", "2020-01-22 00:57:40,239 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 00:57:40,239 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 00:57:40,239 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 00:57:40,239 Example #3\n", "2020-01-22 00:57:40,239 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 00:57:40,239 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 00:57:40,240 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún jẹ́ amí ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 00:57:40,240 Validation result (greedy) at epoch 30, step 153000: bleu: 28.46, loss: 42104.9648, ppl: 4.1095, duration: 30.8671s\n", "2020-01-22 00:57:51,711 Epoch 30 Step: 153100 Batch Loss: 1.680963 Tokens per Sec: 20768, Lr: 0.000300\n", "2020-01-22 00:58:03,004 Epoch 30 Step: 153200 Batch Loss: 1.507912 Tokens per Sec: 20001, Lr: 0.000300\n", "2020-01-22 00:58:14,371 Epoch 30 Step: 153300 Batch Loss: 1.457389 Tokens per Sec: 20462, Lr: 0.000300\n", "2020-01-22 00:58:25,716 Epoch 30 Step: 153400 Batch Loss: 1.538223 Tokens per Sec: 20381, Lr: 0.000300\n", "2020-01-22 00:58:37,049 Epoch 30 Step: 153500 Batch Loss: 1.508120 Tokens per Sec: 20258, Lr: 0.000300\n", "2020-01-22 00:58:48,361 Epoch 30 Step: 153600 Batch Loss: 1.537387 Tokens per Sec: 20468, Lr: 0.000300\n", "2020-01-22 00:58:59,702 Epoch 30 Step: 153700 Batch Loss: 1.603632 Tokens per Sec: 20351, Lr: 0.000300\n", "2020-01-22 00:59:11,056 Epoch 30 Step: 153800 Batch Loss: 1.587223 Tokens per Sec: 20591, Lr: 0.000300\n", "2020-01-22 00:59:22,387 Epoch 30 Step: 153900 Batch Loss: 1.705481 Tokens per Sec: 20188, Lr: 0.000300\n", "2020-01-22 00:59:33,725 Epoch 30 Step: 154000 Batch Loss: 1.551016 Tokens per Sec: 20477, Lr: 0.000300\n", "2020-01-22 01:00:04,330 Example #0\n", "2020-01-22 01:00:04,331 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 01:00:04,331 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 01:00:04,331 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 01:00:04,331 Example #1\n", "2020-01-22 01:00:04,331 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 01:00:04,331 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 01:00:04,331 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó bójú mu .\n", "2020-01-22 01:00:04,331 Example #2\n", "2020-01-22 01:00:04,331 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 01:00:04,331 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 01:00:04,331 \tHypothesis: Ǹjẹ́ mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 01:00:04,331 Example #3\n", "2020-01-22 01:00:04,332 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 01:00:04,332 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 01:00:04,332 \tHypothesis: Ó ní ìrírí tó pọ̀ tó , ó sì ní fífani mọ́ra ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 01:00:04,332 Validation result (greedy) at epoch 30, step 154000: bleu: 28.99, loss: 42266.5508, ppl: 4.1318, duration: 30.6061s\n", "2020-01-22 01:00:15,682 Epoch 30 Step: 154100 Batch Loss: 1.561258 Tokens per Sec: 20329, Lr: 0.000300\n", "2020-01-22 01:00:27,045 Epoch 30 Step: 154200 Batch Loss: 1.478929 Tokens per Sec: 20560, Lr: 0.000300\n", "2020-01-22 01:00:38,436 Epoch 30 Step: 154300 Batch Loss: 1.595410 Tokens per Sec: 20500, Lr: 0.000300\n", "2020-01-22 01:00:49,860 Epoch 30 Step: 154400 Batch Loss: 1.694543 Tokens per Sec: 20589, Lr: 0.000300\n", "2020-01-22 01:01:01,279 Epoch 30 Step: 154500 Batch Loss: 1.628634 Tokens per Sec: 20572, Lr: 0.000300\n", "2020-01-22 01:01:12,631 Epoch 30 Step: 154600 Batch Loss: 1.440257 Tokens per Sec: 20203, Lr: 0.000300\n", "2020-01-22 01:01:24,028 Epoch 30 Step: 154700 Batch Loss: 1.402882 Tokens per Sec: 20419, Lr: 0.000300\n", "2020-01-22 01:01:35,331 Epoch 30 Step: 154800 Batch Loss: 1.427124 Tokens per Sec: 20696, Lr: 0.000300\n", "2020-01-22 01:01:46,789 Epoch 30 Step: 154900 Batch Loss: 1.510323 Tokens per Sec: 20639, Lr: 0.000300\n", "2020-01-22 01:01:58,174 Epoch 30 Step: 155000 Batch Loss: 1.531672 Tokens per Sec: 20243, Lr: 0.000300\n", "2020-01-22 01:02:28,789 Example #0\n", "2020-01-22 01:02:28,790 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 01:02:28,790 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 01:02:28,790 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 01:02:28,790 Example #1\n", "2020-01-22 01:02:28,790 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 01:02:28,790 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 01:02:28,790 \tHypothesis: Ní báyìí , mo ní láti wá iṣẹ́ tó máa jẹ́ kí n lè ṣe dáadáa .\n", "2020-01-22 01:02:28,790 Example #2\n", "2020-01-22 01:02:28,790 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 01:02:28,790 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 01:02:28,790 \tHypothesis: Ṣé mo máa ń mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àti pẹ̀lú àwọn èèyàn lọ ?\n", "2020-01-22 01:02:28,790 Example #3\n", "2020-01-22 01:02:28,791 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 01:02:28,791 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 01:02:28,791 \tHypothesis: Ó ní ìrírí àti fídíò tó ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 01:02:28,791 Validation result (greedy) at epoch 30, step 155000: bleu: 28.81, loss: 42186.9102, ppl: 4.1208, duration: 30.6165s\n", "2020-01-22 01:02:40,084 Epoch 30 Step: 155100 Batch Loss: 1.401961 Tokens per Sec: 20195, Lr: 0.000300\n", "2020-01-22 01:02:51,399 Epoch 30 Step: 155200 Batch Loss: 1.382335 Tokens per Sec: 20570, Lr: 0.000300\n", "2020-01-22 01:03:02,746 Epoch 30 Step: 155300 Batch Loss: 1.609547 Tokens per Sec: 20508, Lr: 0.000300\n", "2020-01-22 01:03:14,008 Epoch 30 Step: 155400 Batch Loss: 1.669362 Tokens per Sec: 20276, Lr: 0.000300\n", "2020-01-22 01:03:25,352 Epoch 30 Step: 155500 Batch Loss: 1.671473 Tokens per Sec: 20044, Lr: 0.000300\n", "2020-01-22 01:03:36,594 Epoch 30 Step: 155600 Batch Loss: 1.339703 Tokens per Sec: 20091, Lr: 0.000300\n", "2020-01-22 01:03:47,968 Epoch 30 Step: 155700 Batch Loss: 1.638994 Tokens per Sec: 20275, Lr: 0.000300\n", "2020-01-22 01:03:59,346 Epoch 30 Step: 155800 Batch Loss: 1.599529 Tokens per Sec: 20762, Lr: 0.000300\n", "2020-01-22 01:04:10,650 Epoch 30 Step: 155900 Batch Loss: 1.604927 Tokens per Sec: 20376, Lr: 0.000300\n", "2020-01-22 01:04:22,047 Epoch 30 Step: 156000 Batch Loss: 1.519653 Tokens per Sec: 20335, Lr: 0.000300\n", "2020-01-22 01:04:52,667 Example #0\n", "2020-01-22 01:04:52,668 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 01:04:52,668 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 01:04:52,668 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un gẹ́gẹ́ bí ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 01:04:52,668 Example #1\n", "2020-01-22 01:04:52,668 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 01:04:52,668 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 01:04:52,668 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó dára gan - an .\n", "2020-01-22 01:04:52,668 Example #2\n", "2020-01-22 01:04:52,668 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 01:04:52,668 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 01:04:52,668 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 01:04:52,668 Example #3\n", "2020-01-22 01:04:52,668 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 01:04:52,668 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 01:04:52,668 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 01:04:52,668 Validation result (greedy) at epoch 30, step 156000: bleu: 28.78, loss: 42210.5625, ppl: 4.1241, duration: 30.6210s\n", "2020-01-22 01:05:04,035 Epoch 30 Step: 156100 Batch Loss: 1.608655 Tokens per Sec: 20561, Lr: 0.000300\n", "2020-01-22 01:05:15,340 Epoch 30 Step: 156200 Batch Loss: 1.295615 Tokens per Sec: 20083, Lr: 0.000300\n", "2020-01-22 01:05:26,698 Epoch 30 Step: 156300 Batch Loss: 1.616249 Tokens per Sec: 20656, Lr: 0.000300\n", "2020-01-22 01:05:37,991 Epoch 30 Step: 156400 Batch Loss: 1.720479 Tokens per Sec: 20162, Lr: 0.000300\n", "2020-01-22 01:05:49,242 Epoch 30 Step: 156500 Batch Loss: 1.633051 Tokens per Sec: 19870, Lr: 0.000300\n", "2020-01-22 01:06:00,571 Epoch 30 Step: 156600 Batch Loss: 1.557210 Tokens per Sec: 20438, Lr: 0.000300\n", "2020-01-22 01:06:11,911 Epoch 30 Step: 156700 Batch Loss: 1.515940 Tokens per Sec: 20427, Lr: 0.000300\n", "2020-01-22 01:06:23,260 Epoch 30 Step: 156800 Batch Loss: 1.405811 Tokens per Sec: 20163, Lr: 0.000300\n", "2020-01-22 01:06:34,539 Epoch 30 Step: 156900 Batch Loss: 1.640501 Tokens per Sec: 20003, Lr: 0.000300\n", "2020-01-22 01:06:45,921 Epoch 30 Step: 157000 Batch Loss: 1.609489 Tokens per Sec: 20407, Lr: 0.000300\n", "2020-01-22 01:07:16,444 Example #0\n", "2020-01-22 01:07:16,444 \tSource: He is the Source of life , the One giving it as an undeserved gift through Christ .\n", "2020-01-22 01:07:16,444 \tReference: Òun ni Orísun ìyè , Ẹni tí ń fi ìyè fúnni gẹ́gẹ́ bí ẹbùn tí a kò lẹ́tọ̀ọ́ sí nípasẹ̀ Kristi .\n", "2020-01-22 01:07:16,444 \tHypothesis: Òun ni Orísun ìyè , Ẹni tí ń fún un ní ẹ̀bùn àìlẹ́tọ̀ọ́sí nípasẹ̀ Kristi .\n", "2020-01-22 01:07:16,445 Example #1\n", "2020-01-22 01:07:16,445 \tSource: Now I had to find a legitimate line of work .\n", "2020-01-22 01:07:16,445 \tReference: Torí náà , mo ní láti wá iṣẹ́ gidi .\n", "2020-01-22 01:07:16,445 \tHypothesis: Ní báyìí , mo ní láti rí iṣẹ́ tó dára gan - an .\n", "2020-01-22 01:07:16,445 Example #2\n", "2020-01-22 01:07:16,445 \tSource: Do I value material things more than my relationship with Jehovah and with people ?\n", "2020-01-22 01:07:16,445 \tReference: Ṣé àwọn nǹkan tara ló jẹ mí lógún jù àbí àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn ?\n", "2020-01-22 01:07:16,445 \tHypothesis: Ṣé mo mọyì àwọn nǹkan tara ju àjọṣe mi pẹ̀lú Jèhófà àtàwọn èèyàn lọ ?\n", "2020-01-22 01:07:16,445 Example #3\n", "2020-01-22 01:07:16,445 \tSource: He has far more experience and stamina than you do , but he patiently walks near you .\n", "2020-01-22 01:07:16,445 \tReference: Ẹni tẹ́ ẹ jọ ń lọ yìí mọ ọ̀nà yẹn dáadáa .\n", "2020-01-22 01:07:16,445 \tHypothesis: Ó ní ìrírí tó pọ̀ tó sì tún lágbára ju bó o ṣe ń ṣe lọ , àmọ́ ó ń fi sùúrù rìn nítòsí rẹ .\n", "2020-01-22 01:07:16,445 Validation result (greedy) at epoch 30, step 157000: bleu: 29.05, loss: 42144.2109, ppl: 4.1149, duration: 30.5238s\n", "2020-01-22 01:07:27,821 Epoch 30 Step: 157100 Batch Loss: 1.513122 Tokens per Sec: 20610, Lr: 0.000300\n", "2020-01-22 01:07:39,102 Epoch 30 Step: 157200 Batch Loss: 1.661358 Tokens per Sec: 20320, Lr: 0.000300\n", "2020-01-22 01:07:50,363 Epoch 30 Step: 157300 Batch Loss: 1.825890 Tokens per Sec: 20086, Lr: 0.000300\n", "2020-01-22 01:08:01,659 Epoch 30 Step: 157400 Batch Loss: 1.565933 Tokens per Sec: 20291, Lr: 0.000300\n", "2020-01-22 01:08:13,179 Epoch 30 Step: 157500 Batch Loss: 1.559653 Tokens per Sec: 20906, Lr: 0.000300\n", "2020-01-22 01:08:18,824 Epoch 30: total training loss 8041.85\n", "2020-01-22 01:08:18,824 Training ended after 30 epochs.\n", "2020-01-22 01:08:18,824 Best validation result (greedy) at step 153000: 4.11 ppl.\n", "2020-01-22 01:08:49,231 dev bleu: 29.15 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-22 01:08:49,232 Translations saved to: models/enyo_transformer/00153000.hyps.dev\n", "2020-01-22 01:09:28,175 test bleu: 36.74 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-22 01:09:28,177 Translations saved to: models/enyo_transformer/00153000.hyps.test\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "MBoDS09JM807", "outputId": "f18c7a7e-accb-452d-dc55-aea5e3cb8739", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "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": 17, "outputs": [ { "output_type": "stream", "text": [ "cp: cannot create symbolic link '/content/drive/My Drive/masakhane/en-yo-baseline/models/enyo_transformer/best.ckpt': Operation not supported\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "Sj96MCK35AQ3", "colab_type": "code", "colab": {} }, "source": [ "# Copy the created models from the notebook storage to google drive for persistant storage \n", "!cp joeynmt/models/${src}${tgt}_transformer/best.ckpt \"$gdrive_path/models/${src}${tgt}_transformer/\"" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "id": "w_yXIFhj5Ifo", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 607 }, "outputId": "144fb800-b5a7-4288-ebbf-445be16ca4b0" }, "source": [ "!ls joeynmt/models/${src}${tgt}_transformer" ], "execution_count": 21, "outputs": [ { "output_type": "stream", "text": [ "00153000.hyps.dev 128000.hyps 156000.hyps 45000.hyps 76000.hyps\n", "00153000.hyps.test 129000.hyps 157000.hyps 46000.hyps 77000.hyps\n", "100000.hyps\t 130000.hyps 16000.hyps 47000.hyps 78000.hyps\n", "10000.hyps\t 13000.hyps\t 17000.hyps 48000.hyps 79000.hyps\n", "1000.hyps\t 131000.hyps 18000.hyps 49000.hyps 80000.hyps\n", "101000.hyps\t 132000.hyps 19000.hyps 50000.hyps 8000.hyps\n", "102000.hyps\t 133000.hyps 20000.hyps 5000.hyps 81000.hyps\n", "103000.hyps\t 134000.hyps 2000.hyps 51000.hyps 82000.hyps\n", "104000.hyps\t 135000.hyps 21000.hyps 52000.hyps 83000.hyps\n", "105000.hyps\t 136000.hyps 22000.hyps 53000.hyps 84000.hyps\n", "106000.hyps\t 137000.hyps 23000.hyps 54000.hyps 85000.hyps\n", "107000.hyps\t 138000.hyps 24000.hyps 55000.hyps 86000.hyps\n", "108000.hyps\t 139000.hyps 25000.hyps 56000.hyps 87000.hyps\n", "109000.hyps\t 140000.hyps 26000.hyps 57000.hyps 88000.hyps\n", "110000.hyps\t 14000.hyps\t 27000.hyps 58000.hyps 89000.hyps\n", "11000.hyps\t 141000.hyps 28000.hyps 59000.hyps 90000.hyps\n", "111000.hyps\t 142000.hyps 29000.hyps 60000.hyps 9000.hyps\n", "112000.hyps\t 143000.hyps 30000.hyps 6000.hyps 91000.hyps\n", "113000.hyps\t 144000.hyps 3000.hyps 61000.hyps 92000.hyps\n", "114000.hyps\t 145000.hyps 31000.hyps 62000.hyps 93000.hyps\n", "115000.hyps\t 146000.hyps 32000.hyps 63000.hyps 94000.hyps\n", "116000.hyps\t 147000.ckpt 33000.hyps 64000.hyps 95000.hyps\n", "117000.hyps\t 147000.hyps 34000.hyps 65000.hyps 96000.hyps\n", "118000.hyps\t 148000.hyps 35000.hyps 66000.hyps 97000.hyps\n", "119000.hyps\t 149000.hyps 36000.hyps 67000.hyps 98000.hyps\n", "120000.hyps\t 150000.hyps 37000.hyps 68000.hyps 99000.hyps\n", "12000.hyps\t 15000.hyps\t 38000.hyps 69000.hyps best.ckpt\n", "121000.hyps\t 151000.ckpt 39000.hyps 70000.hyps config.yaml\n", "122000.hyps\t 151000.hyps 40000.hyps 7000.hyps src_vocab.txt\n", "123000.hyps\t 152000.hyps 4000.hyps 71000.hyps tensorboard\n", "124000.hyps\t 153000.ckpt 41000.hyps 72000.hyps train.log\n", "125000.hyps\t 153000.hyps 42000.hyps 73000.hyps trg_vocab.txt\n", "126000.hyps\t 154000.hyps 43000.hyps 74000.hyps validations.txt\n", "127000.hyps\t 155000.hyps 44000.hyps 75000.hyps\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "n94wlrCjVc17", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "outputId": "950a70be-13fe-4a64-d18d-1143d34fc318" }, "source": [ "# Output our validation accuracy\n", "! cat \"$gdrive_path/models/${src}${tgt}_transformer/validations.txt\"" ], "execution_count": 18, "outputs": [ { "output_type": "stream", "text": [ "Steps: 1000\tLoss: 117977.85156\tPPL: 52.46003\tbleu: 1.92549\tLR: 0.00030000\t*\n", "Steps: 2000\tLoss: 101346.57812\tPPL: 30.01824\tbleu: 3.06816\tLR: 0.00030000\t*\n", "Steps: 3000\tLoss: 92669.57812\tPPL: 22.43344\tbleu: 4.42824\tLR: 0.00030000\t*\n", "Steps: 4000\tLoss: 86711.90625\tPPL: 18.36740\tbleu: 5.91675\tLR: 0.00030000\t*\n", "Steps: 5000\tLoss: 81824.30469\tPPL: 15.58828\tbleu: 6.93238\tLR: 0.00030000\t*\n", "Steps: 6000\tLoss: 78232.50781\tPPL: 13.81779\tbleu: 9.43597\tLR: 0.00030000\t*\n", "Steps: 7000\tLoss: 75421.18750\tPPL: 12.57351\tbleu: 10.37887\tLR: 0.00030000\t*\n", "Steps: 8000\tLoss: 73077.54688\tPPL: 11.62229\tbleu: 11.31609\tLR: 0.00030000\t*\n", "Steps: 9000\tLoss: 71054.27344\tPPL: 10.85919\tbleu: 12.22971\tLR: 0.00030000\t*\n", "Steps: 10000\tLoss: 68705.55469\tPPL: 10.03596\tbleu: 13.17324\tLR: 0.00030000\t*\n", "Steps: 11000\tLoss: 67027.50781\tPPL: 9.48631\tbleu: 13.56979\tLR: 0.00030000\t*\n", "Steps: 12000\tLoss: 65423.91406\tPPL: 8.98919\tbleu: 14.97548\tLR: 0.00030000\t*\n", "Steps: 13000\tLoss: 63915.15625\tPPL: 8.54529\tbleu: 15.97992\tLR: 0.00030000\t*\n", "Steps: 14000\tLoss: 62741.18359\tPPL: 8.21510\tbleu: 16.35993\tLR: 0.00030000\t*\n", "Steps: 15000\tLoss: 61602.16797\tPPL: 7.90695\tbleu: 16.82153\tLR: 0.00030000\t*\n", "Steps: 16000\tLoss: 60576.63672\tPPL: 7.63940\tbleu: 17.91397\tLR: 0.00030000\t*\n", "Steps: 17000\tLoss: 59747.39844\tPPL: 7.42969\tbleu: 18.19724\tLR: 0.00030000\t*\n", "Steps: 18000\tLoss: 58933.82031\tPPL: 7.22955\tbleu: 18.91881\tLR: 0.00030000\t*\n", "Steps: 19000\tLoss: 58377.81641\tPPL: 7.09587\tbleu: 18.94277\tLR: 0.00030000\t*\n", "Steps: 20000\tLoss: 57897.02344\tPPL: 6.98228\tbleu: 19.63297\tLR: 0.00030000\t*\n", "Steps: 21000\tLoss: 57067.49609\tPPL: 6.79054\tbleu: 20.12734\tLR: 0.00030000\t*\n", "Steps: 22000\tLoss: 56622.18750\tPPL: 6.68980\tbleu: 20.12548\tLR: 0.00030000\t*\n", "Steps: 23000\tLoss: 55844.06250\tPPL: 6.51733\tbleu: 20.95755\tLR: 0.00030000\t*\n", "Steps: 24000\tLoss: 55633.84375\tPPL: 6.47151\tbleu: 20.70262\tLR: 0.00030000\t*\n", "Steps: 25000\tLoss: 54900.34766\tPPL: 6.31412\tbleu: 21.53374\tLR: 0.00030000\t*\n", "Steps: 26000\tLoss: 54481.28516\tPPL: 6.22592\tbleu: 21.15376\tLR: 0.00030000\t*\n", "Steps: 27000\tLoss: 54129.07031\tPPL: 6.15275\tbleu: 21.67270\tLR: 0.00030000\t*\n", "Steps: 28000\tLoss: 53716.07031\tPPL: 6.06805\tbleu: 21.65251\tLR: 0.00030000\t*\n", "Steps: 29000\tLoss: 53442.40625\tPPL: 6.01256\tbleu: 22.02109\tLR: 0.00030000\t*\n", "Steps: 30000\tLoss: 53115.03125\tPPL: 5.94685\tbleu: 21.72955\tLR: 0.00030000\t*\n", "Steps: 31000\tLoss: 52551.77344\tPPL: 5.83548\tbleu: 22.38059\tLR: 0.00030000\t*\n", "Steps: 32000\tLoss: 52423.50000\tPPL: 5.81040\tbleu: 22.26880\tLR: 0.00030000\t*\n", "Steps: 33000\tLoss: 51995.21094\tPPL: 5.72747\tbleu: 22.43247\tLR: 0.00030000\t*\n", "Steps: 34000\tLoss: 51986.79297\tPPL: 5.72585\tbleu: 22.50082\tLR: 0.00030000\t*\n", "Steps: 35000\tLoss: 51410.21484\tPPL: 5.61610\tbleu: 23.13006\tLR: 0.00030000\t*\n", "Steps: 36000\tLoss: 51594.54688\tPPL: 5.65096\tbleu: 22.60828\tLR: 0.00030000\t\n", "Steps: 37000\tLoss: 51124.54297\tPPL: 5.56251\tbleu: 23.24912\tLR: 0.00030000\t*\n", "Steps: 38000\tLoss: 50970.95312\tPPL: 5.53391\tbleu: 23.19801\tLR: 0.00030000\t*\n", "Steps: 39000\tLoss: 50665.50781\tPPL: 5.47746\tbleu: 23.45638\tLR: 0.00030000\t*\n", "Steps: 40000\tLoss: 50158.08203\tPPL: 5.38496\tbleu: 23.73108\tLR: 0.00030000\t*\n", "Steps: 41000\tLoss: 50007.13281\tPPL: 5.35774\tbleu: 23.84627\tLR: 0.00030000\t*\n", "Steps: 42000\tLoss: 49732.55859\tPPL: 5.30859\tbleu: 24.36516\tLR: 0.00030000\t*\n", "Steps: 43000\tLoss: 49740.24609\tPPL: 5.30996\tbleu: 23.55074\tLR: 0.00030000\t\n", "Steps: 44000\tLoss: 49519.62500\tPPL: 5.27078\tbleu: 23.85331\tLR: 0.00030000\t*\n", "Steps: 45000\tLoss: 49444.29297\tPPL: 5.25747\tbleu: 24.52481\tLR: 0.00030000\t*\n", "Steps: 46000\tLoss: 49065.22266\tPPL: 5.19100\tbleu: 24.18533\tLR: 0.00030000\t*\n", "Steps: 47000\tLoss: 48945.46484\tPPL: 5.17017\tbleu: 24.29824\tLR: 0.00030000\t*\n", "Steps: 48000\tLoss: 48778.86719\tPPL: 5.14134\tbleu: 24.55376\tLR: 0.00030000\t*\n", "Steps: 49000\tLoss: 48620.07422\tPPL: 5.11401\tbleu: 24.72296\tLR: 0.00030000\t*\n", "Steps: 50000\tLoss: 48883.35156\tPPL: 5.15941\tbleu: 24.47606\tLR: 0.00030000\t\n", "Steps: 51000\tLoss: 48400.11328\tPPL: 5.07639\tbleu: 24.87111\tLR: 0.00030000\t*\n", "Steps: 52000\tLoss: 48196.88281\tPPL: 5.04188\tbleu: 24.86785\tLR: 0.00030000\t*\n", "Steps: 53000\tLoss: 48039.81250\tPPL: 5.01537\tbleu: 24.90857\tLR: 0.00030000\t*\n", "Steps: 54000\tLoss: 47933.66797\tPPL: 4.99753\tbleu: 25.09966\tLR: 0.00030000\t*\n", "Steps: 55000\tLoss: 47819.03125\tPPL: 4.97834\tbleu: 25.12603\tLR: 0.00030000\t*\n", "Steps: 56000\tLoss: 47569.51172\tPPL: 4.93682\tbleu: 25.30760\tLR: 0.00030000\t*\n", "Steps: 57000\tLoss: 47501.04297\tPPL: 4.92549\tbleu: 25.97504\tLR: 0.00030000\t*\n", "Steps: 58000\tLoss: 47215.40625\tPPL: 4.87849\tbleu: 25.98066\tLR: 0.00030000\t*\n", "Steps: 59000\tLoss: 47222.22656\tPPL: 4.87960\tbleu: 25.68540\tLR: 0.00030000\t\n", "Steps: 60000\tLoss: 47317.11719\tPPL: 4.89517\tbleu: 25.72301\tLR: 0.00030000\t\n", "Steps: 61000\tLoss: 46898.51953\tPPL: 4.82687\tbleu: 26.01513\tLR: 0.00030000\t*\n", "Steps: 62000\tLoss: 46966.51953\tPPL: 4.83790\tbleu: 25.86569\tLR: 0.00030000\t\n", "Steps: 63000\tLoss: 46734.39453\tPPL: 4.80035\tbleu: 25.88185\tLR: 0.00030000\t*\n", "Steps: 64000\tLoss: 46807.21875\tPPL: 4.81210\tbleu: 25.99135\tLR: 0.00030000\t\n", "Steps: 65000\tLoss: 46631.85938\tPPL: 4.78386\tbleu: 26.09162\tLR: 0.00030000\t*\n", "Steps: 66000\tLoss: 46542.73438\tPPL: 4.76957\tbleu: 25.91885\tLR: 0.00030000\t*\n", "Steps: 67000\tLoss: 46407.07422\tPPL: 4.74790\tbleu: 26.07688\tLR: 0.00030000\t*\n", "Steps: 68000\tLoss: 46309.97656\tPPL: 4.73245\tbleu: 26.20460\tLR: 0.00030000\t*\n", "Steps: 69000\tLoss: 46374.75000\tPPL: 4.74275\tbleu: 26.13240\tLR: 0.00030000\t\n", "Steps: 70000\tLoss: 46043.87109\tPPL: 4.69037\tbleu: 26.62614\tLR: 0.00030000\t*\n", "Steps: 71000\tLoss: 46083.78906\tPPL: 4.69666\tbleu: 26.28338\tLR: 0.00030000\t\n", "Steps: 72000\tLoss: 46072.42578\tPPL: 4.69487\tbleu: 26.26619\tLR: 0.00030000\t\n", "Steps: 73000\tLoss: 45832.14844\tPPL: 4.65715\tbleu: 26.42701\tLR: 0.00030000\t*\n", "Steps: 74000\tLoss: 45857.44141\tPPL: 4.66111\tbleu: 26.32441\tLR: 0.00030000\t\n", "Steps: 75000\tLoss: 45782.28516\tPPL: 4.64937\tbleu: 26.50523\tLR: 0.00030000\t*\n", "Steps: 76000\tLoss: 45735.52734\tPPL: 4.64207\tbleu: 26.78350\tLR: 0.00030000\t*\n", "Steps: 77000\tLoss: 45685.96484\tPPL: 4.63436\tbleu: 26.70043\tLR: 0.00030000\t*\n", "Steps: 78000\tLoss: 45507.35156\tPPL: 4.60666\tbleu: 26.76198\tLR: 0.00030000\t*\n", "Steps: 79000\tLoss: 45607.75000\tPPL: 4.62221\tbleu: 26.75178\tLR: 0.00030000\t\n", "Steps: 80000\tLoss: 45203.71094\tPPL: 4.55994\tbleu: 26.92131\tLR: 0.00030000\t*\n", "Steps: 81000\tLoss: 45191.68359\tPPL: 4.55810\tbleu: 26.77384\tLR: 0.00030000\t*\n", "Steps: 82000\tLoss: 45299.51562\tPPL: 4.57463\tbleu: 27.02332\tLR: 0.00030000\t\n", "Steps: 83000\tLoss: 44943.07812\tPPL: 4.52023\tbleu: 26.98112\tLR: 0.00030000\t*\n", "Steps: 84000\tLoss: 45048.51953\tPPL: 4.53625\tbleu: 27.39394\tLR: 0.00030000\t\n", "Steps: 85000\tLoss: 45150.05469\tPPL: 4.55174\tbleu: 26.99963\tLR: 0.00030000\t\n", "Steps: 86000\tLoss: 45041.03125\tPPL: 4.53511\tbleu: 27.30085\tLR: 0.00030000\t\n", "Steps: 87000\tLoss: 44993.12109\tPPL: 4.52783\tbleu: 27.11341\tLR: 0.00030000\t\n", "Steps: 88000\tLoss: 44803.75391\tPPL: 4.49914\tbleu: 26.76137\tLR: 0.00030000\t*\n", "Steps: 89000\tLoss: 44711.89062\tPPL: 4.48528\tbleu: 27.04811\tLR: 0.00030000\t*\n", "Steps: 90000\tLoss: 44837.19141\tPPL: 4.50419\tbleu: 27.01439\tLR: 0.00030000\t\n", "Steps: 91000\tLoss: 44792.78906\tPPL: 4.49748\tbleu: 27.20331\tLR: 0.00030000\t\n", "Steps: 92000\tLoss: 44558.30859\tPPL: 4.46222\tbleu: 27.20851\tLR: 0.00030000\t*\n", "Steps: 93000\tLoss: 44566.68750\tPPL: 4.46348\tbleu: 27.07266\tLR: 0.00030000\t\n", "Steps: 94000\tLoss: 44363.70703\tPPL: 4.43317\tbleu: 27.18947\tLR: 0.00030000\t*\n", "Steps: 95000\tLoss: 44479.28516\tPPL: 4.45040\tbleu: 27.25424\tLR: 0.00030000\t\n", "Steps: 96000\tLoss: 44428.98438\tPPL: 4.44289\tbleu: 27.96016\tLR: 0.00030000\t\n", "Steps: 97000\tLoss: 44149.93750\tPPL: 4.40147\tbleu: 27.42450\tLR: 0.00030000\t*\n", "Steps: 98000\tLoss: 44214.44922\tPPL: 4.41102\tbleu: 27.43109\tLR: 0.00030000\t\n", "Steps: 99000\tLoss: 44118.52344\tPPL: 4.39683\tbleu: 27.66823\tLR: 0.00030000\t*\n", "Steps: 100000\tLoss: 44098.37500\tPPL: 4.39386\tbleu: 27.65898\tLR: 0.00030000\t*\n", "Steps: 101000\tLoss: 43869.24219\tPPL: 4.36020\tbleu: 27.66840\tLR: 0.00030000\t*\n", "Steps: 102000\tLoss: 43829.48047\tPPL: 4.35438\tbleu: 27.64054\tLR: 0.00030000\t*\n", "Steps: 103000\tLoss: 43978.53906\tPPL: 4.37622\tbleu: 27.70869\tLR: 0.00030000\t\n", "Steps: 104000\tLoss: 43794.85156\tPPL: 4.34932\tbleu: 27.73260\tLR: 0.00030000\t*\n", "Steps: 105000\tLoss: 43942.80859\tPPL: 4.37098\tbleu: 27.81213\tLR: 0.00030000\t\n", "Steps: 106000\tLoss: 43859.30078\tPPL: 4.35874\tbleu: 27.92572\tLR: 0.00030000\t\n", "Steps: 107000\tLoss: 43992.95312\tPPL: 4.37834\tbleu: 27.73391\tLR: 0.00030000\t\n", "Steps: 108000\tLoss: 43861.22656\tPPL: 4.35903\tbleu: 27.84907\tLR: 0.00030000\t\n", "Steps: 109000\tLoss: 43728.46875\tPPL: 4.33964\tbleu: 27.58667\tLR: 0.00030000\t*\n", "Steps: 110000\tLoss: 43717.23828\tPPL: 4.33801\tbleu: 27.73287\tLR: 0.00030000\t*\n", "Steps: 111000\tLoss: 43770.79688\tPPL: 4.34581\tbleu: 27.52740\tLR: 0.00030000\t\n", "Steps: 112000\tLoss: 43562.88281\tPPL: 4.31559\tbleu: 27.81986\tLR: 0.00030000\t*\n", "Steps: 113000\tLoss: 43577.37891\tPPL: 4.31769\tbleu: 27.95017\tLR: 0.00030000\t\n", "Steps: 114000\tLoss: 43521.93750\tPPL: 4.30966\tbleu: 27.61965\tLR: 0.00030000\t*\n", "Steps: 115000\tLoss: 43390.35938\tPPL: 4.29067\tbleu: 28.03094\tLR: 0.00030000\t*\n", "Steps: 116000\tLoss: 43429.75391\tPPL: 4.29635\tbleu: 27.98060\tLR: 0.00030000\t\n", "Steps: 117000\tLoss: 43539.78516\tPPL: 4.31225\tbleu: 27.65308\tLR: 0.00030000\t\n", "Steps: 118000\tLoss: 43510.59766\tPPL: 4.30802\tbleu: 27.97065\tLR: 0.00030000\t\n", "Steps: 119000\tLoss: 43333.44531\tPPL: 4.28248\tbleu: 28.22328\tLR: 0.00030000\t*\n", "Steps: 120000\tLoss: 43124.64453\tPPL: 4.25257\tbleu: 27.80742\tLR: 0.00030000\t*\n", "Steps: 121000\tLoss: 43431.70312\tPPL: 4.29663\tbleu: 28.11388\tLR: 0.00030000\t\n", "Steps: 122000\tLoss: 43238.90625\tPPL: 4.26891\tbleu: 27.79966\tLR: 0.00030000\t\n", "Steps: 123000\tLoss: 43184.74219\tPPL: 4.26116\tbleu: 28.14672\tLR: 0.00030000\t\n", "Steps: 124000\tLoss: 43177.28125\tPPL: 4.26009\tbleu: 28.21548\tLR: 0.00030000\t\n", "Steps: 125000\tLoss: 43199.12891\tPPL: 4.26322\tbleu: 27.95725\tLR: 0.00030000\t\n", "Steps: 126000\tLoss: 43084.82422\tPPL: 4.24689\tbleu: 28.20144\tLR: 0.00030000\t*\n", "Steps: 127000\tLoss: 43116.94141\tPPL: 4.25147\tbleu: 28.11088\tLR: 0.00030000\t\n", "Steps: 128000\tLoss: 42994.34766\tPPL: 4.23401\tbleu: 28.15016\tLR: 0.00030000\t*\n", "Steps: 129000\tLoss: 42964.80469\tPPL: 4.22982\tbleu: 28.06848\tLR: 0.00030000\t*\n", "Steps: 130000\tLoss: 42957.32031\tPPL: 4.22876\tbleu: 28.16575\tLR: 0.00030000\t*\n", "Steps: 131000\tLoss: 42926.80469\tPPL: 4.22443\tbleu: 28.26147\tLR: 0.00030000\t*\n", "Steps: 132000\tLoss: 42888.78125\tPPL: 4.21904\tbleu: 28.16867\tLR: 0.00030000\t*\n", "Steps: 133000\tLoss: 42859.81641\tPPL: 4.21494\tbleu: 28.55124\tLR: 0.00030000\t*\n", "Steps: 134000\tLoss: 42723.40234\tPPL: 4.19568\tbleu: 28.47450\tLR: 0.00030000\t*\n", "Steps: 135000\tLoss: 42866.80859\tPPL: 4.21593\tbleu: 28.48669\tLR: 0.00030000\t\n", "Steps: 136000\tLoss: 42913.52344\tPPL: 4.22254\tbleu: 28.27662\tLR: 0.00030000\t\n", "Steps: 137000\tLoss: 42739.42188\tPPL: 4.19794\tbleu: 28.47692\tLR: 0.00030000\t\n", "Steps: 138000\tLoss: 42852.00391\tPPL: 4.21383\tbleu: 28.09436\tLR: 0.00030000\t\n", "Steps: 139000\tLoss: 42783.00000\tPPL: 4.20409\tbleu: 28.71137\tLR: 0.00030000\t\n", "Steps: 140000\tLoss: 42455.31250\tPPL: 4.15810\tbleu: 28.74868\tLR: 0.00030000\t*\n", "Steps: 141000\tLoss: 42504.19531\tPPL: 4.16493\tbleu: 28.33226\tLR: 0.00030000\t\n", "Steps: 142000\tLoss: 42566.42188\tPPL: 4.17363\tbleu: 28.49022\tLR: 0.00030000\t\n", "Steps: 143000\tLoss: 42425.08984\tPPL: 4.15388\tbleu: 28.51254\tLR: 0.00030000\t*\n", "Steps: 144000\tLoss: 42390.60547\tPPL: 4.14908\tbleu: 28.57633\tLR: 0.00030000\t*\n", "Steps: 145000\tLoss: 42460.32031\tPPL: 4.15880\tbleu: 28.35302\tLR: 0.00030000\t\n", "Steps: 146000\tLoss: 42515.29688\tPPL: 4.16648\tbleu: 28.23136\tLR: 0.00030000\t\n", "Steps: 147000\tLoss: 42285.58594\tPPL: 4.13448\tbleu: 28.89754\tLR: 0.00030000\t*\n", "Steps: 148000\tLoss: 42406.07422\tPPL: 4.15123\tbleu: 28.72615\tLR: 0.00030000\t\n", "Steps: 149000\tLoss: 42385.68750\tPPL: 4.14839\tbleu: 28.89910\tLR: 0.00030000\t\n", "Steps: 150000\tLoss: 42512.14844\tPPL: 4.16604\tbleu: 28.91405\tLR: 0.00030000\t\n", "Steps: 151000\tLoss: 42234.70703\tPPL: 4.12742\tbleu: 28.55269\tLR: 0.00030000\t*\n", "Steps: 152000\tLoss: 42299.13672\tPPL: 4.13636\tbleu: 28.39584\tLR: 0.00030000\t\n", "Steps: 153000\tLoss: 42104.96484\tPPL: 4.10949\tbleu: 28.46484\tLR: 0.00030000\t*\n", "Steps: 154000\tLoss: 42266.55078\tPPL: 4.13183\tbleu: 28.99351\tLR: 0.00030000\t\n", "Steps: 155000\tLoss: 42186.91016\tPPL: 4.12080\tbleu: 28.80927\tLR: 0.00030000\t\n", "Steps: 156000\tLoss: 42210.56250\tPPL: 4.12408\tbleu: 28.77622\tLR: 0.00030000\t\n", "Steps: 157000\tLoss: 42144.21094\tPPL: 4.11490\tbleu: 29.04832\tLR: 0.00030000\t\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "66WhRE9lIhoD", "colab": { "base_uri": "https://localhost:8080/", "height": 69 }, "outputId": "5c84d463-6fee-483d-8928-f1ce2e9f179e" }, "source": [ "# Test our model\n", "! cd joeynmt; python3 -m joeynmt test \"$gdrive_path/models/${src}${tgt}_transformer/config.yaml\"" ], "execution_count": 19, "outputs": [ { "output_type": "stream", "text": [ "2020-01-22 01:10:18,166 Hello! This is Joey-NMT.\n", "2020-01-22 01:10:51,129 dev bleu: 29.15 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-01-22 01:11:29,779 test bleu: 36.74 [Beam search decoding with beam size = 5 and alpha = 1.0]\n" ], "name": "stdout" } ] } ] }