You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/09/14 18:20:00 UTC

[01/10] incubator-joshua git commit: Moved regression test decoder/denormalization to unit test and removed unnecessary KenLM Guards from unit tests in same package.

Repository: incubator-joshua
Updated Branches:
  refs/heads/master dc55f07a9 -> 4a558be65


Moved regression test decoder/denormalization to unit test and removed unnecessary KenLM Guards from unit tests in same package.


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/fa247ca0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/fa247ca0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/fa247ca0

Branch: refs/heads/master
Commit: fa247ca02477073b90234cfd88ad8343e213276f
Parents: dc55f07
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 15:26:48 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 15:26:48 2016 +0200

----------------------------------------------------------------------
 .../joshua/decoder/cky/DenormalizationTest.java | 58 ++++++++++++++++++++
 .../joshua/decoder/cky/DoNotCrashTest.java      |  3 +-
 .../joshua/decoder/cky/NoGrammarTest.java       |  8 +--
 .../resources/decoder/denormalization/input.txt |  1 -
 .../decoder/denormalization/output.expected     |  1 -
 .../resources/decoder/denormalization/test.sh   | 30 ----------
 6 files changed, 61 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java b/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
new file mode 100644
index 0000000..cbfb98b
--- /dev/null
+++ b/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
@@ -0,0 +1,58 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.translate;
+import static org.testng.Assert.assertEquals;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+public class DenormalizationTest {
+
+	private static final String INPUT = "� who you lookin' at , mr. ?";
+	private static final String GOLD = "�Who you lookin' at, Mr.?";
+	
+	private JoshuaConfiguration joshuaConfig = null;
+	private Decoder decoder = null;
+	
+	@BeforeMethod
+	public void setUp() throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.outputFormat = "%S";
+		joshuaConfig.mark_oovs = false;
+		joshuaConfig.topN = 1;
+		decoder = new Decoder(joshuaConfig, "");
+	}
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		decoder.cleanUp();
+		decoder = null;
+	}
+	
+	@Test
+	public void givenTokenizedInputWithSpecialCharacters_whenDecoding_thenOutputNormalized() {
+		String output = translate(INPUT, decoder, joshuaConfig);
+		assertEquals(output.trim(), GOLD);
+	}	
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java b/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
index 88e264f..4a7010b 100644
--- a/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
+++ b/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
@@ -26,7 +26,6 @@ import java.util.List;
 
 import org.apache.joshua.decoder.Decoder;
 import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
 import org.testng.annotations.AfterMethod;
 import org.testng.annotations.BeforeMethod;
 import org.testng.annotations.Test;
@@ -39,7 +38,7 @@ public class DoNotCrashTest {
 	@BeforeMethod
 	public void setUp() throws Exception {
 		joshuaConfig = new JoshuaConfiguration();
-		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
+		decoder = new Decoder(joshuaConfig, "");
 	}
 
 	@AfterMethod

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java b/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
index b7da3aa..296042a 100644
--- a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
+++ b/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
@@ -40,7 +40,7 @@ public class NoGrammarTest {
 	public void setUp() throws Exception {
 		joshuaConfig = new JoshuaConfiguration();
 		joshuaConfig.mark_oovs = true;
-		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
+		decoder = new Decoder(joshuaConfig, "");
 	}
 
 	@AfterMethod
@@ -53,9 +53,5 @@ public class NoGrammarTest {
 	public void givenInput_whenDecodingWithoutGrammar_thenOutputAllOOV() {
 		String output = translate(INPUT, decoder, joshuaConfig);
 		assertEquals(output.trim(), GOLD);
-	}
-	
-	
-	
-	
+	}	
 }

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/resources/decoder/denormalization/input.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/denormalization/input.txt b/src/test/resources/decoder/denormalization/input.txt
deleted file mode 100644
index a9dfe65..0000000
--- a/src/test/resources/decoder/denormalization/input.txt
+++ /dev/null
@@ -1 +0,0 @@
-� who you lookin' at , mr. ?

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/resources/decoder/denormalization/output.expected
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/denormalization/output.expected b/src/test/resources/decoder/denormalization/output.expected
deleted file mode 100644
index b799fa7..0000000
--- a/src/test/resources/decoder/denormalization/output.expected
+++ /dev/null
@@ -1 +0,0 @@
-�Who you lookin' at, Mr.?

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/fa247ca0/src/test/resources/decoder/denormalization/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/denormalization/test.sh b/src/test/resources/decoder/denormalization/test.sh
deleted file mode 100755
index 5043684..0000000
--- a/src/test/resources/decoder/denormalization/test.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-cat input.txt | $JOSHUA/bin/joshua-decoder -output-format "%S" -mark-oovs false -top-n 1 > output 2> log
-
-# Compare
-diff -u output output.expected > diff
-
-if [ $? -eq 0 ]; then
-	rm -f output log diff
-	exit 0
-else
-	exit 1
-fi


[05/10] incubator-joshua git commit: Moved regression test decoder/left-state to unit test.

Posted by mj...@apache.org.
Moved regression test decoder/left-state to unit test.


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/74e6c004
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/74e6c004
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/74e6c004

Branch: refs/heads/master
Commit: 74e6c0045a1eb64b5f02eca68027c7bb681d99c5
Parents: cb42ce6
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 15:55:18 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 15:55:18 2016 +0200

----------------------------------------------------------------------
 .../joshua/decoder/cky/LeftStateTest.java       |   65 +
 .../joshua/decoder/cky/NoGrammarTest.java       |    1 -
 .../resources/decoder/left-state/joshua.config  |    9 +-
 .../resources/decoder/left-state/output.gold    | 1200 +++++++++---------
 .../decoder/left-state/output.scores.gold       |  600 ---------
 src/test/resources/decoder/left-state/test.sh   |   33 -
 6 files changed, 671 insertions(+), 1237 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java b/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
new file mode 100644
index 0000000..fff1550
--- /dev/null
+++ b/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
@@ -0,0 +1,65 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class LeftStateTest {
+
+	private JoshuaConfiguration joshuaConfig;
+	private Decoder decoder;
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		if(decoder != null) {
+			decoder.cleanUp();
+			decoder = null;
+		}
+	}
+
+	@Test
+	public void givenInput_whenLeftStateDecoding_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/left-state/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/decoder/left-state/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/left-state/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	public void configureDecoder(String pathToConfig) throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.readConfigFile(pathToConfig);
+		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
+	}
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java b/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
index 296042a..b814d08 100644
--- a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
+++ b/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
@@ -23,7 +23,6 @@ import static org.testng.Assert.assertEquals;
 
 import org.apache.joshua.decoder.Decoder;
 import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
 import org.testng.annotations.AfterMethod;
 import org.testng.annotations.BeforeMethod;
 import org.testng.annotations.Test;

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/resources/decoder/left-state/joshua.config
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/left-state/joshua.config b/src/test/resources/decoder/left-state/joshua.config
index dae08c0..75023d2 100644
--- a/src/test/resources/decoder/left-state/joshua.config
+++ b/src/test/resources/decoder/left-state/joshua.config
@@ -1,7 +1,7 @@
-lm = kenlm 5 true false 100 lm.gz
+lm = kenlm 5 true false 100 src/test/resources/decoder/left-state/lm.gz
 
-tm = thrax pt 12 grammar.gz
-tm = thrax glue -1 glue-grammar
+tm = thrax pt 12 src/test/resources/decoder/left-state/grammar.gz
+tm = thrax glue -1 src/test/resources/decoder/left-state/glue-grammar
 
 mark_oovs=false
 
@@ -19,6 +19,9 @@ top-n = 300
 feature_function = WordPenalty
 feature_function = OOVPenalty
 
+output-format = "%c %s"
+
+
 # Model Weights ####
 
 lm_0 1.2373676802179452


[06/10] incubator-joshua git commit: Moved regression test decoder/lowercaser to unit test

Posted by mj...@apache.org.
Moved regression test decoder/lowercaser to unit test


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/a833bd65
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/a833bd65
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/a833bd65

Branch: refs/heads/master
Commit: a833bd651dde156a19f0414f7e6d380778daaad4
Parents: 74e6c00
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 17:43:59 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 17:43:59 2016 +0200

----------------------------------------------------------------------
 .../joshua/decoder/cky/LowercaseTest.java       | 115 +++++++++++++++
 .../resources/decoder/lowercaser/joshua.config  | 140 +++++++++++++++++++
 .../resources/decoder/lowercaser/output.gold    |   5 -
 src/test/resources/decoder/lowercaser/test.sh   |  40 ------
 4 files changed, 255 insertions(+), 45 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/a833bd65/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java b/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
new file mode 100644
index 0000000..e3f0aac
--- /dev/null
+++ b/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
@@ -0,0 +1,115 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.translate;
+import static org.testng.Assert.assertEquals;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class LowercaseTest {
+
+  private static final String INPUT_ALL_UPPERCASED = "ELLA";
+  private static final String INPUT_CAPITALIZED = "Ella";
+
+  private static final String GOLD_UNTRANSLATED_ALL_UPPERCASED = "ELLA";
+  private static final String GOLD_LOWERCASED = "she";
+  private static final String GOLD_CAPITALIZED = "She";
+  private static final String GOLD_ALL_UPPERCASED = "SHE";
+  
+  private static final String JOSHUA_CONFIG_PATH = "src/test/resources/decoder/lowercaser/joshua.config";
+
+  private JoshuaConfiguration joshuaConfig;
+  private Decoder decoder;
+
+  /**
+   * No match in phrase table (only contains ella), therefore passed through
+   * untranslated.
+   * @throws Exception 
+   */
+  @Test
+  public void givenAllUppercasedInput_whenNotLowercasing_thenLowercasedRuleNotFound() throws Exception {
+    setUp(false, false, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_UNTRANSLATED_ALL_UPPERCASED);
+  }
+  
+  /**
+   * Match in phrase table (only contains ella), therefore translated.
+   * @throws Exception
+   */
+  @Test
+  public void givenAllUppercasedInput_whenLowercasing_thenLowercasedRuleFound() throws Exception {
+    setUp(true, false, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_LOWERCASED);
+  }
+  
+  /**
+   * Matches phrase table, not capitalized because projected from first word of sentence
+   * @throws Exception
+   */
+  @Test
+  public void givenCapitalizedInput_whenLowercasingAndProjecting_thenLowercased() throws Exception {
+    setUp(true, true, false);
+    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_LOWERCASED);
+  }
+  
+  /**
+   * Matches phrase table, capitalized because of output-format
+   * @throws Exception
+   */
+  @Test
+  public void givenCapitalizedInput_whenLowercasingAndOutputFormatCapitalization_thenCapitalized() throws Exception {
+    setUp(true, true, true);
+    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_CAPITALIZED);
+  }
+  
+  /**
+   * Matches phrase table, capitalized because of output-format
+   * @throws Exception
+   */
+  @Test
+  public void givenAllUppercasedInput_whenLowercasingAndProjecting_thenAllUppercased() throws Exception {
+    setUp(true, true, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_ALL_UPPERCASED);
+  }
+
+  public void setUp(boolean lowercase, boolean projectCase, boolean capitalize) throws Exception {
+    joshuaConfig = new JoshuaConfiguration();
+    joshuaConfig.readConfigFile(JOSHUA_CONFIG_PATH);
+    joshuaConfig.lowercase = lowercase;
+    joshuaConfig.project_case = projectCase;
+    joshuaConfig.outputFormat = capitalize ? "%S" : "%s";
+    decoder = new Decoder(joshuaConfig, "");
+  }
+  
+  @AfterMethod
+  public void tearDown() throws Exception {
+    decoder.cleanUp();
+    decoder = null;
+  }
+  
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/a833bd65/src/test/resources/decoder/lowercaser/joshua.config
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/lowercaser/joshua.config b/src/test/resources/decoder/lowercaser/joshua.config
new file mode 100644
index 0000000..6f5a46b
--- /dev/null
+++ b/src/test/resources/decoder/lowercaser/joshua.config
@@ -0,0 +1,140 @@
+# This file is a template for the Joshua pipeline; variables enclosed
+# in <angle-brackets> are substituted by the pipeline script as
+# appropriate.  This file also serves to document Joshua's many
+# parameters.
+
+# These are the grammar file specifications.  Joshua supports an
+# arbitrary number of grammar files, each specified on its own line
+# using the following format:
+#
+#   tm = TYPE OWNER LIMIT FILE
+# 
+# TYPE is "packed", "thrax", or "samt".  The latter denotes the format
+# used in Zollmann and Venugopal's SAMT decoder
+# (http://www.cs.cmu.edu/~zollmann/samt/).
+# 
+# OWNER is the "owner" of the rules in the grammar; this is used to
+# determine which set of phrasal features apply to the grammar's
+# rules.  Having different owners allows different features to be
+# applied to different grammars, and for grammars to share features
+# across files.
+#
+# LIMIT is the maximum input span permitted for the application of
+# grammar rules found in the grammar file.  A value of -1 implies no limit.
+#
+# FILE is the grammar file (or directory when using packed grammars).
+# The file can be compressed with gzip, which is determined by the
+# presence or absence of a ".gz" file extension.
+#
+# By a convention defined by Chiang (2007), the grammars are split
+# into two files: the main translation grammar containing all the
+# learned translation rules, and a glue grammar which supports
+# monotonic concatenation of hierarchical phrases. The glue grammar's
+# main distinction from the regular grammar is that the span limit
+# does not apply to it.  
+
+tm = hiero -maxspan 20 -path src/test/resources/decoder/lowercaser/grammar.test -owner pt
+tm = thrax -path src/test/resources/decoder/lowercaser/grammar.glue -maxspan -1 -owner glue
+
+# This symbol is used over unknown words in the source language
+
+default-non-terminal = X
+
+# This is the goal nonterminal, used to determine when a complete
+# parse is found.  It should correspond to the root-level rules in the
+# glue grammar.
+
+goal-symbol = GOAL
+
+# Language model config.
+#
+# Multiple language models are supported.  For each language model,
+# create one of the following lines:
+#
+# feature-function = LanguageModel -lm_type TYPE -lm_order ORDER -lm_file FILE
+# feature-function = StateMinimizingLanguageModel -lm_order ORDER -lm_file FILE
+#
+# - TYPE is one of "kenlm" or "berkeleylm"
+# - ORDER is the order of the language model (default 5)
+# - FILE is the path to the LM file. This can be binarized if appropriate to the type
+#   (e.g., KenLM has a compiled format)
+#
+# A state-minimizing LM collapses left-state. Currently only KenLM supports this.
+#
+# For each LM, add a weight lm_INDEX below, where indexing starts from 0.
+
+
+
+# The suffix _OOV is appended to unknown source-language words if this
+# is set to true.
+
+mark-oovs = false
+
+# The search algorithm: "cky" for hierarchical / phrase-based decoding, 
+# "stack" for phrase-based decoding
+search = cky
+
+# The pop-limit for decoding.  This determines how many hypotheses are
+# considered over each span of the input.
+
+pop-limit = 100
+
+# How many hypotheses to output
+
+top-n = 1
+
+# Whether those hypotheses should be distinct strings
+
+use-unique-nbest = true
+
+# This is the default format of the ouput printed to STDOUT.  The variables that can be
+# substituted are:
+#
+# %i: the sentence number (0-indexed)
+# %s: the translated sentence
+# %t: the derivation tree
+# %f: the feature string
+# %c: the model cost
+
+output-format = %s
+
+# When printing the trees (%t in 'output-format'), this controls whether the alignments
+# are also printed.
+
+include-align-index = false
+
+# And these are the feature functions to activate.
+feature-function = OOVPenalty
+feature-function = WordPenalty
+
+## Model weights #####################################################
+
+# For each langage model line listed above, create a weight in the
+# following format: the keyword "lm", a 0-based index, and the weight.
+# lm_INDEX WEIGHT
+
+
+# The phrasal weights correspond to weights stored with each of the
+# grammar rules.  The format is
+#
+#   tm_OWNER_COLUMN WEIGHT
+#
+# where COLUMN denotes the 0-based order of the parameter in the
+# grammar file and WEIGHT is the corresponding weight.  In the future,
+# we plan to add a sparse feature representation which will simplify
+# this.
+
+# The wordpenalty feature counts the number of words in each hypothesis.
+
+
+# This feature counts the number of unknown words in the hypothesis.
+
+
+# This feature weights paths through an input lattice.  It is only activated
+# when decoding lattices.
+
+WordPenalty -4.72455379476569
+OOVPenalty 0.7897219562429866
+tm_pt_0 0.3137696816891433
+tm_glue_0 -0.04493059277470993
+

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/a833bd65/src/test/resources/decoder/lowercaser/output.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/lowercaser/output.gold b/src/test/resources/decoder/lowercaser/output.gold
deleted file mode 100644
index ea1d2bc..0000000
--- a/src/test/resources/decoder/lowercaser/output.gold
+++ /dev/null
@@ -1,5 +0,0 @@
-ELLA
-she
-she
-She
-SHE

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/a833bd65/src/test/resources/decoder/lowercaser/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/lowercaser/test.sh b/src/test/resources/decoder/lowercaser/test.sh
deleted file mode 100755
index 875ae57..0000000
--- a/src/test/resources/decoder/lowercaser/test.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-(
-# no match to phrase table, outputs ELLA
-echo -e "ELLA" | $JOSHUA/bin/joshua-decoder -config config
-# matches phrase table, outputs she
-echo -e "ELLA" | $JOSHUA/bin/joshua-decoder -config config -lowercase
-# matches phrase table, not capitalized because projected from first word of sentence, outputs she
-echo -e "Ella" | $JOSHUA/bin/joshua-decoder -config config -lowercase -project-case
-# matches phrase table, capitalized because of output-format
-echo -e "Ella" | $JOSHUA/bin/joshua-decoder -config config -lowercase -project-case -output-format %S
-# matches phrase table, projected case because all caps, outputs SHE
-echo -e "ELLA" | $JOSHUA/bin/joshua-decoder -config config -lowercase -project-case
-) > output 2> log
-
-diff -u output output.gold > diff
-
-if [ $? -eq 0 ]; then
-    rm -f log output diff
-    exit 0
-else
-    exit 1
-fi


[10/10] incubator-joshua git commit: Removed no longer needed regression test script

Posted by mj...@apache.org.
Removed no longer needed regression test script


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/4a558be6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/4a558be6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/4a558be6

Branch: refs/heads/master
Commit: 4a558be65b903dc29dacb3d3c2c559149f76fb3a
Parents: d51169a
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 19:24:14 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 19:24:14 2016 +0200

----------------------------------------------------------------------
 src/test/resources/decoder/n-ary/test.sh | 33 ---------------------------
 1 file changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/4a558be6/src/test/resources/decoder/n-ary/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/test.sh b/src/test/resources/decoder/n-ary/test.sh
deleted file mode 100755
index 4efcffb..0000000
--- a/src/test/resources/decoder/n-ary/test.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-cat input.txt | $JOSHUA/bin/joshua-decoder -m 1g -threads 1 -c joshua.config > output 2> log
-
-# Extract the translations and model scores
-cat output | awk -F\| '{print $4 " ||| " $10}' > output.scores
-
-# Compare
-diff -u output.scores gold.scores > diff
-
-if [ $? -eq 0 ]; then
-	rm -f diff log output output.scores
-	exit 0
-else
-	exit 1
-fi


[04/10] incubator-joshua git commit: Moved regression test decoder/left-state to unit test.

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/resources/decoder/left-state/output.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/left-state/output.gold b/src/test/resources/decoder/left-state/output.gold
index 0fc52e7..7c62979 100644
--- a/src/test/resources/decoder/left-state/output.gold
+++ b/src/test/resources/decoder/left-state/output.gold
@@ -1,600 +1,600 @@
-0 ||| rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-23.712 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-30.409 tm_pt_6=-15.712 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-14.979 tm_pt_11=-0.000 tm_pt_12=-7.729 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -226.302
-0 ||| rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.366 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.174 tm_pt_6=-16.506 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.498 tm_pt_11=-0.000 tm_pt_12=-4.975 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -226.523
-0 ||| rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.747 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.862 tm_pt_6=-15.484 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-8.959 tm_pt_11=-0.000 tm_pt_12=-8.827 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -226.884
-0 ||| rabindranath 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.277 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.907 tm_pt_6=-16.145 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.565 tm_pt_11=-0.000 tm_pt_12=-6.277 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -227.201
-0 ||| rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.184 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.718 tm_pt_6=-15.214 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-10.850 tm_pt_11=-0.000 tm_pt_12=-6.748 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -227.217
-0 ||| rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.312 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.404 tm_pt_6=-17.503 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-5.957 tm_pt_11=-0.000 tm_pt_12=-5.596 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -227.707
-0 ||| of rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-25.958 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.653 tm_pt_6=-16.215 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-12.590 tm_pt_11=-0.000 tm_pt_12=-7.891 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -227.952
-0 ||| rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.715 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.425 tm_pt_6=-15.276 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-12.526 tm_pt_11=-0.000 tm_pt_12=-7.218 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -227.982
-0 ||| rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.693 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.092 tm_pt_6=-16.482 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-7.419 tm_pt_11=-0.000 tm_pt_12=-9.448 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.069
-0 ||| rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.078 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.789 tm_pt_6=-15.727 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.614 tm_pt_11=-0.000 tm_pt_12=-9.341 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.132
-0 ||| rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.935 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-30.948 tm_pt_6=-16.212 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.310 tm_pt_11=-0.000 tm_pt_12=-7.369 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.160
-0 ||| rabindranath born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.803 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.029 tm_pt_6=-16.002 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-10.090 tm_pt_11=-0.000 tm_pt_12=-4.282 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -228.266
-0 ||| rabindranath 's birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.223 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.137 tm_pt_6=-17.143 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.025 tm_pt_11=-0.000 tm_pt_12=-6.898 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.386
-0 ||| rabindranath born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.980 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.737 tm_pt_6=-16.092 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-12.188 tm_pt_11=-0.000 tm_pt_12=-3.876 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -228.388
-0 ||| rabindranath was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.055 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.655 tm_pt_6=-16.274 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-10.985 tm_pt_11=-0.000 tm_pt_12=-7.839 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.417
-0 ||| rabindranath 's was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.859 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.643 tm_pt_6=-15.547 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-8.488 tm_pt_11=-0.000 tm_pt_12=-6.133 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.437
-0 ||| of rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.992 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-43.106 tm_pt_6=-15.988 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-6.570 tm_pt_11=-0.000 tm_pt_12=-8.990 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -228.534
-0 ||| rabindranath 's born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.920 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.099 tm_pt_6=-16.838 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.668 tm_pt_11=-0.000 tm_pt_12=-7.178 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.616
-0 ||| rabindranath 's was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.388 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.335 tm_pt_6=-16.045 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.503 tm_pt_10=-11.294 tm_pt_11=-0.000 tm_pt_12=-7.556 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.637
-0 ||| rabindranath was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-25.676 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.639 tm_pt_6=-16.710 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-13.438 tm_pt_11=-0.000 tm_pt_12=-8.350 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -228.745
-0 ||| of rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.272 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.418 tm_pt_6=-17.009 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.641 tm_pt_11=-0.000 tm_pt_12=-7.956 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.777
-0 ||| rabindranath 's birth of kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.941 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.253 tm_pt_6=-15.092 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-8.211 tm_pt_11=-0.000 tm_pt_12=-5.807 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.805
-0 ||| rabindranath born in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.529 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-31.718 tm_pt_6=-15.214 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.369 tm_pt_10=-10.034 tm_pt_11=-0.000 tm_pt_12=-4.505 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.806
-0 ||| rabindranath born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.320 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.967 tm_pt_6=-17.090 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-10.648 tm_pt_11=-0.000 tm_pt_12=-4.497 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -228.823
-0 ||| rabindranath born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.215 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.839 tm_pt_6=-16.636 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.007 tm_pt_10=-7.334 tm_pt_11=-0.000 tm_pt_12=-5.263 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.854
-0 ||| rabindranath 's birth was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.996 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-33.336 tm_pt_6=-14.613 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.783 tm_pt_11=-0.000 tm_pt_12=-4.047 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.862
-0 ||| rabindranath 's was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.422 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-43.751 tm_pt_6=-17.446 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-7.524 tm_pt_11=-0.000 tm_pt_12=-10.149 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -228.863
-0 ||| of rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.429 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.962 tm_pt_6=-15.717 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-8.461 tm_pt_11=-0.000 tm_pt_12=-6.911 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.866
-0 ||| rabindranath was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.673 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.098 tm_pt_6=-16.835 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-12.831 tm_pt_11=-0.000 tm_pt_12=-8.966 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.892
-0 ||| rabindranath 's birth in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.714 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-31.762 tm_pt_6=-15.641 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.158 tm_pt_11=-0.000 tm_pt_12=-5.584 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -228.945
-0 ||| rabindranath tagore was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.053 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.747 tm_pt_6=-15.813 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-10.797 tm_pt_11=-0.000 tm_pt_12=-8.645 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.957
-0 ||| rabindranath born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.510 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-39.245 tm_pt_6=-17.019 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-6.262 tm_pt_11=-0.000 tm_pt_12=-7.568 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -228.984
-0 ||| rabindranath 's birth in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.839 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.470 tm_pt_6=-15.731 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.256 tm_pt_11=-0.000 tm_pt_12=-5.179 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.004
-0 ||| rabindranath 's birth of kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.173 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.483 tm_pt_6=-16.089 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-6.670 tm_pt_11=-0.000 tm_pt_12=-6.428 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.107
-0 ||| rabindranath born in kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.761 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-30.948 tm_pt_6=-16.212 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.369 tm_pt_10=-8.494 tm_pt_11=-0.000 tm_pt_12=-5.126 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.108
-0 ||| rabindranath 's birth was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.129 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.773 tm_pt_6=-15.027 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.092 tm_pt_11=-0.000 tm_pt_12=-5.146 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.157
-0 ||| rabindranath tagore was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-25.581 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.439 tm_pt_6=-16.311 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.639 tm_pt_10=-13.603 tm_pt_11=-0.000 tm_pt_12=-10.068 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.157
-0 ||| rabindranath was born kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.995 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.040 tm_pt_6=-15.387 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.278 tm_pt_11=-0.000 tm_pt_12=-6.748 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.171
-0 ||| rabindranath born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.698 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.101 tm_pt_6=-16.514 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-8.855 tm_pt_11=-0.000 tm_pt_12=-6.874 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.182
-0 ||| rabindranath 's was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.390 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.351 tm_pt_6=-15.609 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-10.164 tm_pt_11=-0.000 tm_pt_12=-6.603 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.202
-0 ||| rabindranath born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.555 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-28.259 tm_pt_6=-16.999 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-8.550 tm_pt_11=-0.000 tm_pt_12=-4.903 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -229.210
-0 ||| rabindranath 's birth was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.336 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-32.566 tm_pt_6=-15.610 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-9.242 tm_pt_11=-0.000 tm_pt_12=-4.668 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.297
-0 ||| rabindranath was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.891 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-41.934 tm_pt_6=-15.997 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-7.724 tm_pt_11=-0.000 tm_pt_12=-11.420 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.346
-0 ||| rabindranath 's was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.754 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-39.715 tm_pt_6=-16.059 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.252 tm_pt_11=-0.000 tm_pt_12=-8.725 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.353
-0 ||| rabindranath 's birth was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.343 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-33.142 tm_pt_6=-15.351 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-11.793 tm_pt_11=-0.000 tm_pt_12=-6.127 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.378
-0 ||| rabindranath 's was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.611 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.873 tm_pt_6=-16.544 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.947 tm_pt_11=-0.000 tm_pt_12=-6.754 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.380
-0 ||| rabindranath tagore was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.616 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-42.855 tm_pt_6=-17.712 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.504 tm_pt_10=-9.833 tm_pt_11=-0.000 tm_pt_12=-12.661 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.383
-0 ||| rabindranath 's birth in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.179 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.700 tm_pt_6=-16.729 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.715 tm_pt_11=-0.000 tm_pt_12=-5.800 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.438
-0 ||| rabindranath 's birth the kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.193 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.529 tm_pt_6=-15.835 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.992 tm_pt_11=-0.000 tm_pt_12=-5.636 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.469
-0 ||| rabindranath 's birth in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.439 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.451 tm_pt_6=-14.853 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-10.101 tm_pt_11=-0.000 tm_pt_12=-5.807 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.485
-0 ||| rabindranath was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.084 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-40.497 tm_pt_6=-15.789 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-11.290 tm_pt_11=-0.000 tm_pt_12=-9.811 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.486
-0 ||| rabindranath 's birth was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.005 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.595 tm_pt_6=-15.124 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-5.774 tm_pt_11=-0.000 tm_pt_12=-7.225 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.499
-0 ||| rabindranath born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.728 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.069 tm_pt_6=-17.633 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.007 tm_pt_10=-5.793 tm_pt_11=-0.000 tm_pt_12=-5.884 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.503
-0 ||| rabindranath tagore 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.378 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.936 tm_pt_6=-16.484 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-8.637 tm_pt_11=-0.000 tm_pt_12=-9.888 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.511
-0 ||| rabindranath 's birth in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.125 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.573 tm_pt_6=-16.275 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-7.401 tm_pt_11=-0.000 tm_pt_12=-6.565 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.533
-0 ||| of rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.960 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-41.669 tm_pt_6=-15.779 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-10.137 tm_pt_11=-0.000 tm_pt_12=-7.381 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.631
-0 ||| rabindranath 's was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.730 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.581 tm_pt_6=-16.606 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-8.623 tm_pt_11=-0.000 tm_pt_12=-7.224 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.637
-0 ||| rabindranath 's birth in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.420 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-41.978 tm_pt_6=-16.658 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.330 tm_pt_11=-0.000 tm_pt_12=-8.870 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.663
-0 ||| rabindranath was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.078 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-39.973 tm_pt_6=-15.884 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-11.482 tm_pt_11=-0.000 tm_pt_12=-11.738 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.710
-0 ||| rabindranath 's birth was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.257 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.158 tm_pt_6=-14.915 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-9.341 tm_pt_11=-0.000 tm_pt_12=-5.616 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.711
-0 ||| of rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.938 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-42.336 tm_pt_6=-16.985 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-5.030 tm_pt_11=-0.000 tm_pt_12=-9.611 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.718
-0 ||| rabindranath tagore was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.583 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.455 tm_pt_6=-15.875 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.154 tm_pt_10=-12.472 tm_pt_11=-0.000 tm_pt_12=-9.115 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.722
-0 ||| rabindranath born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.104 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.554 tm_pt_6=-18.127 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-9.479 tm_pt_11=-0.000 tm_pt_12=-7.193 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.744
-0 ||| of rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.323 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-43.034 tm_pt_6=-16.230 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.226 tm_pt_11=-0.000 tm_pt_12=-9.503 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.782
-0 ||| rabindranath 's birth in kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.672 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.681 tm_pt_6=-15.851 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-8.561 tm_pt_11=-0.000 tm_pt_12=-6.428 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.787
-0 ||| rabindranath was born in a the \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.067 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-35.675 tm_pt_6=-15.486 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-11.604 tm_pt_11=-0.000 tm_pt_12=-9.121 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.795
-0 ||| rabindranath 's born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.866 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.329 tm_pt_6=-17.836 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.127 tm_pt_11=-0.000 tm_pt_12=-7.799 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.801
-0 ||| of rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.180 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.192 tm_pt_6=-16.715 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.921 tm_pt_11=-0.000 tm_pt_12=-7.532 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.810
-0 ||| rabindranath was born in a kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.017 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-31.967 tm_pt_6=-15.396 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-9.506 tm_pt_11=-0.000 tm_pt_12=-9.527 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.830
-0 ||| rabindranath 's birth was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.442 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.451 tm_pt_6=-14.853 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.665 tm_pt_11=-0.000 tm_pt_12=-5.146 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.831
-0 ||| rabindranath 's birth in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.608 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.834 tm_pt_6=-16.154 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-8.922 tm_pt_11=-0.000 tm_pt_12=-8.177 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.861
-0 ||| rabindranath tagore was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.947 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.819 tm_pt_6=-16.326 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-9.561 tm_pt_11=-0.000 tm_pt_12=-11.238 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -229.873
-0 ||| rabindranath 's birth in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.465 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-30.992 tm_pt_6=-16.639 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-8.617 tm_pt_11=-0.000 tm_pt_12=-6.205 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.888
-0 ||| rabindranath born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.349 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.808 tm_pt_6=-16.605 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-10.953 tm_pt_11=-0.000 tm_pt_12=-6.469 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.892
-0 ||| rabindranath tagore was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.804 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.977 tm_pt_6=-16.810 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-9.256 tm_pt_11=-0.000 tm_pt_12=-9.266 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.900
-0 ||| rabindranath born in in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.714 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.996 tm_pt_6=-16.603 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-3.000 tm_pt_10=-7.179 tm_pt_11=-0.000 tm_pt_12=-7.055 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.922
-0 ||| rabindranath born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.292 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.409 tm_pt_6=-17.623 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-12.072 tm_pt_11=-0.000 tm_pt_12=-6.500 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -229.942
-0 ||| of rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.218 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.648 tm_pt_6=-18.007 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.100 tm_pt_11=-0.000 tm_pt_12=-8.577 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.961
-0 ||| rabindranath born was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.530 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-30.603 tm_pt_6=-14.973 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-10.715 tm_pt_11=-0.000 tm_pt_12=-2.745 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -229.971
-0 ||| rabindranath was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.596 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.491 tm_pt_6=-17.243 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.375 tm_pt_10=-9.722 tm_pt_11=-0.000 tm_pt_12=-11.052 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -229.975
-0 ||| rabindranath 's birth kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.096 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.629 tm_pt_6=-14.523 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.368 tm_pt_10=-11.122 tm_pt_11=-0.000 tm_pt_12=-5.114 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -229.976
-0 ||| rabindranath born in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.330 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.911 tm_pt_6=-17.148 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.007 tm_pt_10=-6.098 tm_pt_11=-0.000 tm_pt_12=-7.855 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.043
-0 ||| rabindranath 's was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.368 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-42.981 tm_pt_6=-18.444 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-5.984 tm_pt_11=-0.000 tm_pt_12=-10.770 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.048
-0 ||| of rabindranath was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.300 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-40.899 tm_pt_6=-16.777 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-8.597 tm_pt_11=-0.000 tm_pt_12=-8.002 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.066
-0 ||| rabindranath was born the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.851 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-30.603 tm_pt_6=-14.973 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-13.968 tm_pt_11=-0.000 tm_pt_12=-5.649 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.099
-0 ||| rabindranath was born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.485 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-39.242 tm_pt_6=-17.105 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-10.941 tm_pt_11=-0.000 tm_pt_12=-11.045 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.106
-0 ||| the birth of rabindranath was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.396 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.037 tm_pt_6=-14.660 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-10.756 tm_pt_11=-0.000 tm_pt_12=-6.172 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.106
-0 ||| rabindranath 's was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.348 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.023 tm_pt_6=-17.168 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-10.469 tm_pt_11=-0.000 tm_pt_12=-8.351 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.112
-0 ||| rabindranath 's birth was in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.597 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.388 tm_pt_6=-15.913 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-7.800 tm_pt_11=-0.000 tm_pt_12=-6.237 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.146
-0 ||| rabindranath was born in a in kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.017 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-36.789 tm_pt_6=-15.727 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-8.486 tm_pt_11=-0.000 tm_pt_12=-10.220 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.151
-0 ||| rabindranath born in the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.790 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.045 tm_pt_6=-16.046 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.368 tm_pt_10=-7.585 tm_pt_11=-0.000 tm_pt_12=-6.361 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.154
-0 ||| rabindranath was born of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.610 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.519 tm_pt_6=-15.452 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-8.959 tm_pt_11=-0.000 tm_pt_12=-6.748 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.155
-0 ||| rabindranath tagore was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.923 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.685 tm_pt_6=-16.872 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.154 tm_pt_10=-10.932 tm_pt_11=-0.000 tm_pt_12=-9.736 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.157
-0 ||| rabindranath was born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.537 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.755 tm_pt_6=-16.820 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.019 tm_pt_10=-8.668 tm_pt_11=-0.000 tm_pt_12=-10.129 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.162
-0 ||| rabindranath 's birth in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.638 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.803 tm_pt_6=-17.273 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-5.861 tm_pt_11=-0.000 tm_pt_12=-7.186 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.182
-0 ||| rabindranath 's birth was the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.230 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.408 tm_pt_6=-15.126 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-9.547 tm_pt_11=-0.000 tm_pt_12=-6.640 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.199
-0 ||| the birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.812 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.924 tm_pt_6=-16.812 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.008 tm_pt_10=-13.934 tm_pt_11=-0.000 tm_pt_12=-8.097 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.237
-0 ||| rabindranath was born in a in the \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.999 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-40.497 tm_pt_6=-15.789 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.154 tm_pt_10=-10.162 tm_pt_11=-0.000 tm_pt_12=-10.690 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.237
-0 ||| rabindranath was born in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.679 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.805 tm_pt_6=-16.897 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-14.507 tm_pt_11=-0.000 tm_pt_12=-9.436 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.245
-0 ||| rabindranath born in in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.150 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.851 tm_pt_6=-16.333 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-9.070 tm_pt_11=-0.000 tm_pt_12=-4.975 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.254
-0 ||| tagore 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.414 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.875 tm_pt_6=-17.135 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-8.049 tm_pt_11=-0.000 tm_pt_12=-8.790 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.258
-0 ||| rabindranath 's birth was kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.051 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-29.629 tm_pt_6=-14.523 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-8.685 tm_pt_11=-0.000 tm_pt_12=-4.453 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.264
-0 ||| rabindranath born was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.663 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.040 tm_pt_6=-15.387 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-6.025 tm_pt_11=-0.000 tm_pt_12=-3.844 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.266
-0 ||| rabindranath was born in in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.074 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.481 tm_pt_6=-16.225 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-13.743 tm_pt_11=-0.000 tm_pt_12=-10.321 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.272
-0 ||| rabindranath was born kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.917 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-26.896 tm_pt_6=-14.883 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-11.870 tm_pt_11=-0.000 tm_pt_12=-6.055 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.277
-0 ||| rabindranath 's birth kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.328 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-28.859 tm_pt_6=-15.520 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.368 tm_pt_10=-9.581 tm_pt_11=-0.000 tm_pt_12=-5.735 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.278
-0 ||| rabindranath 's birth was of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.866 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.253 tm_pt_6=-15.092 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-5.774 tm_pt_11=-0.000 tm_pt_12=-5.146 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.292
-0 ||| rabindranath was born in a of kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.184 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-38.591 tm_pt_6=-15.965 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-6.595 tm_pt_11=-0.000 tm_pt_12=-10.220 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.294
-0 ||| rabindranath born in calcutta a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.253 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.656 tm_pt_6=-17.571 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.135 tm_pt_10=-10.666 tm_pt_11=-0.000 tm_pt_12=-5.956 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.332
-0 ||| rabindranath 's birth was kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-33.075 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.003 tm_pt_6=-16.024 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-4.552 tm_pt_11=-0.000 tm_pt_12=-5.767 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.342
-0 ||| rabindranath was born in kolkata in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.027 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.019 tm_pt_6=-16.476 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-9.739 tm_pt_11=-0.000 tm_pt_12=-11.045 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.352
-0 ||| rabindranath was born kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.941 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.270 tm_pt_6=-16.385 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.737 tm_pt_11=-0.000 tm_pt_12=-7.369 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.355
-0 ||| rabindranath 's born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.357 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-31.955 tm_pt_6=-16.334 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.260 tm_pt_11=-0.000 tm_pt_12=-6.485 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.360
-0 ||| rabindranath was born in a kolkata 's \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.395 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-36.777 tm_pt_6=-16.030 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.142 tm_pt_10=-6.749 tm_pt_11=-0.000 tm_pt_12=-10.508 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.376
-0 ||| of rabindranath was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.921 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.884 tm_pt_6=-17.213 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-11.049 tm_pt_11=-0.000 tm_pt_12=-8.512 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.395
-0 ||| rabindranath born was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.870 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.833 tm_pt_6=-15.971 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-9.175 tm_pt_11=-0.000 tm_pt_12=-3.366 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.405
-0 ||| rabindranath born in of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.326 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.653 tm_pt_6=-16.571 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.179 tm_pt_11=-0.000 tm_pt_12=-4.975 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.407
-0 ||| rabindranath 's birth in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.015 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.287 tm_pt_6=-17.767 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.547 tm_pt_11=-0.000 tm_pt_12=-8.495 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.423
-0 ||| rabindranath 's born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.534 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.662 tm_pt_6=-16.425 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.358 tm_pt_11=-0.000 tm_pt_12=-6.080 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.482
-0 ||| rabindranath born was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.877 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-30.409 tm_pt_6=-15.712 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.135 tm_pt_10=-11.726 tm_pt_11=-0.000 tm_pt_12=-4.825 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.486
-0 ||| rabindranath birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.247 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-33.981 tm_pt_6=-15.813 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.927 tm_pt_11=-0.000 tm_pt_12=-6.893 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.492
-0 ||| rabindranath 's birth in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.209 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.541 tm_pt_6=-16.244 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-11.020 tm_pt_11=-0.000 tm_pt_12=-7.771 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.508
-0 ||| rabindranath born in in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.276 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.559 tm_pt_6=-16.395 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-10.746 tm_pt_11=-0.000 tm_pt_12=-5.445 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.518
-0 ||| of rabindranath born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.709 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.274 tm_pt_6=-16.505 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.233 tm_pt_11=-0.000 tm_pt_12=-7.263 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.520
-0 ||| rabindranath was born the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.191 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-29.833 tm_pt_6=-15.971 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.428 tm_pt_11=-0.000 tm_pt_12=-6.270 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.534
-0 ||| the birth of rabindranath was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.736 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.267 tm_pt_6=-15.658 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-9.216 tm_pt_11=-0.000 tm_pt_12=-6.792 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.541
-0 ||| of rabindranath was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.918 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-40.342 tm_pt_6=-17.339 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-10.443 tm_pt_11=-0.000 tm_pt_12=-9.128 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.542
-0 ||| rabindranath was born in a kolkata is \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.565 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-37.112 tm_pt_6=-15.900 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-6.914 tm_pt_11=-0.000 tm_pt_12=-10.220 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.542
-0 ||| rabindranath 's birth was in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.291 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-32.372 tm_pt_6=-16.349 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-10.253 tm_pt_11=-0.000 tm_pt_12=-6.748 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.566
-0 ||| rabindranath tagore was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.561 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-42.085 tm_pt_6=-18.710 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.504 tm_pt_10=-8.293 tm_pt_11=-0.000 tm_pt_12=-13.282 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.568
-0 ||| rabindranath was born in kolkata of \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.820 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.605 tm_pt_6=-18.737 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.002 tm_pt_10=-13.301 tm_pt_11=-0.000 tm_pt_12=-9.659 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.572
-0 ||| rabindranath 's birth the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.115 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-32.385 tm_pt_6=-15.331 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.585 tm_pt_11=-0.000 tm_pt_12=-4.942 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.575
-0 ||| rabindranath born the kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.727 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.796 tm_pt_6=-16.196 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.925 tm_pt_11=-0.000 tm_pt_12=-4.333 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.577
-0 ||| rabindranath tagore born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.295 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.203 tm_pt_6=-17.105 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-9.976 tm_pt_11=-0.000 tm_pt_12=-9.691 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.598
-0 ||| rabindranath born was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.539 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.862 tm_pt_6=-15.484 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-3.000 tm_pt_10=-5.706 tm_pt_11=-0.000 tm_pt_12=-5.923 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.607
-0 ||| rabindranath 's birth in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.202 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.142 tm_pt_6=-17.262 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.139 tm_pt_11=-0.000 tm_pt_12=-7.802 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.621
-0 ||| rabindranath was born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.109 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.721 tm_pt_6=-18.241 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.375 tm_pt_10=-8.182 tm_pt_11=-0.000 tm_pt_12=-11.672 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.624
-0 ||| rabindranath 's birth was the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.807 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.645 tm_pt_6=-14.567 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.368 tm_pt_10=-6.179 tm_pt_11=-0.000 tm_pt_12=-6.532 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.628
-0 ||| rabindranath tagore was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.541 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.127 tm_pt_6=-17.434 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-12.778 tm_pt_11=-0.000 tm_pt_12=-10.863 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.632
-0 ||| of rabindranath born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.886 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.981 tm_pt_6=-16.595 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.331 tm_pt_11=-0.000 tm_pt_12=-6.857 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.642
-0 ||| rabindranath born in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.944 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.117 tm_pt_6=-17.713 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.000 tm_pt_10=-14.170 tm_pt_11=-0.000 tm_pt_12=-6.094 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.652
-0 ||| rabindranath 's birth the kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.139 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.759 tm_pt_6=-16.833 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.452 tm_pt_11=-0.000 tm_pt_12=-6.257 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.653
-0 ||| rabindranath 's birth was in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.950 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.825 tm_pt_6=-16.121 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-4.234 tm_pt_11=-0.000 tm_pt_12=-7.846 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.683
-0 ||| rabindranath tagore 's birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.324 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.166 tm_pt_6=-17.482 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-7.097 tm_pt_11=-0.000 tm_pt_12=-10.509 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.695
-0 ||| rabindranath 's was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.759 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-43.422 tm_pt_6=-16.121 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-8.928 tm_pt_11=-0.000 tm_pt_12=-9.195 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.706
-0 ||| rabindranath 's birth in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.241 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-41.644 tm_pt_6=-16.788 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-6.166 tm_pt_11=-0.000 tm_pt_12=-9.158 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.722
-0 ||| rabindranath tagore 's was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.961 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.673 tm_pt_6=-15.885 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-9.560 tm_pt_11=-0.000 tm_pt_12=-9.744 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.746
-0 ||| rabindranath 's birth was in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-33.336 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.522 tm_pt_6=-15.366 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.429 tm_pt_11=-0.000 tm_pt_12=-7.739 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.747
-0 ||| rabindranath was born in the at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.924 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-39.462 tm_pt_6=-16.882 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.037 tm_pt_10=-10.344 tm_pt_11=-0.000 tm_pt_12=-10.599 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.750
-0 ||| rabindranath born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.697 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.285 tm_pt_6=-16.671 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-3.000 tm_pt_10=-10.722 tm_pt_11=-0.000 tm_pt_12=-9.272 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.760
-0 ||| rabindranath 's birth in the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.649 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.778 tm_pt_6=-15.685 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.368 tm_pt_10=-7.652 tm_pt_11=-0.000 tm_pt_12=-7.664 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.769
-0 ||| rabindranath 's birth was in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-33.193 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-33.681 tm_pt_6=-15.851 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.124 tm_pt_11=-0.000 tm_pt_12=-5.767 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.774
-0 ||| rabindranath born in in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.052 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-32.543 tm_pt_6=-16.831 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.135 tm_pt_10=-13.195 tm_pt_11=-0.000 tm_pt_12=-6.055 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.800
-0 ||| rabindranath born in kolkata 's in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.924 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.219 tm_pt_6=-18.257 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.007 tm_pt_10=-9.315 tm_pt_11=-0.000 tm_pt_12=-7.481 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.803
-0 ||| rabindranath was born in kolkata at a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.987 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.525 tm_pt_6=-15.875 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-9.179 tm_pt_11=-0.000 tm_pt_12=-11.738 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.813
-0 ||| rabindranath born was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.791 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-35.425 tm_pt_6=-15.276 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-9.273 tm_pt_11=-0.000 tm_pt_12=-4.314 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.820
-0 ||| of rabindranath was born kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.240 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.284 tm_pt_6=-15.891 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.889 tm_pt_11=-0.000 tm_pt_12=-6.911 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.820
-0 ||| rabindranath 's birth was kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-33.462 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.439 tm_pt_6=-15.157 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-5.928 tm_pt_11=-0.000 tm_pt_12=-5.434 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.852
-0 ||| rabindranath 's birth was is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.729 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.465 tm_pt_6=-16.092 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.050 tm_pt_10=-11.264 tm_pt_11=-0.000 tm_pt_12=-5.938 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.861
-0 ||| rabindranath was born kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.328 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.706 tm_pt_6=-15.517 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-9.113 tm_pt_11=-0.000 tm_pt_12=-7.036 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.865
-0 ||| rabindranath was born is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.595 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-30.731 tm_pt_6=-16.453 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.050 tm_pt_10=-14.449 tm_pt_11=-0.000 tm_pt_12=-7.540 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.874
-0 ||| rabindranath born in is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-27.115 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-32.865 tm_pt_6=-17.571 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.050 tm_pt_10=-12.669 tm_pt_11=-0.000 tm_pt_12=-5.767 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -230.885
-0 ||| rabindranath 's born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.874 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-34.892 tm_pt_6=-17.422 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.818 tm_pt_11=-0.000 tm_pt_12=-6.701 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.917
-0 ||| rabindranath tagore 's born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.022 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.129 tm_pt_6=-17.177 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-8.740 tm_pt_11=-0.000 tm_pt_12=-10.789 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.926
-0 ||| rabindranath 's was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.753 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-42.899 tm_pt_6=-16.216 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.001 tm_pt_10=-9.120 tm_pt_11=-0.000 tm_pt_12=-11.123 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.930
-0 ||| rabindranath 's birth in in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.061 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.584 tm_pt_6=-15.972 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-9.138 tm_pt_11=-0.000 tm_pt_12=-6.277 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.933
-0 ||| rabindranath tagore birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.067 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.011 tm_pt_6=-16.411 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.136 tm_pt_10=-9.874 tm_pt_11=-0.000 tm_pt_12=-8.790 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.935
-0 ||| rabindranath born was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.975 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-31.718 tm_pt_6=-15.214 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.597 tm_pt_11=-0.000 tm_pt_12=-3.844 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.939
-0 ||| rabindranath 's born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.769 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-36.765 tm_pt_6=-16.968 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-7.503 tm_pt_11=-0.000 tm_pt_12=-7.466 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.948
-0 ||| rabindranath born in in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.616 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.789 tm_pt_6=-17.392 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-9.206 tm_pt_11=-0.000 tm_pt_12=-6.066 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.953
-0 ||| the birth of rabindranath was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.657 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-41.859 tm_pt_6=-14.962 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.037 tm_pt_10=-9.314 tm_pt_11=-0.000 tm_pt_12=-7.740 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.956
-0 ||| rabindranath 's birth was the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.825 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.716 tm_pt_6=-16.234 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-12.764 tm_pt_11=-0.000 tm_pt_12=-6.265 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -230.958
-0 ||| rabindranath 's birth of kolkata was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.841 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-41.324 tm_pt_6=-15.605 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-6.975 tm_pt_11=-0.000 tm_pt_12=-8.400 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -230.966
-0 ||| rabindranath born in kolkata was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.429 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-36.789 tm_pt_6=-15.727 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.369 tm_pt_10=-8.799 tm_pt_11=-0.000 tm_pt_12=-7.098 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -230.967
-0 ||| of rabindranath was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.136 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-48.178 tm_pt_6=-16.500 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-5.335 tm_pt_11=-0.000 tm_pt_12=-11.583 tm_pt_13=-0.000 tm_pt_14=-12.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.949 OOVPenalty=2.000 ||| -230.996
-0 ||| birth of rabindranath tagore was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.182 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.063 tm_pt_6=-14.879 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.368 tm_pt_10=-10.756 tm_pt_11=-0.000 tm_pt_12=-7.088 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.004
-0 ||| rabindranath 's birth in calcutta a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.163 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-32.389 tm_pt_6=-17.211 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-10.733 tm_pt_11=-0.000 tm_pt_12=-7.258 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.010
-0 ||| rabindranath born in kolkata is at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.974 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.211 tm_pt_6=-18.112 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.019 tm_pt_10=-5.316 tm_pt_11=-0.000 tm_pt_12=-8.356 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.021
-0 ||| rabindranath was born in in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-25.669 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.789 tm_pt_6=-17.333 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.135 tm_pt_10=-16.960 tm_pt_11=-0.000 tm_pt_12=-9.947 tm_pt_13=-0.000 tm_pt_14=-8.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.212 OOVPenalty=2.000 ||| -231.031
-0 ||| of rabindranath born in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.435 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-37.962 tm_pt_6=-15.717 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-10.177 tm_pt_11=-0.000 tm_pt_12=-7.486 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.061
-0 ||| the birth of rabindranath was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.841 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.152 tm_pt_6=-14.901 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.019 tm_pt_10=-7.638 tm_pt_11=-0.000 tm_pt_12=-7.270 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.075
-0 ||| of rabindranath born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.226 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.211 tm_pt_6=-17.593 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-10.791 tm_pt_11=-0.000 tm_pt_12=-7.478 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.077
-0 ||| rabindranath 's born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.064 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-42.171 tm_pt_6=-17.351 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.432 tm_pt_11=-0.000 tm_pt_12=-9.771 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.078
-0 ||| rabindranath 's was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.351 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-32.565 tm_pt_6=-17.042 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.503 tm_pt_10=-9.754 tm_pt_11=-0.000 tm_pt_12=-8.177 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=6.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.081
-0 ||| rabindranath 's birth in of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.236 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-38.386 tm_pt_6=-16.210 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-7.247 tm_pt_11=-0.000 tm_pt_12=-6.277 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.086
-0 ||| rabindranath 's birth the in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.183 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.914 tm_pt_6=-15.724 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-11.241 tm_pt_11=-0.000 tm_pt_12=-6.106 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.089
-0 ||| rabindranath born in in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.659 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.226 tm_pt_6=-17.600 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-3.000 tm_pt_10=-5.639 tm_pt_11=-0.000 tm_pt_12=-7.676 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.106
-0 ||| of rabindranath born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.121 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.084 tm_pt_6=-17.139 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-7.477 tm_pt_11=-0.000 tm_pt_12=-8.244 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.108
-0 ||| rabindranath tagore 's birth of kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.042 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.282 tm_pt_6=-15.430 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.369 tm_pt_10=-9.283 tm_pt_11=-0.000 tm_pt_12=-9.418 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.114
-0 ||| rabindranath was born in a in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-26.068 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-4.000 tm_pt_5=-35.481 tm_pt_6=-16.225 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.271 tm_pt_10=-12.615 tm_pt_11=-0.000 tm_pt_12=-11.201 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=5.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.120
-0 ||| of rabindranath was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.329 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-46.741 tm_pt_6=-16.292 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-8.902 tm_pt_11=-0.000 tm_pt_12=-9.973 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.135
-0 ||| rabindranath born in the at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.189 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.774 tm_pt_6=-17.698 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-10.007 tm_pt_11=-0.000 tm_pt_12=-7.257 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.156
-0 ||| rabindranath 's birth the kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.526 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.195 tm_pt_6=-15.965 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.007 tm_pt_10=-7.828 tm_pt_11=-0.000 tm_pt_12=-5.923 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.163
-0 ||| rabindranath was born in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.711 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-45.563 tm_pt_6=-17.756 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.375 tm_pt_10=-8.487 tm_pt_11=-0.000 tm_pt_12=-13.644 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.164
-0 ||| rabindranath born in in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.045 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-38.923 tm_pt_6=-16.845 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.835 tm_pt_11=-0.000 tm_pt_12=-7.568 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.170
-0 ||| rabindranath tagore 's birth was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.098 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-35.366 tm_pt_6=-14.952 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-11.855 tm_pt_11=-0.000 tm_pt_12=-7.658 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.172
-0 ||| rabindranath tagore 's was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.524 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-45.781 tm_pt_6=-17.785 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.369 tm_pt_10=-8.596 tm_pt_11=-0.000 tm_pt_12=-13.760 tm_pt_13=-0.000 tm_pt_14=-12.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.949 OOVPenalty=2.000 ||| -231.173
-0 ||| rabindranath 's was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.271 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-43.417 tm_pt_6=-17.576 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.375 tm_pt_10=-7.360 tm_pt_11=-0.000 tm_pt_12=-10.436 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.195
-0 ||| rabindranath 's birth in in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.186 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-40.292 tm_pt_6=-16.034 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-10.814 tm_pt_11=-0.000 tm_pt_12=-6.747 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.197
-0 ||| rabindranath born in in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.902 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.081 tm_pt_6=-17.330 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.001 tm_pt_10=-7.530 tm_pt_11=-0.000 tm_pt_12=-5.596 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.198
-0 ||| rabindranath born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.156 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-33.066 tm_pt_6=-17.608 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-7.909 tm_pt_11=-0.000 tm_pt_12=-7.663 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.212
-0 ||| rabindranath 's birth was in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-32.627 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-43.230 tm_pt_6=-15.428 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.018 tm_pt_10=-8.105 tm_pt_11=-0.000 tm_pt_12=-8.209 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.215
-0 ||| rabindranath tagore was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-29.953 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-42.526 tm_pt_6=-16.388 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.154 tm_pt_10=-11.237 tm_pt_11=-0.000 tm_pt_12=-11.708 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.226
-0 ||| the born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.112 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-39.116 tm_pt_6=-17.505 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.008 tm_pt_10=-14.036 tm_pt_11=-0.000 tm_pt_12=-8.997 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.227
-0 ||| of rabindranath born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.416 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-45.490 tm_pt_6=-17.522 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.001 tm_pt_10=-6.405 tm_pt_11=-0.000 tm_pt_12=-10.548 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.238
-0 ||| rabindranath born was in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.131 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-5.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.655 tm_pt_6=-16.274 tm_pt_7=-5.000 tm_pt_8=-13.590 tm_pt_9=-2.018 tm_pt_10=-7.733 tm_pt_11=-0.000 tm_pt_12=-4.935 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.254
-0 ||| rabindranath tagore 's birth in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-30.815 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-33.792 tm_pt_6=-15.980 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-2.000 tm_pt_10=-11.230 tm_pt_11=-0.000 tm_pt_12=-9.195 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.255
-0 ||| the was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.219 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-36.660 tm_pt_6=-16.213 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.008 tm_pt_10=-14.856 tm_pt_11=-0.000 tm_pt_12=-7.952 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=7.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.256
-0 ||| rabindranath 's birth in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-28.803 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.850 tm_pt_6=-17.353 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-14.237 tm_pt_11=-0.000 tm_pt_12=-7.397 tm_pt_13=-0.000 tm_pt_14=-9.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-5.646 OOVPenalty=2.000 ||| -231.267
-0 ||| rabindranath 's born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-31.251 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-6.000 tm_pt_5=-37.026 tm_pt_6=-16.847 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.000 tm_pt_10=-9.025 tm_pt_11=-0.000 tm_pt_12=-9.078 tm_pt_13=-0.000 tm_pt_14=-10.000 tm_pt_15=-0.000 tm_pt_16=-0.000 tm_glue_0=8.000 WordPenalty=-6.080 OOVPenalty=2.000 ||| -231.276
-0 ||| birth of rabindranath tagore was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| lm_0=-33.315 tm_pt_0=-0.000 tm_pt_1=-0.000 tm_pt_2=-6.000 tm_pt_3=-0.000 tm_pt_4=-5.000 tm_pt_5=-34.500 tm_pt_6=-15.293 tm_pt_7=-6.000 tm_pt_8=-16.308 tm_pt_9=-1.369 tm_pt_10=-6.066 tm_pt_11=-0.000 tm_pt_12=-8.186 tm_pt_13=-0.000 tm_pt_14=-11.000 tm_pt_15=-0.000 tm_pt_16=-1.000 tm_glue_0=7.000 WordPenalty=-6.514 OOVPenalty=2.000 ||| -231.299
-0 ||| rabindranath 's born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family |

<TRUNCATED>


[07/10] incubator-joshua git commit: Removed unused regression test metadata

Posted by mj...@apache.org.
Removed unused regression test metadata


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/510c7707
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/510c7707
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/510c7707

Branch: refs/heads/master
Commit: 510c770710d1356b5f8a0ce98dd6b751a68efb90
Parents: a833bd6
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 17:55:12 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 17:55:12 2016 +0200

----------------------------------------------------------------------
 .../decoder/metadata/add_rule/output.gold       |  4 ---
 .../resources/decoder/metadata/add_rule/test.sh | 32 --------------------
 2 files changed, 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/510c7707/src/test/resources/decoder/metadata/add_rule/output.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/metadata/add_rule/output.gold b/src/test/resources/decoder/metadata/add_rule/output.gold
deleted file mode 100644
index c4f4e89..0000000
--- a/src/test/resources/decoder/metadata/add_rule/output.gold
+++ /dev/null
@@ -1,4 +0,0 @@
-0 ||| foo ||| tm_glue_0=1.000 OOVPenalty=-100.000 ||| -100.000
-1 ||| bar ||| tm_glue_0=1.000 OOVPenalty=0.000 custom=1.000 ||| 0.000
-0 ||| foo ||| tm_glue_0=0.000 OOVPenalty=-100.000 ||| -100.000
-1 ||| bar ||| tm_glue_0=0.000 OOVPenalty=0.000 custom=1.000 ||| 0.000

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/510c7707/src/test/resources/decoder/metadata/add_rule/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/metadata/add_rule/test.sh b/src/test/resources/decoder/metadata/add_rule/test.sh
deleted file mode 100644
index 71b7502..0000000
--- a/src/test/resources/decoder/metadata/add_rule/test.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-# Tests the decoder's ability to add and use rules added to it at runtime, for both CKY and stack decoding
-
-(echo -e "foo\n| add_rule foo ,,, bar | foo" | joshua -feature-function OOVPenalty -weight-overwrite "OOVPenalty 1" -v 0
-echo -e "foo\n| add_rule foo ,,, bar | foo" | joshua -feature-function OOVPenalty -weight-overwrite "OOVPenalty 1" -v 0 -search stack) > output
-
-diff -u output output.gold > diff
-
-if [ $? -eq 0 ]; then
-    rm -f log output diff
-    exit 0
-else
-    exit 1
-fi


[02/10] incubator-joshua git commit: Removed unused test fragmentlm

Posted by mj...@apache.org.
Removed unused test fragmentlm


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/cb42ce6b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/cb42ce6b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/cb42ce6b

Branch: refs/heads/master
Commit: cb42ce6ba992bdd5522e301174500137f19c396e
Parents: fa247ca
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 15:32:01 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 15:32:01 2016 +0200

----------------------------------------------------------------------
 .../resources/decoder/fragmentlm/fragments.txt  |   7 --
 src/test/resources/decoder/fragmentlm/glue      |   1 -
 src/test/resources/decoder/fragmentlm/grammar   |   4 -
 src/test/resources/decoder/fragmentlm/input     |   1 -
 .../resources/decoder/fragmentlm/joshua.config  | 109 -------------------
 .../resources/decoder/fragmentlm/mapping.txt    |   4 -
 src/test/resources/decoder/fragmentlm/test.sh   |  30 -----
 7 files changed, 156 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/fragments.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/fragments.txt b/src/test/resources/decoder/fragmentlm/fragments.txt
deleted file mode 100644
index 2f1ce7c..0000000
--- a/src/test/resources/decoder/fragmentlm/fragments.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-(S NP (VP (VBD "said") SBAR) (. "."))
-(S (NP (DT "the") (NN "man")) (VP (VBD "said") (SBAR (IN "that") (S (NP (PRP "he")) (VP (VBD "was") (VB "done"))))) (. "."))
-(S NP VP (. "."))
-(NP (DT "the") (NN "man"))
-(NN "man")
-(VP (VBD "said"))
-(VP (VBD "said") SBAR)

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/glue
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/glue b/src/test/resources/decoder/fragmentlm/glue
deleted file mode 100644
index dae682b..0000000
--- a/src/test/resources/decoder/fragmentlm/glue
+++ /dev/null
@@ -1 +0,0 @@
-[GOAL] ||| <s> [S,1] </s> ||| <s> [S,1] </s> ||| 0

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/grammar
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/grammar b/src/test/resources/decoder/fragmentlm/grammar
deleted file mode 100644
index 0488e69..0000000
--- a/src/test/resources/decoder/fragmentlm/grammar
+++ /dev/null
@@ -1,4 +0,0 @@
-[S] ||| the man [VP,1] [.,2] ||| the man [VP,1] [.,2] ||| 1
-[SBAR] ||| that he was done ||| that he was done ||| 1
-[VP] ||| said [SBAR,1] ||| said [SBAR,1] ||| 1
-[.] ||| . ||| . ||| 1

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/input
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/input b/src/test/resources/decoder/fragmentlm/input
deleted file mode 100644
index 4643dbb..0000000
--- a/src/test/resources/decoder/fragmentlm/input
+++ /dev/null
@@ -1 +0,0 @@
-the man said that he was done .

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/joshua.config
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/joshua.config b/src/test/resources/decoder/fragmentlm/joshua.config
deleted file mode 100644
index 6f88ec8..0000000
--- a/src/test/resources/decoder/fragmentlm/joshua.config
+++ /dev/null
@@ -1,109 +0,0 @@
-# This file is a template for the Joshua pipeline; variables enclosed
-# in <angle-brackets> are substituted by the pipeline script as
-# appropriate.  This file also serves to document Joshua's many
-# parameters.
-
-# These are the grammar file specifications.  Joshua supports an
-# arbitrary number of grammar files, each specified on its own line
-# using the following format:
-#
-#   tm = TYPE OWNER LIMIT FILE
-# 
-# TYPE is "packed", "thrax", or "samt".  The latter denotes the format
-# used in Zollmann and Venugopal's SAMT decoder
-# (http://www.cs.cmu.edu/~zollmann/samt/).
-# 
-# OWNER is the "owner" of the rules in the grammar; this is used to
-# determine which set of phrasal features apply to the grammar's
-# rules.  Having different owners allows different features to be
-# applied to different grammars, and for grammars to share features
-# across files.
-#
-# LIMIT is the maximum input span permitted for the application of
-# grammar rules found in the grammar file.  A value of -1 implies no limit.
-#
-# FILE is the grammar file (or directory when using packed grammars).
-# The file can be compressed with gzip, which is determined by the
-# presence or absence of a ".gz" file extension.
-#
-# By a convention defined by Chiang (2007), the grammars are split
-# into two files: the main translation grammar containing all the
-# learned translation rules, and a glue grammar which supports
-# monotonic concatenation of hierarchical phrases. The glue grammar's
-# main distinction from the regular grammar is that the span limit
-# does not apply to it.  
-
-tm = thrax pt 20 grammar
-tm = thrax glue -1 glue
-
-# This symbol is used over unknown words in the source language
-
-default-non-terminal = OOV
-
-# This is the goal nonterminal, used to determine when a complete
-# parse is found.  It should correspond to the root-level rules in the
-# glue grammar.
-
-goal-symbol = GOAL
-
-# Language model config.
-
-# Multiple language models are supported.  For each language model,
-# create a line in the following format, 
-#
-# lm = TYPE 5 false false 100 FILE
-#
-# where the six fields correspond to the following values:
-# - LM type: one of "kenlm", "berkeleylm", "javalm" (not recommended), or "none"
-# - LM order: the N of the N-gram language model
-# - whether to use left equivalent state (currently not supported)
-# - whether to use right equivalent state (currently not supported)
-# - the ceiling cost of any n-gram (currently ignored)
-# - LM file: the location of the language model file
-# You also need to add a weight for each language model below.
-
-# The suffix _OOV is appended to unknown source-language words if this
-# is set to true.
-
-mark-oovs = false
-
-# The pop-limit for decoding.  This determines how many hypotheses are
-# considered over each span of the input.
-
-pop-limit = 100
-
-# How many hypotheses to output
-
-top-n = 300
-
-# Whether those hypotheses should be distinct strings
-
-use-unique-nbest = true
-
-# This is the default format of the ouput printed to STDOUT.  The variables that can be
-# substituted are:
-#
-# %i: the sentence number (0-indexed)
-# %s: the translated sentence
-# %t: the derivation tree
-# %f: the feature string
-# %c: the model cost
-
-output-format = %i ||| %s ||| %f ||| %c
-
-# When printing the trees (%t in 'output-format'), this controls whether the alignments
-# are also printed.
-
-include-align-index = false
-
-## Feature functions and weights.
-
-# And these are the feature functions to activate.
-feature_function = OOVPenalty
-feature_function = WordPenalty
-
-tm_pt_0 0
-tm_glue_0 0
-
-OOVPenalty 1
-WordPenalty -1

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/mapping.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/mapping.txt b/src/test/resources/decoder/fragmentlm/mapping.txt
deleted file mode 100644
index af6191d..0000000
--- a/src/test/resources/decoder/fragmentlm/mapping.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-(S (NP (DT "the") (NN "man")) VP .) ||| the man [VP,1] [.,2]
-(SBAR (IN "that") (S (NP (PRP "he")) (VP (VBD "was") (VB "done")))) ||| that he was done
-(VP (VBD "said") SBAR) ||| said [SBAR,1]
-(. ".") ||| .

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/cb42ce6b/src/test/resources/decoder/fragmentlm/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/fragmentlm/test.sh b/src/test/resources/decoder/fragmentlm/test.sh
deleted file mode 100644
index ce5b3b7..0000000
--- a/src/test/resources/decoder/fragmentlm/test.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-cat input | $JOSHUA/bin/decoder -config joshua.config -feature_function "FragmentLM -lm fragments.txt -build-depth 1" -fragment-map mapping.txt > output 2> log
-
-# Compare
-diff -u output output.gold > diff
-
-if [ $? -eq 0 ]; then
-	rm -f diff log output output.scores
-	exit 0
-else
-	exit 1
-fi


[09/10] incubator-joshua git commit: Moved regression test decoder/n-ary to unit test. Cleaned up the corresponding directory and regenerated gold output.

Posted by mj...@apache.org.
Moved regression test decoder/n-ary to unit test. Cleaned up the corresponding directory and regenerated gold output.


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/d51169a0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/d51169a0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/d51169a0

Branch: refs/heads/master
Commit: d51169a09dd9ec26f60617d663857c6a9f3f5a5f
Parents: 4c5285e
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 19:20:00 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 19:20:00 2016 +0200

----------------------------------------------------------------------
 .../org/apache/joshua/decoder/cky/NAryTest.java | 64 ++++++++++++++++++++
 src/test/resources/decoder/n-ary/gold.scores    |  2 -
 src/test/resources/decoder/n-ary/joshua.config  | 10 +--
 src/test/resources/decoder/n-ary/output.bleu    |  0
 src/test/resources/decoder/n-ary/output.gold    |  4 +-
 5 files changed, 72 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d51169a0/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java b/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
new file mode 100644
index 0000000..31a347a
--- /dev/null
+++ b/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
@@ -0,0 +1,64 @@
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class NAryTest {
+  private JoshuaConfiguration joshuaConfig;
+  private Decoder decoder;
+
+  @AfterMethod
+  public void tearDown() throws Exception {
+    if (decoder != null) {
+      decoder.cleanUp();
+      decoder = null;
+    }
+  }
+
+  @Test
+  public void givenInput_whenNAryDecoding_thenScoreAndTranslationCorrect() throws Exception {
+    // Given
+    List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/input.txt");
+
+    // When
+    configureDecoder("src/test/resources/decoder/n-ary/joshua.config");
+    List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+    // Then
+    List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/output.gold");
+    assertEquals(decodedStrings, goldStrings);
+  }
+
+  public void configureDecoder(String pathToConfig) throws Exception {
+    joshuaConfig = new JoshuaConfiguration();
+    joshuaConfig.readConfigFile(pathToConfig);
+    KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
+  }
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d51169a0/src/test/resources/decoder/n-ary/gold.scores
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/gold.scores b/src/test/resources/decoder/n-ary/gold.scores
deleted file mode 100644
index ba1ee94..0000000
--- a/src/test/resources/decoder/n-ary/gold.scores
+++ /dev/null
@@ -1,2 +0,0 @@
- Goats eat cheese  |||  -11.503
- i will go home  |||  -4.414

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d51169a0/src/test/resources/decoder/n-ary/joshua.config
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/joshua.config b/src/test/resources/decoder/n-ary/joshua.config
index c2b2b48..1710c50 100644
--- a/src/test/resources/decoder/n-ary/joshua.config
+++ b/src/test/resources/decoder/n-ary/joshua.config
@@ -1,7 +1,7 @@
-lm = kenlm 5 false false 100 lm.gz
+lm = kenlm 5 false false 100 src/test/resources/decoder/n-ary/lm.gz
 
-tm = thrax phrase 20 grammar
-tm = thrax glue -1 glue-grammar
+tm = thrax phrase 20 src/test/resources/decoder/n-ary/grammar
+tm = thrax glue -1 src/test/resources/decoder/n-ary/glue-grammar
 
 mark_oovs = true
 
@@ -17,6 +17,8 @@ use_tree_nbest = false
 add_combined_cost = true
 top_n = 1
 
-weights-file = weights
+output-format = %c %s
+
+weights-file = src/test/resources/decoder/n-ary/weights
 feature-function = WordPenalty
 feature-function = OOVPenalty

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d51169a0/src/test/resources/decoder/n-ary/output.bleu
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/output.bleu b/src/test/resources/decoder/n-ary/output.bleu
deleted file mode 100644
index e69de29..0000000

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d51169a0/src/test/resources/decoder/n-ary/output.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/output.gold b/src/test/resources/decoder/n-ary/output.gold
index e2c051b..742b98c 100644
--- a/src/test/resources/decoder/n-ary/output.gold
+++ b/src/test/resources/decoder/n-ary/output.gold
@@ -1,2 +1,2 @@
-0 ||| Goats eat cheese ||| WordPenalty=-2.171 lm_0=-16.587 tm_glue_0=1.000 ||| -11.503
-1 ||| i will go home ||| WordPenalty=-2.606 lm_0=-12.155 tm_glue_0=1.000 ||| -4.414
+-11.503 Goats eat cheese
+-4.414 i will go home


[08/10] incubator-joshua git commit: Marked that decoder/moses-compat needs to be moved to unit test once JoshuaDecoder cli is testable.

Posted by mj...@apache.org.
Marked that decoder/moses-compat needs to be moved to unit test once JoshuaDecoder cli is testable.


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/4c5285e9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/4c5285e9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/4c5285e9

Branch: refs/heads/master
Commit: 4c5285e927017597c2dd7d3fee5eb6f184ec4be4
Parents: 510c770
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 18:54:39 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 18:54:39 2016 +0200

----------------------------------------------------------------------
 src/test/resources/decoder/moses-compat/NEEDS_UPDATING | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/4c5285e9/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/moses-compat/NEEDS_UPDATING b/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
new file mode 100644
index 0000000..90402c6
--- /dev/null
+++ b/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
@@ -0,0 +1 @@
+Needs to be moved to a unit test. The parameter JoshuaConfiguration.moses is handled by JoshuaDecoder. Therefore, the CLI must be made testable before a unit test can be created.


[03/10] incubator-joshua git commit: Moved regression test decoder/left-state to unit test.

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/resources/decoder/left-state/output.scores.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/left-state/output.scores.gold b/src/test/resources/decoder/left-state/output.scores.gold
deleted file mode 100644
index 398ee9e..0000000
--- a/src/test/resources/decoder/left-state/output.scores.gold
+++ /dev/null
@@ -1,600 +0,0 @@
-0 ||| rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -226.302
-0 ||| rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -226.523
-0 ||| rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -226.884
-0 ||| rabindranath 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -227.201
-0 ||| rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -227.217
-0 ||| rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -227.707
-0 ||| of rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -227.952
-0 ||| rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -227.982
-0 ||| rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.069
-0 ||| rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.132
-0 ||| rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.160
-0 ||| rabindranath born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.266
-0 ||| rabindranath 's birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.386
-0 ||| rabindranath born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.388
-0 ||| rabindranath was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.417
-0 ||| rabindranath 's was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.437
-0 ||| of rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.534
-0 ||| rabindranath 's born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.616
-0 ||| rabindranath 's was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.637
-0 ||| rabindranath was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.745
-0 ||| of rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.777
-0 ||| rabindranath 's birth of kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.805
-0 ||| rabindranath born in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.806
-0 ||| rabindranath born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.823
-0 ||| rabindranath born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.854
-0 ||| rabindranath 's birth was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.862
-0 ||| rabindranath 's was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.863
-0 ||| of rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.866
-0 ||| rabindranath was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.892
-0 ||| rabindranath 's birth in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.945
-0 ||| rabindranath tagore was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.957
-0 ||| rabindranath born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -228.984
-0 ||| rabindranath 's birth in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.004
-0 ||| rabindranath 's birth of kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.107
-0 ||| rabindranath born in kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.108
-0 ||| rabindranath 's birth was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.157
-0 ||| rabindranath tagore was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.157
-0 ||| rabindranath was born kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.171
-0 ||| rabindranath born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.182
-0 ||| rabindranath 's was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.202
-0 ||| rabindranath born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.210
-0 ||| rabindranath 's birth was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.297
-0 ||| rabindranath was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.346
-0 ||| rabindranath 's was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.353
-0 ||| rabindranath 's birth was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.378
-0 ||| rabindranath 's was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.380
-0 ||| rabindranath tagore was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.383
-0 ||| rabindranath 's birth in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.438
-0 ||| rabindranath 's birth the kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.469
-0 ||| rabindranath 's birth in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.485
-0 ||| rabindranath was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.486
-0 ||| rabindranath 's birth was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.499
-0 ||| rabindranath born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.503
-0 ||| rabindranath tagore 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.511
-0 ||| rabindranath 's birth in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.533
-0 ||| of rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.631
-0 ||| rabindranath 's was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.637
-0 ||| rabindranath 's birth in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.663
-0 ||| rabindranath was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.710
-0 ||| rabindranath 's birth was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.711
-0 ||| of rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.718
-0 ||| rabindranath tagore was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.722
-0 ||| rabindranath born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.744
-0 ||| of rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.782
-0 ||| rabindranath 's birth in kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.787
-0 ||| rabindranath was born in a the \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.795
-0 ||| rabindranath 's born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.801
-0 ||| of rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.810
-0 ||| rabindranath was born in a kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.830
-0 ||| rabindranath 's birth was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.831
-0 ||| rabindranath 's birth in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.861
-0 ||| rabindranath tagore was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.873
-0 ||| rabindranath 's birth in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.888
-0 ||| rabindranath born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.892
-0 ||| rabindranath tagore was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.900
-0 ||| rabindranath born in in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.922
-0 ||| rabindranath born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.942
-0 ||| of rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.961
-0 ||| rabindranath born was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.971
-0 ||| rabindranath was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.975
-0 ||| rabindranath 's birth kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -229.976
-0 ||| rabindranath born in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.043
-0 ||| rabindranath 's was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.048
-0 ||| of rabindranath was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.066
-0 ||| rabindranath was born the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.099
-0 ||| rabindranath was born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.106
-0 ||| the birth of rabindranath was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.106
-0 ||| rabindranath 's was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.112
-0 ||| rabindranath 's birth was in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.146
-0 ||| rabindranath was born in a in kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.151
-0 ||| rabindranath born in the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.154
-0 ||| rabindranath was born of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.155
-0 ||| rabindranath tagore was born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.157
-0 ||| rabindranath was born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.162
-0 ||| rabindranath 's birth in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.182
-0 ||| rabindranath 's birth was the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.199
-0 ||| the birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.237
-0 ||| rabindranath was born in a in the \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.237
-0 ||| rabindranath was born in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.245
-0 ||| rabindranath born in in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.254
-0 ||| tagore 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.258
-0 ||| rabindranath 's birth was kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.264
-0 ||| rabindranath born was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.266
-0 ||| rabindranath was born in in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.272
-0 ||| rabindranath was born kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.277
-0 ||| rabindranath 's birth kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.278
-0 ||| rabindranath 's birth was of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.292
-0 ||| rabindranath was born in a of kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.294
-0 ||| rabindranath born in calcutta a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.332
-0 ||| rabindranath 's birth was kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.342
-0 ||| rabindranath was born in kolkata in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.352
-0 ||| rabindranath was born kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.355
-0 ||| rabindranath 's born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.360
-0 ||| rabindranath was born in a kolkata 's \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.376
-0 ||| of rabindranath was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.395
-0 ||| rabindranath born was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.405
-0 ||| rabindranath born in of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.407
-0 ||| rabindranath 's birth in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.423
-0 ||| rabindranath 's born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.482
-0 ||| rabindranath born was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.486
-0 ||| rabindranath birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.492
-0 ||| rabindranath 's birth in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.508
-0 ||| rabindranath born in in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.518
-0 ||| of rabindranath born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.520
-0 ||| rabindranath was born the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.534
-0 ||| the birth of rabindranath was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.541
-0 ||| of rabindranath was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.542
-0 ||| rabindranath was born in a kolkata is \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.542
-0 ||| rabindranath 's birth was in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.566
-0 ||| rabindranath tagore was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.568
-0 ||| rabindranath was born in kolkata of \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.572
-0 ||| rabindranath 's birth the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.575
-0 ||| rabindranath born the kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.577
-0 ||| rabindranath tagore born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.598
-0 ||| rabindranath born was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.607
-0 ||| rabindranath 's birth in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.621
-0 ||| rabindranath was born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.624
-0 ||| rabindranath 's birth was the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.628
-0 ||| rabindranath tagore was born in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.632
-0 ||| of rabindranath born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.642
-0 ||| rabindranath born in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.652
-0 ||| rabindranath 's birth the kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.653
-0 ||| rabindranath 's birth was in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.683
-0 ||| rabindranath tagore 's birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.695
-0 ||| rabindranath 's was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.706
-0 ||| rabindranath 's birth in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.722
-0 ||| rabindranath tagore 's was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.746
-0 ||| rabindranath 's birth was in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.747
-0 ||| rabindranath was born in the at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.750
-0 ||| rabindranath born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.760
-0 ||| rabindranath 's birth in the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.769
-0 ||| rabindranath 's birth was in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.774
-0 ||| rabindranath born in in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.800
-0 ||| rabindranath born in kolkata 's in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.803
-0 ||| rabindranath was born in kolkata at a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.813
-0 ||| rabindranath born was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.820
-0 ||| of rabindranath was born kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.820
-0 ||| rabindranath 's birth was kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.852
-0 ||| rabindranath 's birth was is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.861
-0 ||| rabindranath was born kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.865
-0 ||| rabindranath was born is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.874
-0 ||| rabindranath born in is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.885
-0 ||| rabindranath 's born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.917
-0 ||| rabindranath tagore 's born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.926
-0 ||| rabindranath 's was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.930
-0 ||| rabindranath 's birth in in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.933
-0 ||| rabindranath tagore birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.935
-0 ||| rabindranath born was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.939
-0 ||| rabindranath 's born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.948
-0 ||| rabindranath born in in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.953
-0 ||| the birth of rabindranath was in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.956
-0 ||| rabindranath 's birth was the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.958
-0 ||| rabindranath 's birth of kolkata was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.966
-0 ||| rabindranath born in kolkata was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.967
-0 ||| of rabindranath was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -230.996
-0 ||| birth of rabindranath tagore was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.004
-0 ||| rabindranath 's birth in calcutta a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.010
-0 ||| rabindranath born in kolkata is at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.021
-0 ||| rabindranath was born in in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.031
-0 ||| of rabindranath born in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.061
-0 ||| the birth of rabindranath was in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.075
-0 ||| of rabindranath born in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.077
-0 ||| rabindranath 's born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.078
-0 ||| rabindranath 's was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.081
-0 ||| rabindranath 's birth in of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.086
-0 ||| rabindranath 's birth the in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.089
-0 ||| rabindranath born in in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.106
-0 ||| of rabindranath born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.108
-0 ||| rabindranath tagore 's birth of kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.114
-0 ||| rabindranath was born in a in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.120
-0 ||| of rabindranath was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.135
-0 ||| rabindranath born in the at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.156
-0 ||| rabindranath 's birth the kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.163
-0 ||| rabindranath was born in kolkata 's in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.164
-0 ||| rabindranath born in in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.170
-0 ||| rabindranath tagore 's birth was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.172
-0 ||| rabindranath tagore 's was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.173
-0 ||| rabindranath 's was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.195
-0 ||| rabindranath 's birth in in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.197
-0 ||| rabindranath born in in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.198
-0 ||| rabindranath born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.212
-0 ||| rabindranath 's birth was in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.215
-0 ||| rabindranath tagore was born in the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.226
-0 ||| the born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.227
-0 ||| of rabindranath born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.238
-0 ||| rabindranath born was in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.254
-0 ||| rabindranath tagore 's birth in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.255
-0 ||| the was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.256
-0 ||| rabindranath 's birth in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.267
-0 ||| rabindranath 's born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.276
-0 ||| birth of rabindranath tagore was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.299
-0 ||| rabindranath 's born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.303
-0 ||| rabindranath born was the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.307
-0 ||| rabindranath tagore 's birth in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.313
-0 ||| rabindranath 's was born the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.319
-0 ||| rabindranath 's was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.325
-0 ||| of rabindranath was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.360
-0 ||| rabindranath 's born was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.361
-0 ||| of rabindranath born in kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.362
-0 ||| rabindranath born was kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.372
-0 ||| rabindranath 's was born of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.375
-0 ||| rabindranath 's was born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.382
-0 ||| rabindranath was born in kolkata is at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.383
-0 ||| the birth of rabindranath was in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.390
-0 ||| rabindranath born was of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.400
-0 ||| rabindranath born in kolkata in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.402
-0 ||| rabindranath tagore 's birth of kolkata was one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.416
-0 ||| the birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.421
-0 ||| of rabindranath born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.436
-0 ||| rabindranath 's birth in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.439
-0 ||| birth of rabindranath tagore was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.439
-0 ||| tagore 's birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.442
-0 ||| the birth of rabindranath was the in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.443
-0 ||| of rabindranath was born in a the \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.445
-0 ||| rabindranath born was kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.450
-0 ||| rabindranath tagore was born in kolkata , a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.450
-0 ||| of rabindranath born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.464
-0 ||| rabindranath 's was born in the in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.465
-0 ||| rabindranath tagore 's birth was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.467
-0 ||| rabindranath 's birth the of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.474
-0 ||| of rabindranath was born in a kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.480
-0 ||| rabindranath 's birth in kolkata 's in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.482
-0 ||| tagore 's was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.493
-0 ||| rabindranath 's was born kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.497
-0 ||| rabindranath 's birth was kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.500
-0 ||| rabindranath 's birth was in kolkata in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.507
-0 ||| the birth of rabindranath was kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.508
-0 ||| rabindranath tagore 's was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.511
-0 ||| rabindranath was born kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.514
-0 ||| birth of rabindranath tagore was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.520
-0 ||| rabindranath 's birth the in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.524
-0 ||| the birth of rabindranath was of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.536
-0 ||| rabindranath 's birth the in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.543
-0 ||| rabindranath 's was born in kolkata in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.572
-0 ||| rabindranath 's born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.597
-0 ||| rabindranath tagore was born in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.601
-0 ||| rabindranath tagore 's birth was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.607
-0 ||| rabindranath born in kolkata of \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.622
-0 ||| of rabindranath was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.625
-0 ||| rabindranath 's birth in in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.631
-0 ||| birth of rabindranath tagore was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.641
-0 ||| rabindranath 's birth in kolkata was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.646
-0 ||| rabindranath 's born was kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.656
-0 ||| rabindranath tagore 's was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.662
-0 ||| tagore 's born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.673
-0 ||| rabindranath born was in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.674
-0 ||| rabindranath birth in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.676
-0 ||| the was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.683
-0 ||| rabindranath born the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.684
-0 ||| rabindranath tagore 's birth was in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.688
-0 ||| rabindranath tagore 's was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.690
-0 ||| rabindranath 's birth in kolkata is at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.700
-0 ||| birth of rabindranath was the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.701
-0 ||| rabindranath tagore was born in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.715
-0 ||| of rabindranath birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.722
-0 ||| rabindranath born in kolkata is in one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.730
-0 ||| rabindranath born was the kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.736
-0 ||| rabindranath tagore 's birth in the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.748
-0 ||| of rabindranath was born the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.749
-0 ||| rabindranath 's was born the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.754
-0 ||| of rabindranath was born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.755
-0 ||| of rabindranath born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.757
-0 ||| rabindranath born the kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.762
-0 ||| rabindranath tagore 's birth the kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.779
-0 ||| rabindranath tagore born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.783
-0 ||| rabindranath born was in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.791
-0 ||| rabindranath 's was born in kolkata of \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.792
-0 ||| rabindranath tagore 's birth in kolkata was a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.795
-0 ||| rabindranath 's born was the one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.796
-0 ||| of rabindranath was born in a in kolkata \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.801
-0 ||| of rabindranath was born of kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.804
-0 ||| rabindranath tagore 's birth was in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.808
-0 ||| of rabindranath was born in kolkata at one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.812
-0 ||| rabindranath 's birth the kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.812
-0 ||| rabindranath 's born in kolkata is in \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.838
-0 ||| rabindranath tagore was born the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.839
-0 ||| rabindranath born in calcutta one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.841
-0 ||| rabindranath tagore 's birth in kolkata 's a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.843
-0 ||| rabindranath 's was born in kolkata 's one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.844
-0 ||| rabindranath tagore was born in kolkata is in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family ||| -231.845
-1 ||| recently with united states with the relationship between improved . ||| -21.022
-1 ||| recently with united states with the relation between improved . ||| -21.210
-1 ||| in recent times with united states with the relationship between improved . ||| -21.900
-1 ||| in recent times india with united states relationship between improved . ||| -22.055
-1 ||| in recent times with united states with the relation between improved . ||| -22.088
-1 ||| recently india with united states relationship between improved . ||| -22.129
-1 ||| in recent times of india with united states relationship between improved . ||| -22.329
-1 ||| recently with the united states relationship between improved . ||| -22.334
-1 ||| recently with the united states with the relationship between improved . ||| -22.473
-1 ||| recently with united states with the relation improved . ||| -22.538
-1 ||| in recent times india with united states relation between improved . ||| -22.542
-1 ||| recently india with united states relation between improved . ||| -22.616
-1 ||| recently in india with united states relationship between improved . ||| -22.634
-1 ||| during the recent time with united states with the relationship between improved . ||| -22.642
-1 ||| recently with the united states with the relation between improved . ||| -22.662
-1 ||| recently with united states relationship between with the improved . ||| -22.719
-1 ||| in recent times in india with united states relationship between improved . ||| -22.811
-1 ||| in recent times of india with united states relation between improved . ||| -22.816
-1 ||| recently with the united states relation between improved . ||| -22.821
-1 ||| during the recent time with united states with the relation between improved . ||| -22.831
-1 ||| recently the with united states relationship between improved . ||| -22.847
-1 ||| during the recent time in india with united states relationship between improved . ||| -22.980
-1 ||| recently in india with united states relation between improved . ||| -23.121
-1 ||| recently with united states with the matters improved . ||| -23.125
-1 ||| in recent times india with united states relation improved . ||| -23.210
-1 ||| in recent times with the united states relationship between improved . ||| -23.212
-1 ||| recently of india with united states relationship between improved . ||| -23.244
-1 ||| recently with of the united states with the relationship between improved . ||| -23.258
-1 ||| in recent times india with the united states relationship between improved . ||| -23.259
-1 ||| recently india with united states relation improved . ||| -23.285
-1 ||| in recent times in india with united states relation between improved . ||| -23.298
-1 ||| recently with united states with the relationship between has been made development . ||| -23.309
-1 ||| recently india with the united states relationship between improved . ||| -23.333
-1 ||| recently the with united states relation between improved . ||| -23.334
-1 ||| in recent times with the united states with the relationship between improved . ||| -23.351
-1 ||| during the recent time india with united states relationship between improved . ||| -23.374
-1 ||| in recent times with united states with the relation improved . ||| -23.415
-1 ||| in recent times india 's with united states relationship between improved . ||| -23.440
-1 ||| recently with of the united states with the relation between improved . ||| -23.446
-1 ||| during the recent time in india with united states relation between improved . ||| -23.467
-1 ||| in recent times of india with united states relation improved . ||| -23.485
-1 ||| recently with the united states relation improved . ||| -23.489
-1 ||| recently with united states with the relation between has been made development . ||| -23.498
-1 ||| in recent times india along with united states relationship between improved . ||| -23.512
-1 ||| recently india 's with united states relationship between improved . ||| -23.514
-1 ||| in recent times of india with the united states relationship between improved . ||| -23.533
-1 ||| in recent times with the united states with the relation between improved . ||| -23.539
-1 ||| recently india along with united states relationship between improved . ||| -23.586
-1 ||| in recent times with united states relationship between with the improved . ||| -23.596
-1 ||| in recent times with the united states relation between improved . ||| -23.698
-1 ||| recently of india with united states relation between improved . ||| -23.730
-1 ||| in recent times india with the united states relation between improved . ||| -23.746
-1 ||| in recent times india with united states matters improved . ||| -23.759
-1 ||| recently with united states with the relationship between development has been . ||| -23.777
-1 ||| recently in india with united states relation improved . ||| -23.789
-1 ||| recently india with the united states relation between improved . ||| -23.820
-1 ||| recently india with united states matters improved . ||| -23.833
-1 ||| recently in india with the united states relationship between improved . ||| -23.838
-1 ||| during the recent time india with united states relation between improved . ||| -23.861
-1 ||| recently improved with united states with the matters . ||| -23.863
-1 ||| during the recent time the with united states relationship between improved . ||| -23.896
-1 ||| in recent times india 's with united states relation between improved . ||| -23.926
-1 ||| recently indian with united states relationship between improved . ||| -23.932
-1 ||| during the recent time with the united states relationship between improved . ||| -23.954
-1 ||| recently with united states with the relation between development has been . ||| -23.965
-1 ||| in recent times in india with united states relation improved . ||| -23.966
-1 ||| recently with the united states with the relation improved . ||| -23.989
-1 ||| in recent times india along with united states relation between improved . ||| -23.999
-1 ||| recently india 's with united states relation between improved . ||| -24.001
-1 ||| in recent times with united states with the matters improved . ||| -24.002
-1 ||| recently the with united states relation improved . ||| -24.003
-1 ||| in recent times in india with the united states relationship between improved . ||| -24.015
-1 ||| in recent times of india with the united states relation between improved . ||| -24.020
-1 ||| in recent times of india with united states matters improved . ||| -24.033
-1 ||| recently with the united states matters improved . ||| -24.037
-1 ||| recently the with the united states relationship between improved . ||| -24.051
-1 ||| recently india along with united states relation between improved . ||| -24.073
-1 ||| in recent times the with united states relationship between improved . ||| -24.081
-1 ||| during the recent time with the united states with the relationship between improved . ||| -24.094
-1 ||| recently with relationship between united states with the improved . ||| -24.105
-1 ||| recently the along with united states relationship between improved . ||| -24.121
-1 ||| in recent times with of the united states with the relationship between improved . ||| -24.135
-1 ||| during the recent time in india with united states relation improved . ||| -24.135
-1 ||| during the recent time with united states with the relation improved . ||| -24.158
-1 ||| recently is the with united states relationship between improved . ||| -24.180
-1 ||| during the recent time in india with the united states relationship between improved . ||| -24.184
-1 ||| in recent times of india along with united states relationship between improved . ||| -24.184
-1 ||| in recent times with united states with the relationship between has been made development . ||| -24.187
-1 ||| during the recent time of india with united states relationship between improved . ||| -24.193
-1 ||| in recent times india with relationship between united states improved . ||| -24.241
-1 ||| in recent times india along with the united states relationship between improved . ||| -24.281
-1 ||| during the recent time with the united states with the relation between improved . ||| -24.282
-1 ||| in recent times india with of the united states relationship between improved . ||| -24.291
-1 ||| recently the indian with united states relationship between improved . ||| -24.304
-1 ||| recently india with relationship between united states improved . ||| -24.315
-1 ||| in recent times with of the united states with the relation between improved . ||| -24.323
-1 ||| recently in india with the united states relation between improved . ||| -24.325
-1 ||| recently with united states with the relationship between have been made development . ||| -24.337
-1 ||| recently in india with united states matters improved . ||| -24.338
-1 ||| during the recent time with united states relationship between with the improved . ||| -24.339
-1 ||| recently with the relationship between united states improved . ||| -24.340
-1 ||| in recent times india with united states relationship between has been made development . ||| -24.343
-1 ||| recently india along with the united states relationship between improved . ||| -24.356
-1 ||| recently india with of the united states relationship between improved . ||| -24.365
-1 ||| in recent times with the united states relation improved . ||| -24.367
-1 ||| recently with united states with the relationship between has been development . ||| -24.371
-1 ||| in recent times with united states with the relation between has been made development . ||| -24.375
-1 ||| during the recent time the with united states relation between improved . ||| -24.383
-1 ||| recently in india along with united states relationship between improved . ||| -24.385
-1 ||| recently of india with united states relation improved . ||| -24.399
-1 ||| in recent times india with the united states relation improved . ||| -24.414
-1 ||| recently india with united states relationship between has been made development . ||| -24.417
-1 ||| recently indian with united states relation between improved . ||| -24.419
-1 ||| during the recent time with the united states relation between improved . ||| -24.441
-1 ||| recently of india with the united states relationship between improved . ||| -24.448
-1 ||| recently the india with united states relationship between improved . ||| -24.482
-1 ||| in recent times of the with united states relationship between improved . ||| -24.486
-1 ||| recently india with the united states relation improved . ||| -24.489
-1 ||| in recent times in india with the united states relation between improved . ||| -24.501
-1 ||| recently with united states relationship between with the development has been . ||| -24.501
-1 ||| in recent times in india with united states matters improved . ||| -24.514
-1 ||| in recent times of india with relationship between united states improved . ||| -24.515
-1 ||| recently with united states with the relation between have been made development . ||| -24.526
-1 ||| recently with the relation between united states improved . ||| -24.528
-1 ||| during the recent time india with united states relation improved . ||| -24.529
-1 ||| recently the with the united states relation between improved . ||| -24.538
-1 ||| in recent times in the with united states relationship between improved . ||| -24.540
-1 ||| recently the with united states matters improved . ||| -24.551
-1 ||| recently with united states with the matters has been made development . ||| -24.558
-1 ||| recently with united states with the relation between has been development . ||| -24.559
-1 ||| in recent times in india along with united states relationship between improved . ||| -24.562
-1 ||| in recent times of india with of the united states relationship between improved . ||| -24.565
-1 ||| in recent times the with united states relation between improved . ||| -24.568
-1 ||| recently with the united with the relationship between improved . ||| -24.575
-1 ||| recently with the united states with the matters improved . ||| -24.576
-1 ||| during the recent time india with the united states relationship between improved . ||| -24.578
-1 ||| recently with relation between united states with the improved . ||| -24.592
-1 ||| in recent times india 's with united states relation improved . ||| -24.595
-1 ||| recently the along with united states relation between improved . ||| -24.608
-1 ||| recently with the relation of united states improved . ||| -24.615
-1 ||| in recent times of india with united states relationship between has been made development . ||| -24.617
-1 ||| recently with the united states relationship between has been made development . ||| -24.621
-1 ||| recently in the with united states relationship between improved . ||| -24.631
-1 ||| in recent times india 's with the united states relationship between improved . ||| -24.644
-1 ||| in recent times with united states with the relationship between development has been . ||| -24.655
-1 ||| in recent times india along with united states relation improved . ||| -24.667
-1 ||| recently is the with united states relation between improved . ||| -24.667
-1 ||| recently india 's with united states relation improved . ||| -24.669
-1 ||| during the recent time in india with the united states relation between improved . ||| -24.671
-1 ||| in recent times of india along with united states relation between improved . ||| -24.671
-1 ||| during the recent time of india with united states relation between improved . ||| -24.680
-1 ||| during the recent time in india with united states matters improved . ||| -24.683
-1 ||| in recent times of india with the united states relation improved . ||| -24.688
-1 ||| recently with united state with the relationship between improved . ||| -24.704
-1 ||| in recent times india 's along with united states relationship between improved . ||| -24.708
-1 ||| recently india 's with the united states relationship between improved . ||| -24.718
-1 ||| recently with relationship between of united states with the improved . ||| -24.723
-1 ||| in recent times india with relation between united states improved . ||| -24.728
-1 ||| during the recent time in india along with united states relationship between improved . ||| -24.731
-1 ||| recently with united with the relationship between improved . ||| -24.737
-1 ||| recently with united states with the relationship between have been development . ||| -24.740
-1 ||| in recent times improved with united states with the matters . ||| -24.741
-1 ||| recently india along with united states relation improved . ||| -24.741
-1 ||| during the recent time with united states with the matters improved . ||| -24.745
-1 ||| during the recent time india 's with united states relationship between improved . ||| -24.758
-1 ||| recently with the united states with the relationship between has been made development . ||| -24.761
-1 ||| recently with the united with the relation between improved . ||| -24.763
-1 ||| in recent times india along with the united states relation between improved . ||| -24.768
-1 ||| recently , in the with united states relationship between improved . ||| -24.773
-1 ||| recently with of the united states with the relation improved . ||| -24.773
-1 ||| in recent times india with of the united states relation between improved . ||| -24.778
-1 ||| recently india 's along with united states relationship between improved . ||| -24.782
-1 ||| recently the indian with united states relation between improved . ||| -24.791
-1 ||| recently india with relation between united states improved . ||| -24.802
-1 ||| in recent times indian with united states relationship between improved . ||| -24.810
-1 ||| in recent times india with united states relationship between development has been . ||| -24.810
-1 ||| recently in india with relationship between united states improved . ||| -24.820
-1 ||| recently with united states with the relation has been made development . ||| -24.825
-1 ||| in recent times india with united states relation between has been made development . ||| -24.829
-1 ||| during the recent time india along with united states relationship between improved . ||| -24.831
-1 ||| recently india along with the united states relation between improved . ||| -24.842
-1 ||| in recent times with united states with the relation between development has been . ||| -24.843
-1 ||| recently india with of the united states relation between improved . ||| -24.852
-1 ||| in recent times india with relationship between of united states improved . ||| -24.859
-1 ||| in recent times with the united states with the relation improved . ||| -24.866
-1 ||| recently in india with of the united states relationship between improved . ||| -24.870
-1 ||| recently in india along with united states relation between improved . ||| -24.872
-1 ||| during the recent time with of the united states with the relationship between improved . ||| -24.878
-1 ||| recently india with united states relationship between development has been . ||| -24.884
-1 ||| recently the along with the united states relationship between improved . ||| -24.890
-1 ||| recently with united state with the relation between improved . ||| -24.892
-1 ||| recently india with united states relation between has been made development . ||| -24.904
-1 ||| in recent times with the united states matters improved . ||| -24.915
-1 ||| recently in india with united states relationship between has been made development . ||| -24.921
-1 ||| recently with united with the relation between improved . ||| -24.925
-1 ||| recently with united states with the relation between have been development . ||| -24.928
-1 ||| during the recent time with united states with the relationship between has been made development . ||| -24.930
-1 ||| recently india with relationship between of united states improved . ||| -24.933
-1 ||| recently of india with the united states relation between improved . ||| -24.934
-1 ||| recently of the with united states relationship between improved . ||| -24.945
-1 ||| recently of india with united states matters improved . ||| -24.947
-1 ||| recently with the united states with the relation between has been made development . ||| -24.949
-1 ||| in recent times of india along with the united states relationship between improved . ||| -24.954
-1 ||| recently with of the united states relationship between with the improved . ||| -24.954
-1 ||| recently with united states with the relationship between made development has been . ||| -24.956
-1 ||| recently with the relationship between of united states improved . ||| -24.958
-1 ||| in recent times india with the united states matters improved . ||| -24.963
-1 ||| recently the india with united states relation between improved . ||| -24.969
-1 ||| in recent times of the with united states relation between improved . ||| -24.973
-1 ||| in recent times with relationship between united states with the improved . ||| -24.983
-1 ||| recently with relation of united states with the improved . ||| -24.990
-1 ||| recently with india united states relationship between improved . ||| -24.991
-1 ||| during the recent time is the with united states relationship between improved . ||| -24.993
-1 ||| recently in india with the united states relation improved . ||| -24.993
-1 ||| in recent times in india with relationship between united states improved . ||| -24.996
-1 ||| in recent times of india with relation between united states improved . ||| -25.002
-1 ||| during the recent time indian with united states relationship between improved . ||| -25.024
-1 ||| in recent times in the with united states relation between improved . ||| -25.026
-1 ||| recently has been with united states with the relationship between development . ||| -25.027
-1 ||| recently the with relationship between united states improved . ||| -25.033
-1 ||| recently india with the united states matters improved . ||| -25.037
-1 ||| in recent times in india with of the united states relationship between improved . ||| -25.046
-1 ||| in recent times in india along with united states relation between improved . ||| -25.048
-1 ||| during the recent time the with united states relation improved . ||| -25.051
-1 ||| in recent times of india with of the united states relation between improved . ||| -25.052
-1 ||| in recent times is the with united states relationship between improved . ||| -25.058
-1 ||| during the recent time india with the united states relation between improved . ||| -25.065
-1 ||| during the recent time with of the united states with the relation between improved . ||| -25.066
-1 ||| during the recent time india with united states matters improved . ||| -25.077
-1 ||| recently the with of the united states relationship between improved . ||| -25.083
-1 ||| in recent times of india with united states relationship between development has been . ||| -25.084
-1 ||| recently indian with united states relation improved . ||| -25.087
-1 ||| recently with the united states relationship between development has been . ||| -25.089
-1 ||| recently with matters of united states with the improved . ||| -25.089
-1 ||| recently with india 's relation between united states improved . ||| -25.090
-1 ||| in recent times in india with united states relationship between has been made development . ||| -25.098
-1 ||| recently of india along with united states relationship between improved . ||| -25.099
-1 ||| during the recent time the with the united states relationship between improved . ||| -25.100
-1 ||| in recent times of india with united states relation between has been made development . ||| -25.103
-1 ||| recently with the united states relation between has been made development . ||| -25.108
-1 ||| during the recent time with the united states relation improved . ||| -25.110
-1 ||| recently in the with united states relation between improved . ||| -25.117
-1 ||| during the recent time with united states with the relation between has been made development . ||| -25.118
-1 ||| in recent times india with relation of united states improved . ||| -25.126
-1 ||| in recent times india 's with the united states relation between improved . ||| -25.130
-1 ||| in recent times of india with relationship between of united states improved . ||| -25.133
-1 ||| recently the with united states relationship between has been made development . ||| -25.135
-1 ||| recently indian with the united states relationship between improved . ||| -25.136
-1 ||| in recent times india 's with united states matters improved . ||| -25.143
-1 ||| recently with united states with the relation between made development has been . ||| -25.145
-1 ||| recently in india along with the united states relationship between improved . ||| -25.155
-1 ||| recently in with united states relationship between improved . ||| -25.157
-1 ||| during the recent time in india with relationship between united states improved . ||| -25.166
-1 ||| during the recent time the along with united states relationship between improved . ||| -25.170
-1 ||| in recent times in india with the united states relation improved . ||| -25.170
-1 ||| in recent times india with united states matters has been made development . ||| -25.192
-1 ||| in recent times india 's along with united states relation between improved . ||| -25.195
-1 ||| recently india with relation of united states improved . ||| -25.200
-1 ||| recently indian along with united states relationship between improved . ||| -25.201
-1 ||| recently india 's with the united states relation between improved . ||| -25.205
-1 ||| recently the with the united states relation improved . ||| -25.206
-1 ||| recently with relation between of united states with the improved . ||| -25.210
-1 ||| recently has been with united states relationship between with the development . ||| -25.212
-1 ||| in recent times with united states with the relationship between have been made development . ||| -25.215
-1 ||| in recent times india along with united states matters improved . ||| -25.215
-1 ||| during the recent time in india with of the united states relationship between improved . ||| -25.216
-1 ||| recently india 's with united states matters improved . ||| -25.217
-1 ||| in recent times with the relationship between united states improved . ||| -25.218
-1 ||| during the recent time in india along with united states relation between improved . ||| -25.218
-1 ||| in recent times india with matters of united states improved . ||| -25.225
-1 ||| recently with the united states with the relationship between development has been . ||| -25.228
-1 ||| in recent times the with united states relation improved . ||| -25.236
-1 ||| in recent times of india with the united states matters improved . ||| -25.237
-1 ||| during the recent time india 's with united states relation between improved . ||| -25.245
-1 ||| in recent times with united states with the relationship between has been development . ||| -25.248
-1 ||| recently , in the with united states relation between improved . ||| -25.259
-1 ||| recently india with united states matters has been made development . ||| -25.266
-1 ||| recently with united states with the relationship between development have been . ||| -25.266
-1 ||| during the recent time in india with united states relationship between has been made development . ||| -25.267
-1 ||| recently india 's along with united states relation between improved . ||| -25.269
-1 ||| recently with united states relationship between with the has been made development . ||| -25.276
-1 ||| recently the along with united states relation improved . ||| -25.276
-1 ||| in recent times the with the united states relationship between improved . ||| -25.285
-1 ||| recently india along with united states matters improved . ||| -25.289
-1 ||| recently with united states with the relation development has been . ||| -25.292
-1 ||| in recent times indian with united states relation between improved . ||| -25.296
-1 ||| in recent times india with united states relation between development has been . ||| -25.297
-1 ||| recently india with matters of united states improved . ||| -25.299
-1 ||| recently in india with relation between united states improved . ||| -25.307
-1 ||| recently improved with the united states with the matters . ||| -25.315
-1 ||| in recent times india with united states have been relationship between development . ||| -25.316
-1 ||| during the recent time india along with united states relation between improved . ||| -25.317
-1 ||| in recent times in india along with the united states relationship between improved . ||| -25.331
-1 ||| in recent times in with united states relationship between improved . ||| -25.334
-1 ||| recently is the with united states relation improved . ||| -25.336
-1 ||| during the recent time in india with the united states relation improved . ||| -25.339
-1 ||| in recent times of india along with united states relation improved . ||| -25.340
-1 ||| in recent times india with relation between of united states improved . ||| -25.345
-1 ||| during the recent time of india with united states relation improved . ||| -25.348
-1 ||| in recent times india with the united relationship between improved . ||| -25.348

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/74e6c004/src/test/resources/decoder/left-state/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/left-state/test.sh b/src/test/resources/decoder/left-state/test.sh
deleted file mode 100755
index 13b798a..0000000
--- a/src/test/resources/decoder/left-state/test.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-set -u
-
-cat input.bn | $JOSHUA/bin/joshua-decoder -m 1g -threads 2 -c joshua.config > output 2> log
-
-# Extract the translations and model scores
-cat output | awk -F"\|" '{print $1 "|||" $4 "|||" $10}' > output.scores
-
-# Compare
-diff -u output.scores output.scores.gold > diff
-
-if [ $? -eq 0 ]; then
-  rm -f diff output log output.scores
-  exit 0
-else
-  exit 1
-fi