From 186e298dfef5585fbacc956372555290c5152e1a Mon Sep 17 00:00:00 2001 From: eve-b612 <73663546+eve-b612@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:32:31 +0100 Subject: [PATCH 1/2] Add files via upload Tested performance with 3 training data normalisation approaches: min max scaling, standard scaling, robust scaling. Results showed no improvement with any of these approaches. --- pmml/step1_prepare/ml_reading_norm.ipynb | 20457 +++++++++++++++++++++ 1 file changed, 20457 insertions(+) create mode 100644 pmml/step1_prepare/ml_reading_norm.ipynb diff --git a/pmml/step1_prepare/ml_reading_norm.ipynb b/pmml/step1_prepare/ml_reading_norm.ipynb new file mode 100644 index 0000000..ba6228e --- /dev/null +++ b/pmml/step1_prepare/ml_reading_norm.ipynb @@ -0,0 +1,20457 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "Qu6lgySwOa-E", + "outputId": "21d20bfb-102d-429f-a829-47680eb51cce" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "fatal: destination path 'ml-storybook-reading-level' already exists and is not an empty directory.\n" + ] + } + ], + "source": [ + "!git clone https://github.com/elimu-ai/ml-storybook-reading-level.git" + ] + }, + { + "cell_type": "code", + "source": [ + "%cd ml-storybook-reading-level/pmml\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "qQUVej5COcER", + "outputId": "b1d99e8d-acc2-448d-aef1-6f3ad5cc6217" + }, + "execution_count": 2, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!pip install -r requirements.txt\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "ou0mjdu2OgLh", + "outputId": "9523443c-16a0-4810-ba7e-d81658033ce3" + }, + "execution_count": 3, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: matplotlib==3.8.2 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 1)) (3.8.2)\n", + "Requirement already satisfied: numpy==1.26.4 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 2)) (1.26.4)\n", + "Requirement already satisfied: pandas==2.2.2 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 3)) (2.2.2)\n", + "Requirement already satisfied: pypmml==0.9.17 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 4)) (0.9.17)\n", + "Requirement already satisfied: scikit-learn==1.5.0 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 5)) (1.5.0)\n", + "Requirement already satisfied: sklearn2pmml==0.110.0 in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 6)) (0.110.0)\n", + "Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (1.3.0)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (0.12.1)\n", + "Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (4.54.1)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (1.4.7)\n", + "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (24.1)\n", + "Requirement already satisfied: pillow>=8 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (10.4.0)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (3.1.4)\n", + "Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib==3.8.2->-r requirements.txt (line 1)) (2.8.2)\n", + "Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas==2.2.2->-r requirements.txt (line 3)) (2024.2)\n", + "Requirement already satisfied: tzdata>=2022.7 in /usr/local/lib/python3.10/dist-packages (from pandas==2.2.2->-r requirements.txt (line 3)) (2024.2)\n", + "Requirement already satisfied: py4j>=0.10.7 in /usr/local/lib/python3.10/dist-packages (from pypmml==0.9.17->-r requirements.txt (line 4)) (0.10.9.7)\n", + "Requirement already satisfied: scipy>=1.6.0 in /usr/local/lib/python3.10/dist-packages (from scikit-learn==1.5.0->-r requirements.txt (line 5)) (1.13.1)\n", + "Requirement already satisfied: joblib>=1.2.0 in /usr/local/lib/python3.10/dist-packages (from scikit-learn==1.5.0->-r requirements.txt (line 5)) (1.4.2)\n", + "Requirement already satisfied: threadpoolctl>=3.1.0 in /usr/local/lib/python3.10/dist-packages (from scikit-learn==1.5.0->-r requirements.txt (line 5)) (3.5.0)\n", + "Requirement already satisfied: dill>=0.3.4 in /usr/local/lib/python3.10/dist-packages (from sklearn2pmml==0.110.0->-r requirements.txt (line 6)) (0.3.9)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.7->matplotlib==3.8.2->-r requirements.txt (line 1)) (1.16.0)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!python run_all_steps.py\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "hHkXY8ymOxzy", + "outputId": "a703d719-b74c-4165-d7d6-0248c0909e29" + }, + "execution_count": 6, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: है,“\n", + "chapters_utils.py word_cleaned: है“\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: सोचकर\n", + "chapters_utils.py word_cleaned: सोचकर\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बोले,\n", + "chapters_utils.py word_cleaned: बोले\n", + "chapters_utils.py word: ”मगर\n", + "chapters_utils.py word_cleaned: ”मगर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: जाओगे\n", + "chapters_utils.py word_cleaned: जाओगे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: देखेगा?\n", + "chapters_utils.py word_cleaned: देखेगा\n", + "chapters_utils.py word: इतना\n", + "chapters_utils.py word_cleaned: इतना\n", + "chapters_utils.py word: चलने\n", + "chapters_utils.py word_cleaned: चलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद,\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: कमज़ोर\n", + "chapters_utils.py word_cleaned: कमज़ोर\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाऊँगा।\n", + "chapters_utils.py word_cleaned: जाऊँगा।\n", + "chapters_utils.py word: इसलिये,\n", + "chapters_utils.py word_cleaned: इसलिये\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: वापस\n", + "chapters_utils.py word_cleaned: वापस\n", + "chapters_utils.py word: आऊँगा\n", + "chapters_utils.py word_cleaned: आऊँगा\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: खूब\n", + "chapters_utils.py word_cleaned: खूब\n", + "chapters_utils.py word: सारा\n", + "chapters_utils.py word_cleaned: सारा\n", + "chapters_utils.py word: दूध\n", + "chapters_utils.py word_cleaned: दूध\n", + "chapters_utils.py word: पीना\n", + "chapters_utils.py word_cleaned: पीना\n", + "chapters_utils.py word: पड़ेगा,\n", + "chapters_utils.py word_cleaned: पड़ेगा\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेरी\n", + "chapters_utils.py word_cleaned: मेरी\n", + "chapters_utils.py word: ताकत\n", + "chapters_utils.py word_cleaned: ताकत\n", + "chapters_utils.py word: लौट\n", + "chapters_utils.py word_cleaned: लौट\n", + "chapters_utils.py word: आये।“\n", + "chapters_utils.py word_cleaned: आये।“\n", + "chapters_utils.py paragraph: {'originalText': '”हूँ... यह बात तो ठीक है, गाँधी जी! बिन्नी तभी खाती है, जब मैं उसे खिलाता हूँ,“ धनी ने प्यार से बिन्नी का सर सहलाया, ”और स़िर्फ मैं जानता हूँ कि इसे क्या पसन्द है।“', 'sortOrder': 4, 'id': 1415}\n", + "chapters_utils.py words: ['”हूँ...', 'यह', 'बात', 'तो', 'ठीक', 'है,', 'गाँधी', 'जी!', 'बिन्नी', 'तभी', 'खाती', 'है,', 'जब', 'मैं', 'उसे', 'खिलाता', 'हूँ,“', 'धनी', 'ने', 'प्यार', 'से', 'बिन्नी', 'का', 'सर', 'सहलाया,', '”और', 'स़िर्फ', 'मैं', 'जानता', 'हूँ', 'कि', 'इसे', 'क्या', 'पसन्द', 'है।“']\n", + "chapters_utils.py word: ”हूँ...\n", + "chapters_utils.py word_cleaned: ”हूँ\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी!\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: खाती\n", + "chapters_utils.py word_cleaned: खाती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: खिलाता\n", + "chapters_utils.py word_cleaned: खिलाता\n", + "chapters_utils.py word: हूँ,“\n", + "chapters_utils.py word_cleaned: हूँ“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सर\n", + "chapters_utils.py word_cleaned: सर\n", + "chapters_utils.py word: सहलाया,\n", + "chapters_utils.py word_cleaned: सहलाया\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: स़िर्फ\n", + "chapters_utils.py word_cleaned: स़िर्फ\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: जानता\n", + "chapters_utils.py word_cleaned: जानता\n", + "chapters_utils.py word: हूँ\n", + "chapters_utils.py word_cleaned: हूँ\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: पसन्द\n", + "chapters_utils.py word_cleaned: पसन्द\n", + "chapters_utils.py word: है।“\n", + "chapters_utils.py word_cleaned: है।“\n", + "chapters_utils.py paragraph: {'originalText': '”बिल्कुल सही। तो क्या तुम आश्रम में रह कर मेरे लिये बिन्नी की देखभाल करोगे?“ गाँधी जी प्यार से बोले।', 'sortOrder': 5, 'id': 1416}\n", + "chapters_utils.py words: ['”बिल्कुल', 'सही।', 'तो', 'क्या', 'तुम', 'आश्रम', 'में', 'रह', 'कर', 'मेरे', 'लिये', 'बिन्नी', 'की', 'देखभाल', 'करोगे?“', 'गाँधी', 'जी', 'प्यार', 'से', 'बोले।']\n", + "chapters_utils.py word: ”बिल्कुल\n", + "chapters_utils.py word_cleaned: ”बिल्कुल\n", + "chapters_utils.py word: सही।\n", + "chapters_utils.py word_cleaned: सही।\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: आश्रम\n", + "chapters_utils.py word_cleaned: आश्रम\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रह\n", + "chapters_utils.py word_cleaned: रह\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: लिये\n", + "chapters_utils.py word_cleaned: लिये\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: देखभाल\n", + "chapters_utils.py word_cleaned: देखभाल\n", + "chapters_utils.py word: करोगे?“\n", + "chapters_utils.py word_cleaned: करोगे“\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बोले।\n", + "chapters_utils.py word_cleaned: बोले।\n", + "chapters_utils.py paragraph: {'originalText': '”जी, गाँधी जी, करूँगा,“ धनी बोला, ”और बिन्नी और मैं, आपका इन्तज़ार करेंगे।“', 'sortOrder': 6, 'id': 1417}\n", + "chapters_utils.py words: ['”जी,', 'गाँधी', 'जी,', 'करूँगा,“', 'धनी', 'बोला,', '”और', 'बिन्नी', 'और', 'मैं,', 'आपका', 'इन्तज़ार', 'करेंगे।“']\n", + "chapters_utils.py word: ”जी,\n", + "chapters_utils.py word_cleaned: ”जी\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी,\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: करूँगा,“\n", + "chapters_utils.py word_cleaned: करूँगा“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: बोला,\n", + "chapters_utils.py word_cleaned: बोला\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं,\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: आपका\n", + "chapters_utils.py word_cleaned: आपका\n", + "chapters_utils.py word: इन्तज़ार\n", + "chapters_utils.py word_cleaned: इन्तज़ार\n", + "chapters_utils.py word: करेंगे।“\n", + "chapters_utils.py word_cleaned: करेंगे।“\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py chapter[\"sortOrder\"]: 14\n", + "chapters_utils.py paragraph: {'originalText': 'इतिहास के कुछ रोचक तथ्य:', 'sortOrder': 0, 'id': 1419}\n", + "chapters_utils.py words: ['इतिहास', 'के', 'कुछ', 'रोचक', 'तथ्य:']\n", + "chapters_utils.py word: इतिहास\n", + "chapters_utils.py word_cleaned: इतिहास\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: रोचक\n", + "chapters_utils.py word_cleaned: रोचक\n", + "chapters_utils.py word: तथ्य:\n", + "chapters_utils.py word_cleaned: तथ्य\n", + "chapters_utils.py paragraph: {'originalText': '1. मार्च 1930 में महात्मा गाँधी ने ब्रिटिश सरकार द्वारा लगाये नमक कर के विरोध में दाँडी तक की यात्रा का नेतृत्व किया। गाँधी जी और उनके अनुयायी, गुजरात में 24 दिन तक पैदल चले। पूरे रास्ते उनका स्वागत फूलों और गीतों से हुआ। विश्\\u200dव भर के अखबारों ने यात्रा पर खबरें छापीं।', 'sortOrder': 1, 'id': 1420}\n", + "chapters_utils.py words: ['1.', 'मार्च', '1930', 'में', 'महात्मा', 'गाँधी', 'ने', 'ब्रिटिश', 'सरकार', 'द्वारा', 'लगाये', 'नमक', 'कर', 'के', 'विरोध', 'में', 'दाँडी', 'तक', 'की', 'यात्रा', 'का', 'नेतृत्व', 'किया।', 'गाँधी', 'जी', 'और', 'उनके', 'अनुयायी,', 'गुजरात', 'में', '24', 'दिन', 'तक', 'पैदल', 'चले।', 'पूरे', 'रास्ते', 'उनका', 'स्वागत', 'फूलों', 'और', 'गीतों', 'से', 'हुआ।', 'विश्\\u200dव', 'भर', 'के', 'अखबारों', 'ने', 'यात्रा', 'पर', 'खबरें', 'छापीं।']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: महात्मा\n", + "chapters_utils.py word_cleaned: महात्मा\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: ब्रिटिश\n", + "chapters_utils.py word_cleaned: ब्रिटिश\n", + "chapters_utils.py word: सरकार\n", + "chapters_utils.py word_cleaned: सरकार\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: लगाये\n", + "chapters_utils.py word_cleaned: लगाये\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: विरोध\n", + "chapters_utils.py word_cleaned: विरोध\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नेतृत्व\n", + "chapters_utils.py word_cleaned: नेतृत्व\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: अनुयायी,\n", + "chapters_utils.py word_cleaned: अनुयायी\n", + "chapters_utils.py word: गुजरात\n", + "chapters_utils.py word_cleaned: गुजरात\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: 24\n", + "chapters_utils.py word_cleaned: 24\n", + "chapters_utils.py word: दिन\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: पैदल\n", + "chapters_utils.py word_cleaned: पैदल\n", + "chapters_utils.py word: चले।\n", + "chapters_utils.py word_cleaned: चले।\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: रास्ते\n", + "chapters_utils.py word_cleaned: रास्ते\n", + "chapters_utils.py word: उनका\n", + "chapters_utils.py word_cleaned: उनका\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: गीतों\n", + "chapters_utils.py word_cleaned: गीतों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हुआ।\n", + "chapters_utils.py word_cleaned: हुआ।\n", + "chapters_utils.py word: विश्‍व\n", + "chapters_utils.py word_cleaned: विश्‍व\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अखबारों\n", + "chapters_utils.py word_cleaned: अखबारों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खबरें\n", + "chapters_utils.py word_cleaned: खबरें\n", + "chapters_utils.py word: छापीं।\n", + "chapters_utils.py word_cleaned: छापीं।\n", + "chapters_utils.py paragraph: {'originalText': '2. दाँडी में गाँधी जी और उनके साथियों ने समुद्र तट से नमक उठाया और उन्हें गिरफ़्तार कर लिया गया। उनकी गिरफ़्तारी के बाद असहयोग आन्दोलन शुरू हुआ और पूरे भारत में लोगों ने स्कूल, कॉलेज व दफ़्तरों का बायकॉट किया।', 'sortOrder': 2, 'id': 1421}\n", + "chapters_utils.py words: ['2.', 'दाँडी', 'में', 'गाँधी', 'जी', 'और', 'उनके', 'साथियों', 'ने', 'समुद्र', 'तट', 'से', 'नमक', 'उठाया', 'और', 'उन्हें', 'गिरफ़्तार', 'कर', 'लिया', 'गया।', 'उनकी', 'गिरफ़्तारी', 'के', 'बाद', 'असहयोग', 'आन्दोलन', 'शुरू', 'हुआ', 'और', 'पूरे', 'भारत', 'में', 'लोगों', 'ने', 'स्कूल,', 'कॉलेज', 'व', 'दफ़्तरों', 'का', 'बायकॉट', 'किया।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: साथियों\n", + "chapters_utils.py word_cleaned: साथियों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: समुद्र\n", + "chapters_utils.py word_cleaned: समुद्र\n", + "chapters_utils.py word: तट\n", + "chapters_utils.py word_cleaned: तट\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: उठाया\n", + "chapters_utils.py word_cleaned: उठाया\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: गिरफ़्तार\n", + "chapters_utils.py word_cleaned: गिरफ़्तार\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: लिया\n", + "chapters_utils.py word_cleaned: लिया\n", + "chapters_utils.py word: गया।\n", + "chapters_utils.py word_cleaned: गया।\n", + "chapters_utils.py word: उनकी\n", + "chapters_utils.py word_cleaned: उनकी\n", + "chapters_utils.py word: गिरफ़्तारी\n", + "chapters_utils.py word_cleaned: गिरफ़्तारी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: असहयोग\n", + "chapters_utils.py word_cleaned: असहयोग\n", + "chapters_utils.py word: आन्दोलन\n", + "chapters_utils.py word_cleaned: आन्दोलन\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: हुआ\n", + "chapters_utils.py word_cleaned: हुआ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लोगों\n", + "chapters_utils.py word_cleaned: लोगों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: स्कूल,\n", + "chapters_utils.py word_cleaned: स्कूल\n", + "chapters_utils.py word: कॉलेज\n", + "chapters_utils.py word_cleaned: कॉलेज\n", + "chapters_utils.py word: व\n", + "chapters_utils.py word_cleaned: व\n", + "chapters_utils.py word: दफ़्तरों\n", + "chapters_utils.py word_cleaned: दफ़्तरों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: बायकॉट\n", + "chapters_utils.py word_cleaned: बायकॉट\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py paragraph: {'originalText': '3. इस यात्रा में गाँधी जी के साथ 78 स्वेच्छा कर्मियों (वालंटियरों) ने भाग लिया। उन्होंने 385 किलोमीटर की दूरी तय की।', 'sortOrder': 3, 'id': 1422}\n", + "chapters_utils.py words: ['3.', 'इस', 'यात्रा', 'में', 'गाँधी', 'जी', 'के', 'साथ', '78', 'स्वेच्छा', 'कर्मियों', '(वालंटियरों)', 'ने', 'भाग', 'लिया।', 'उन्होंने', '385', 'किलोमीटर', 'की', 'दूरी', 'तय', 'की।']\n", + "chapters_utils.py word: 3.\n", + "chapters_utils.py word_cleaned: 3\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: 78\n", + "chapters_utils.py word_cleaned: 78\n", + "chapters_utils.py word: स्वेच्छा\n", + "chapters_utils.py word_cleaned: स्वेच्छा\n", + "chapters_utils.py word: कर्मियों\n", + "chapters_utils.py word_cleaned: कर्मियों\n", + "chapters_utils.py word: (वालंटियरों)\n", + "chapters_utils.py word_cleaned: वालंटियरों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: भाग\n", + "chapters_utils.py word_cleaned: भाग\n", + "chapters_utils.py word: लिया।\n", + "chapters_utils.py word_cleaned: लिया।\n", + "chapters_utils.py word: उन्होंने\n", + "chapters_utils.py word_cleaned: उन्होंने\n", + "chapters_utils.py word: 385\n", + "chapters_utils.py word_cleaned: 385\n", + "chapters_utils.py word: किलोमीटर\n", + "chapters_utils.py word_cleaned: किलोमीटर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: दूरी\n", + "chapters_utils.py word_cleaned: दूरी\n", + "chapters_utils.py word: तय\n", + "chapters_utils.py word_cleaned: तय\n", + "chapters_utils.py word: की।\n", + "chapters_utils.py word_cleaned: की।\n", + "chapters_utils.py paragraph: {'originalText': '4. यात्रा 12 मार्च को शुरू होकर 5 अप्रैल, 1930 को समाप्त हुई। सबसे कम उम्र का यात्री 16 वर्ष का था।', 'sortOrder': 4, 'id': 1423}\n", + "chapters_utils.py words: ['4.', 'यात्रा', '12', 'मार्च', 'को', 'शुरू', 'होकर', '5', 'अप्रैल,', '1930', 'को', 'समाप्त', 'हुई।', 'सबसे', 'कम', 'उम्र', 'का', 'यात्री', '16', 'वर्ष', 'का', 'था।']\n", + "chapters_utils.py word: 4.\n", + "chapters_utils.py word_cleaned: 4\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: 12\n", + "chapters_utils.py word_cleaned: 12\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: 5\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: अप्रैल,\n", + "chapters_utils.py word_cleaned: अप्रैल\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: समाप्त\n", + "chapters_utils.py word_cleaned: समाप्त\n", + "chapters_utils.py word: हुई।\n", + "chapters_utils.py word_cleaned: हुई।\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: कम\n", + "chapters_utils.py word_cleaned: कम\n", + "chapters_utils.py word: उम्र\n", + "chapters_utils.py word_cleaned: उम्र\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: यात्री\n", + "chapters_utils.py word_cleaned: यात्री\n", + "chapters_utils.py word: 16\n", + "chapters_utils.py word_cleaned: 16\n", + "chapters_utils.py word: वर्ष\n", + "chapters_utils.py word_cleaned: वर्ष\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '5. सन 2005 में दाँडी यात्रा की 75 वीं जयंती थी।', 'sortOrder': 5, 'id': 1424}\n", + "chapters_utils.py words: ['5.', 'सन', '2005', 'में', 'दाँडी', 'यात्रा', 'की', '75', 'वीं', 'जयंती', 'थी।']\n", + "chapters_utils.py word: 5.\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: सन\n", + "chapters_utils.py word_cleaned: सन\n", + "chapters_utils.py word: 2005\n", + "chapters_utils.py word_cleaned: 2005\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: 75\n", + "chapters_utils.py word_cleaned: 75\n", + "chapters_utils.py word: वीं\n", + "chapters_utils.py word_cleaned: वीं\n", + "chapters_utils.py word: जयंती\n", + "chapters_utils.py word_cleaned: जयंती\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 15\n", + "chapters_utils.py word_count: 1507\n", + "chapters_utils.py total_word_length: 5617\n", + "step1_2_preprocess_data.py index: 53\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 14\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: अनुमान\n", + "chapters_utils.py word_cleaned: अनुमान\n", + "chapters_utils.py word: लगा\n", + "chapters_utils.py word_cleaned: लगा\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: हमारे\n", + "chapters_utils.py word_cleaned: हमारे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: पक्षी!\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गैंडा\n", + "chapters_utils.py word_cleaned: गैंडा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: पिस्सू\n", + "chapters_utils.py word_cleaned: पिस्सू\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: घिरा\n", + "chapters_utils.py word_cleaned: घिरा\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: पिस्सूओं\n", + "chapters_utils.py word_cleaned: पिस्सूओं\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: खा\n", + "chapters_utils.py word_cleaned: खा\n", + "chapters_utils.py word: जाती\n", + "chapters_utils.py word_cleaned: जाती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: मगरमच्छ\n", + "chapters_utils.py word_cleaned: मगरमच्छ\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ब्रश\n", + "chapters_utils.py word_cleaned: ब्रश\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: चोंच\n", + "chapters_utils.py word_cleaned: चोंच\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: साफ\n", + "chapters_utils.py word_cleaned: साफ\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: देती\n", + "chapters_utils.py word_cleaned: देती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जिराफ़\n", + "chapters_utils.py word_cleaned: जिराफ़\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पहुंच\n", + "chapters_utils.py word_cleaned: पहुंच\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: सकती\n", + "chapters_utils.py word_cleaned: सकती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: ज़ेब्रा\n", + "chapters_utils.py word_cleaned: ज़ेब्रा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: वस्तुएं\n", + "chapters_utils.py word_cleaned: वस्तुएं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बड़ी-बड़ी\n", + "chapters_utils.py word_cleaned: बड़ीबड़ी\n", + "chapters_utils.py word: आँखें\n", + "chapters_utils.py word_cleaned: आँखें\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रहा\n", + "chapters_utils.py word_cleaned: रहा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अलग-अलग\n", + "chapters_utils.py word_cleaned: अलगअलग\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है...\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: गाते\n", + "chapters_utils.py word_cleaned: गाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: बनोगे?\n", + "chapters_utils.py word_cleaned: बनोगे\n", + "chapters_utils.py word_count: 140\n", + "chapters_utils.py total_word_length: 541\n", + "step1_2_preprocess_data.py index: 54\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 11\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py word: लटकती\n", + "chapters_utils.py word_cleaned: लटकती\n", + "chapters_utils.py word: जड़ों\n", + "chapters_utils.py word_cleaned: जड़ों\n", + "chapters_utils.py word: वाला\n", + "chapters_utils.py word_cleaned: वाला\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: बरगद\n", + "chapters_utils.py word_cleaned: बरगद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बड़ा\n", + "chapters_utils.py word_cleaned: बड़ा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: घेरे\n", + "chapters_utils.py word_cleaned: घेरे\n", + "chapters_utils.py word: शान\n", + "chapters_utils.py word_cleaned: शान\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py word: दो\n", + "chapters_utils.py word_cleaned: दो\n", + "chapters_utils.py word: पलाश\n", + "chapters_utils.py word_cleaned: पलाश\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बगिया\n", + "chapters_utils.py word_cleaned: बगिया\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लाये\n", + "chapters_utils.py word_cleaned: लाये\n", + "chapters_utils.py word: बहार,\n", + "chapters_utils.py word_cleaned: बहार\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py word: मधुमक्खियों\n", + "chapters_utils.py word_cleaned: मधुमक्खियों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बाँटें\n", + "chapters_utils.py word_cleaned: बाँटें\n", + "chapters_utils.py word: मकरंद\n", + "chapters_utils.py word_cleaned: मकरंद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपहार।\n", + "chapters_utils.py word_cleaned: उपहार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तीन\n", + "chapters_utils.py word_cleaned: तीन\n", + "chapters_utils.py word: पीपल\n", + "chapters_utils.py word_cleaned: पीपल\n", + "chapters_utils.py word: गाँव\n", + "chapters_utils.py word_cleaned: गाँव\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: डगर\n", + "chapters_utils.py word_cleaned: डगर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py word: तोते\n", + "chapters_utils.py word_cleaned: तोते\n", + "chapters_utils.py word: खाएँ\n", + "chapters_utils.py word_cleaned: खाएँ\n", + "chapters_utils.py word: कुतर\n", + "chapters_utils.py word_cleaned: कुतर\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नर्म\n", + "chapters_utils.py word_cleaned: नर्म\n", + "chapters_utils.py word: गूलर।\n", + "chapters_utils.py word_cleaned: गूलर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: खेतों\n", + "chapters_utils.py word_cleaned: खेतों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उस\n", + "chapters_utils.py word_cleaned: उस\n", + "chapters_utils.py word: पार\n", + "chapters_utils.py word_cleaned: पार\n", + "chapters_utils.py word: लहराते\n", + "chapters_utils.py word_cleaned: लहराते\n", + "chapters_utils.py word: नीम\n", + "chapters_utils.py word_cleaned: नीम\n", + "chapters_utils.py word: चार,\n", + "chapters_utils.py word_cleaned: चार\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py word: निबौरी\n", + "chapters_utils.py word_cleaned: निबौरी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कीड़ों\n", + "chapters_utils.py word_cleaned: कीड़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: भगाने\n", + "chapters_utils.py word_cleaned: भगाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपचार।\n", + "chapters_utils.py word_cleaned: उपचार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py word: बलखाती\n", + "chapters_utils.py word_cleaned: बलखाती\n", + "chapters_utils.py word: धारा\n", + "chapters_utils.py word_cleaned: धारा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पास\n", + "chapters_utils.py word_cleaned: पास\n", + "chapters_utils.py word: जमे\n", + "chapters_utils.py word_cleaned: जमे\n", + "chapters_utils.py word: जामुन\n", + "chapters_utils.py word_cleaned: जामुन\n", + "chapters_utils.py word: पाँच,\n", + "chapters_utils.py word_cleaned: पाँच\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py word: गिरे-कुचले\n", + "chapters_utils.py word_cleaned: गिरेकुचले\n", + "chapters_utils.py word: फलों\n", + "chapters_utils.py word_cleaned: फलों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: दिया\n", + "chapters_utils.py word_cleaned: दिया\n", + "chapters_utils.py word: बैंगनी\n", + "chapters_utils.py word_cleaned: बैंगनी\n", + "chapters_utils.py word: रंग\n", + "chapters_utils.py word_cleaned: रंग\n", + "chapters_utils.py word: पसार।\n", + "chapters_utils.py word_cleaned: पसार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py word: पारिजात\n", + "chapters_utils.py word_cleaned: पारिजात\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: छ:\n", + "chapters_utils.py word_cleaned: छ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: मेंड़\n", + "chapters_utils.py word_cleaned: मेंड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खड़े,\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py word: गुलाबी\n", + "chapters_utils.py word_cleaned: गुलाबी\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उमड़े\n", + "chapters_utils.py word_cleaned: उमड़े\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: छोटे-बड़े।\n", + "chapters_utils.py word_cleaned: छोटेबड़े।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: सात\n", + "chapters_utils.py word_cleaned: सात\n", + "chapters_utils.py word: लंबे\n", + "chapters_utils.py word_cleaned: लंबे\n", + "chapters_utils.py word: देवदार,\n", + "chapters_utils.py word_cleaned: देवदार\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py word: तारपीन\n", + "chapters_utils.py word_cleaned: तारपीन\n", + "chapters_utils.py word: निकले,\n", + "chapters_utils.py word_cleaned: निकले\n", + "chapters_utils.py word: इसकी\n", + "chapters_utils.py word_cleaned: इसकी\n", + "chapters_utils.py word: काठ\n", + "chapters_utils.py word_cleaned: काठ\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: काठी\n", + "chapters_utils.py word_cleaned: काठी\n", + "chapters_utils.py word: बने।\n", + "chapters_utils.py word_cleaned: बने।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py word: इमली\n", + "chapters_utils.py word_cleaned: इमली\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: आठ\n", + "chapters_utils.py word_cleaned: आठ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: कस्बे\n", + "chapters_utils.py word_cleaned: कस्बे\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किनारे,\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py word: पक\n", + "chapters_utils.py word_cleaned: पक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: गिरी\n", + "chapters_utils.py word_cleaned: गिरी\n", + "chapters_utils.py word: फलियाँ\n", + "chapters_utils.py word_cleaned: फलियाँ\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: खाये,\n", + "chapters_utils.py word_cleaned: खाये\n", + "chapters_utils.py word: मारे\n", + "chapters_utils.py word_cleaned: मारे\n", + "chapters_utils.py word: चटखारे।\n", + "chapters_utils.py word_cleaned: चटखारे।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: जंगल\n", + "chapters_utils.py word_cleaned: जंगल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बीच\n", + "chapters_utils.py word_cleaned: बीच\n", + "chapters_utils.py word: नौ\n", + "chapters_utils.py word_cleaned: नौ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: साल\n", + "chapters_utils.py word_cleaned: साल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तने,\n", + "chapters_utils.py word_cleaned: तने\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py word: दोने-पत्तल\n", + "chapters_utils.py word_cleaned: दोनेपत्तल\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: चमड़े\n", + "chapters_utils.py word_cleaned: चमड़े\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मोटे\n", + "chapters_utils.py word_cleaned: मोटे\n", + "chapters_utils.py word: पत्तों\n", + "chapters_utils.py word_cleaned: पत्तों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बनें।\n", + "chapters_utils.py word_cleaned: बनें।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py word: तपती\n", + "chapters_utils.py word_cleaned: तपती\n", + "chapters_utils.py word: मरुभूमि\n", + "chapters_utils.py word_cleaned: मरुभूमि\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खेजड़ी\n", + "chapters_utils.py word_cleaned: खेजड़ी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दस\n", + "chapters_utils.py word_cleaned: दस\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: पाकर,\n", + "chapters_utils.py word_cleaned: पाकर\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py word: ऊँट\n", + "chapters_utils.py word_cleaned: ऊँट\n", + "chapters_utils.py word: धन्य\n", + "chapters_utils.py word_cleaned: धन्य\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाएँ\n", + "chapters_utils.py word_cleaned: जाएँ\n", + "chapters_utils.py word: इनकी\n", + "chapters_utils.py word_cleaned: इनकी\n", + "chapters_utils.py word: कोंपल\n", + "chapters_utils.py word_cleaned: कोंपल\n", + "chapters_utils.py word: खाकर।\n", + "chapters_utils.py word_cleaned: खाकर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: प्राणवायु\n", + "chapters_utils.py word_cleaned: प्राणवायु\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: आये\n", + "chapters_utils.py word_cleaned: आये\n", + "chapters_utils.py word: साँसों\n", + "chapters_utils.py word_cleaned: साँसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: काम,\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py word: मिट्टी\n", + "chapters_utils.py word_cleaned: मिट्टी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: उपजाऊ\n", + "chapters_utils.py word_cleaned: उपजाऊ\n", + "chapters_utils.py word: पर्त\n", + "chapters_utils.py word_cleaned: पर्त\n", + "chapters_utils.py word: बचाते,\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: पत्ते\n", + "chapters_utils.py word_cleaned: पत्ते\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: भोजन\n", + "chapters_utils.py word_cleaned: भोजन\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: काम।\n", + "chapters_utils.py word_cleaned: काम।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पेड़,\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py word: बचाते\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कुदरत\n", + "chapters_utils.py word_cleaned: कुदरत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मार\n", + "chapters_utils.py word_cleaned: मार\n", + "chapters_utils.py word: से,\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: इनका\n", + "chapters_utils.py word_cleaned: इनका\n", + "chapters_utils.py word: योगदान।\n", + "chapters_utils.py word_cleaned: योगदान।\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं,\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: अहमियत\n", + "chapters_utils.py word_cleaned: अहमियत\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: निराली\n", + "chapters_utils.py word_cleaned: निराली\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word_count: 211\n", + "chapters_utils.py total_word_length: 772\n", + "step1_2_preprocess_data.py index: 55\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 12\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: दिन,\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: विज्ञान\n", + "chapters_utils.py word_cleaned: विज्ञान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खिड़की\n", + "chapters_utils.py word_cleaned: खिड़की\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाहर\n", + "chapters_utils.py word_cleaned: बाहर\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: आकाश\n", + "chapters_utils.py word_cleaned: आकाश\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फैलाए\n", + "chapters_utils.py word_cleaned: फैलाए\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: कितनी\n", + "chapters_utils.py word_cleaned: कितनी\n", + "chapters_utils.py word: खुश\n", + "chapters_utils.py word_cleaned: खुश\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"सुनो!\n", + "chapters_utils.py word_cleaned: सुनो\n", + "chapters_utils.py word: तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: बोर्ड\n", + "chapters_utils.py word_cleaned: बोर्ड\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: ध्यान\n", + "chapters_utils.py word_cleaned: ध्यान\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देना\n", + "chapters_utils.py word_cleaned: देना\n", + "chapters_utils.py word: चाहिए?\"\n", + "chapters_utils.py word_cleaned: चाहिए\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पढ़ा\n", + "chapters_utils.py word_cleaned: पढ़ा\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: नई\n", + "chapters_utils.py word_cleaned: नई\n", + "chapters_utils.py word: अध्य्यापिका\n", + "chapters_utils.py word_cleaned: अध्य्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: हड़बड़ा\n", + "chapters_utils.py word_cleaned: हड़बड़ा\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खड़ी\n", + "chapters_utils.py word_cleaned: खड़ी\n", + "chapters_utils.py word: हुई\n", + "chapters_utils.py word_cleaned: हुई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बोली,\n", + "chapters_utils.py word_cleaned: बोली\n", + "chapters_utils.py word: \"सॉरी\n", + "chapters_utils.py word_cleaned: सॉरी\n", + "chapters_utils.py word: मैडम!\"\n", + "chapters_utils.py word_cleaned: मैडम\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: काश!\n", + "chapters_utils.py word_cleaned: काश\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह...\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py word: \"तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\"\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py word: 'सरला'\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"अरे\n", + "chapters_utils.py word_cleaned: अरे\n", + "chapters_utils.py word: वाह!\n", + "chapters_utils.py word_cleaned: वाह\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: पहली\n", + "chapters_utils.py word_cleaned: पहली\n", + "chapters_utils.py word: महिला\n", + "chapters_utils.py word_cleaned: महिला\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: (पायलॉट)\n", + "chapters_utils.py word_cleaned: पायलॉट\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: था?\n", + "chapters_utils.py word_cleaned: था\n", + "chapters_utils.py word: मेरा\n", + "chapters_utils.py word_cleaned: मेरा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: हंसा\n", + "chapters_utils.py word_cleaned: हंसा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मतलब\n", + "chapters_utils.py word_cleaned: मतलब\n", + "chapters_utils.py word: 'हंस'।\n", + "chapters_utils.py word_cleaned: हंस।\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हंस\n", + "chapters_utils.py word_cleaned: हंस\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाले\n", + "chapters_utils.py word_cleaned: वाले\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: अध्यापिका\n", + "chapters_utils.py word_cleaned: अध्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py word: \"सरला!\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: पुस्तकालय\n", + "chapters_utils.py word_cleaned: पुस्तकालय\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बिताना\n", + "chapters_utils.py word_cleaned: बिताना\n", + "chapters_utils.py word: चाहिए।\n", + "chapters_utils.py word_cleaned: चाहिए।\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: -सी\n", + "chapters_utils.py word_cleaned: सी\n", + "chapters_utils.py word: किताबें\n", + "chapters_utils.py word_cleaned: किताबें\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यंत्रों\n", + "chapters_utils.py word_cleaned: यंत्रों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: भी,\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़।\n", + "chapters_utils.py word_cleaned: जहाज़।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: दिनों\n", + "chapters_utils.py word_cleaned: दिनों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: पशु-पक्षियों\n", + "chapters_utils.py word_cleaned: पशुपक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: जान\n", + "chapters_utils.py word_cleaned: जान\n", + "chapters_utils.py word: गई\n", + "chapters_utils.py word_cleaned: गई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: क्यों\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते!\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: सीखा\n", + "chapters_utils.py word_cleaned: सीखा\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मानव\n", + "chapters_utils.py word_cleaned: मानव\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: मनुष्य\n", + "chapters_utils.py word_cleaned: मनुष्य\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: आविष्कार,\n", + "chapters_utils.py word_cleaned: आविष्कार\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बैठकर\n", + "chapters_utils.py word_cleaned: बैठकर\n", + "chapters_utils.py word: विश्व\n", + "chapters_utils.py word_cleaned: विश्व\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: नगर\n", + "chapters_utils.py word_cleaned: नगर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: मज़ा\n", + "chapters_utils.py word_cleaned: मज़ा\n", + "chapters_utils.py word: ले\n", + "chapters_utils.py word_cleaned: ले\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जीव\n", + "chapters_utils.py word_cleaned: जीव\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिन्हें\n", + "chapters_utils.py word_cleaned: जिन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बाहरी\n", + "chapters_utils.py word_cleaned: बाहरी\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती।\n", + "chapters_utils.py word_cleaned: होती।\n", + "chapters_utils.py word: आमतौर\n", + "chapters_utils.py word_cleaned: आमतौर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: हल्के\n", + "chapters_utils.py word_cleaned: हल्के\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: इसलिए\n", + "chapters_utils.py word_cleaned: इसलिए\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: भारी\n", + "chapters_utils.py word_cleaned: भारी\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: दोनों\n", + "chapters_utils.py word_cleaned: दोनों\n", + "chapters_utils.py word: किनारे\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बने\n", + "chapters_utils.py word_cleaned: बने\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: जहाजों\n", + "chapters_utils.py word_cleaned: जहाजों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बनावट\n", + "chapters_utils.py word_cleaned: बनावट\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: सपाट\n", + "chapters_utils.py word_cleaned: सपाट\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मुड़े\n", + "chapters_utils.py word_cleaned: मुड़े\n", + "chapters_utils.py word: हुए,\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: हमने\n", + "chapters_utils.py word_cleaned: हमने\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हुए\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: कभी\n", + "chapters_utils.py word_cleaned: कभी\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देखा!\n", + "chapters_utils.py word_cleaned: देखा\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: ताकि\n", + "chapters_utils.py word_cleaned: ताकि\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: धकेलने\n", + "chapters_utils.py word_cleaned: धकेलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपयोग\n", + "chapters_utils.py word_cleaned: उपयोग\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकें।\n", + "chapters_utils.py word_cleaned: सकें।\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: लगी\n", + "chapters_utils.py word_cleaned: लगी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: सहारे\n", + "chapters_utils.py word_cleaned: सहारे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: बनाता\n", + "chapters_utils.py word_cleaned: बनाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: मज़बूत\n", + "chapters_utils.py word_cleaned: मज़बूत\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: (तेज़)\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: काम\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: लगाते\n", + "chapters_utils.py word_cleaned: लगाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: सीखते\n", + "chapters_utils.py word_cleaned: सीखते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कैसे\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: उड़ा\n", + "chapters_utils.py word_cleaned: उड़ा\n", + "chapters_utils.py word: जाय,वैसे\n", + "chapters_utils.py word_cleaned: जायवैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: धकेलती\n", + "chapters_utils.py word_cleaned: धकेलती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ने\n", + "chapters_utils.py word_cleaned: बढ़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: ईंधन\n", + "chapters_utils.py word_cleaned: ईंधन\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: जलाती\n", + "chapters_utils.py word_cleaned: जलाती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: गर्म\n", + "chapters_utils.py word_cleaned: गर्म\n", + "chapters_utils.py word: गैसें\n", + "chapters_utils.py word_cleaned: गैसें\n", + "chapters_utils.py word: छोड़ती\n", + "chapters_utils.py word_cleaned: छोड़ती\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पीछे\n", + "chapters_utils.py word_cleaned: पीछे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: बनता\n", + "chapters_utils.py word_cleaned: बनता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उससे\n", + "chapters_utils.py word_cleaned: उससे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ता\n", + "chapters_utils.py word_cleaned: बढ़ता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: कार\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: एवं\n", + "chapters_utils.py word_cleaned: एवं\n", + "chapters_utils.py word: अन्य\n", + "chapters_utils.py word_cleaned: अन्य\n", + "chapters_utils.py word: वाहन\n", + "chapters_utils.py word_cleaned: वाहन\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: चलते\n", + "chapters_utils.py word_cleaned: चलते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: मगर\n", + "chapters_utils.py word_cleaned: मगर\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकते।\n", + "chapters_utils.py word_cleaned: सकते।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: बहती\n", + "chapters_utils.py word_cleaned: बहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: इन्हीं\n", + "chapters_utils.py word_cleaned: इन्हीं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठते\n", + "chapters_utils.py word_cleaned: उठते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: पूँछ\n", + "chapters_utils.py word_cleaned: पूँछ\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: बिलकुल\n", + "chapters_utils.py word_cleaned: बिलकुल\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह,\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: टिकने\n", + "chapters_utils.py word_cleaned: टिकने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: दिशा\n", + "chapters_utils.py word_cleaned: दिशा\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़कों\n", + "chapters_utils.py word_cleaned: सड़कों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: 'रनवे'\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: कहा\n", + "chapters_utils.py word_cleaned: कहा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ना\n", + "chapters_utils.py word_cleaned: दौड़ना\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठने\n", + "chapters_utils.py word_cleaned: उठने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py word: अधिकांश\n", + "chapters_utils.py word_cleaned: अधिकांश\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़ी\n", + "chapters_utils.py word_cleaned: तेज़ी\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ते\n", + "chapters_utils.py word_cleaned: दौड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डा\n", + "chapters_utils.py word_cleaned: अड्डा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महत्वपूर्ण\n", + "chapters_utils.py word_cleaned: महत्वपूर्ण\n", + "chapters_utils.py word: हिस्सा\n", + "chapters_utils.py word_cleaned: हिस्सा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: बढ़ाने\n", + "chapters_utils.py word_cleaned: बढ़ाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: पर्याप्त\n", + "chapters_utils.py word_cleaned: पर्याप्त\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: देता\n", + "chapters_utils.py word_cleaned: देता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंत\n", + "chapters_utils.py word_cleaned: अंत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: कहाँ\n", + "chapters_utils.py word_cleaned: कहाँ\n", + "chapters_utils.py word: जाना\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्योंकि\n", + "chapters_utils.py word_cleaned: क्योंकि\n", + "chapters_utils.py word: विमानचालक\n", + "chapters_utils.py word_cleaned: विमानचालक\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: चलाते\n", + "chapters_utils.py word_cleaned: चलाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अंदर,\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह,\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जिसे\n", + "chapters_utils.py word_cleaned: जिसे\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: स्थल\n", + "chapters_utils.py word_cleaned: स्थल\n", + "chapters_utils.py word: (कॉकपिट)\n", + "chapters_utils.py word_cleaned: कॉकपिट\n", + "chapters_utils.py word: कहते\n", + "chapters_utils.py word_cleaned: कहते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: नियंत्रित\n", + "chapters_utils.py word_cleaned: नियंत्रित\n", + "chapters_utils.py word: (कंट्रोल)\n", + "chapters_utils.py word_cleaned: कंट्रोल\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: सटीक\n", + "chapters_utils.py word_cleaned: सटीक\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: आधुनिक\n", + "chapters_utils.py word_cleaned: आधुनिक\n", + "chapters_utils.py word: डिवाइसों\n", + "chapters_utils.py word_cleaned: डिवाइसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डों\n", + "chapters_utils.py word_cleaned: अड्डों\n", + "chapters_utils.py word: (एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जहाँ\n", + "chapters_utils.py word_cleaned: जहाँ\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरते\n", + "chapters_utils.py word_cleaned: उतरते\n", + "chapters_utils.py word: हैं)\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: संपर्क\n", + "chapters_utils.py word_cleaned: संपर्क\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: हमारी\n", + "chapters_utils.py word_cleaned: हमारी\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सिग्नल\n", + "chapters_utils.py word_cleaned: सिग्नल\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पुलिस\n", + "chapters_utils.py word_cleaned: पुलिस\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: वैसे\n", + "chapters_utils.py word_cleaned: वैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वायु\n", + "chapters_utils.py word_cleaned: वायु\n", + "chapters_utils.py word: यातायात\n", + "chapters_utils.py word_cleaned: यातायात\n", + "chapters_utils.py word: नियंत्रक\n", + "chapters_utils.py word_cleaned: नियंत्रक\n", + "chapters_utils.py word: (एयर\n", + "chapters_utils.py word_cleaned: एयर\n", + "chapters_utils.py word: ट्रैफिक\n", + "chapters_utils.py word_cleaned: ट्रैफिक\n", + "chapters_utils.py word: कंट्रोलर)\n", + "chapters_utils.py word_cleaned: कंट्रोलर\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बताते\n", + "chapters_utils.py word_cleaned: बताते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: किस\n", + "chapters_utils.py word_cleaned: किस\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरनी\n", + "chapters_utils.py word_cleaned: भरनी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरना\n", + "chapters_utils.py word_cleaned: भरना\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहेगा।\n", + "chapters_utils.py word_cleaned: रहेगा।\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: वास्तव\n", + "chapters_utils.py word_cleaned: वास्तव\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: विशाल\n", + "chapters_utils.py word_cleaned: विशाल\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: सिर्फ़\n", + "chapters_utils.py word_cleaned: सिर्फ़\n", + "chapters_utils.py word: इसका\n", + "chapters_utils.py word_cleaned: इसका\n", + "chapters_utils.py word: आकार\n", + "chapters_utils.py word_cleaned: आकार\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: बल्कि\n", + "chapters_utils.py word_cleaned: बल्कि\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हालाँकि\n", + "chapters_utils.py word_cleaned: हालाँकि\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: बनना\n", + "chapters_utils.py word_cleaned: बनना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ाना\n", + "chapters_utils.py word_cleaned: उड़ाना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py word: ...\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py word: चलो\n", + "chapters_utils.py word_cleaned: चलो\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरें!\n", + "chapters_utils.py word_cleaned: भरें\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: दोस्तों\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मज़े\n", + "chapters_utils.py word_cleaned: मज़े\n", + "chapters_utils.py word: लें\n", + "chapters_utils.py word_cleaned: लें\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: देखो\n", + "chapters_utils.py word_cleaned: देखो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: किसका\n", + "chapters_utils.py word_cleaned: किसका\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: ज़रा\n", + "chapters_utils.py word_cleaned: ज़रा\n", + "chapters_utils.py word: सोचो,\n", + "chapters_utils.py word_cleaned: सोचो\n", + "chapters_utils.py word: क्यों?\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कमाल\n", + "chapters_utils.py word_cleaned: कमाल\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: तरीक़े\n", + "chapters_utils.py word_cleaned: तरीक़े\n", + "chapters_utils.py word: का?\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: ग़ौर\n", + "chapters_utils.py word_cleaned: ग़ौर\n", + "chapters_utils.py word: करो,\n", + "chapters_utils.py word_cleaned: करो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: छोड़ा\n", + "chapters_utils.py word_cleaned: छोड़ा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: छोड़ने\n", + "chapters_utils.py word_cleaned: छोड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: फूँक\n", + "chapters_utils.py word_cleaned: फूँक\n", + "chapters_utils.py word: मारते\n", + "chapters_utils.py word_cleaned: मारते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नीचे,\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: तब\n", + "chapters_utils.py word_cleaned: तब\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: अंतर\n", + "chapters_utils.py word_cleaned: अंतर\n", + "chapters_utils.py word: दिखता\n", + "chapters_utils.py word_cleaned: दिखता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: 'फ़्लाइ\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: डोंट\n", + "chapters_utils.py word_cleaned: डोंट\n", + "chapters_utils.py word: फ़्लाइ'\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: गेम:\n", + "chapters_utils.py word_cleaned: गेम\n", + "chapters_utils.py word: मित्रों\n", + "chapters_utils.py word_cleaned: मित्रों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समूह\n", + "chapters_utils.py word_cleaned: समूह\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: -दूसरे\n", + "chapters_utils.py word_cleaned: दूसरे\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बिना\n", + "chapters_utils.py word_cleaned: बिना\n", + "chapters_utils.py word: छुए\n", + "chapters_utils.py word_cleaned: छुए\n", + "chapters_utils.py word: कमरे\n", + "chapters_utils.py word_cleaned: कमरे\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: चारों\n", + "chapters_utils.py word_cleaned: चारों\n", + "chapters_utils.py word: तरफ़\n", + "chapters_utils.py word_cleaned: तरफ़\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़ो।\n", + "chapters_utils.py word_cleaned: उड़ो।\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: (चोर)\n", + "chapters_utils.py word_cleaned: चोर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: कोने\n", + "chapters_utils.py word_cleaned: कोने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़ों\n", + "chapters_utils.py word_cleaned: चीज़ों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: कहेगा।\n", + "chapters_utils.py word_cleaned: कहेगा।\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़\n", + "chapters_utils.py word_cleaned: चीज़\n", + "chapters_utils.py word: (जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेज़/टेबुल)\n", + "chapters_utils.py word_cleaned: मेज़टेबुल\n", + "chapters_utils.py word: कहे\n", + "chapters_utils.py word_cleaned: कहे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: (बैठ\n", + "chapters_utils.py word_cleaned: बैठ\n", + "chapters_utils.py word: जाना)\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: ग़लती\n", + "chapters_utils.py word_cleaned: ग़लती\n", + "chapters_utils.py word: करेगा,\n", + "chapters_utils.py word_cleaned: करेगा\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: अगला\n", + "chapters_utils.py word_cleaned: अगला\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word_count: 965\n", + "chapters_utils.py total_word_length: 3451\n", + "step1_2_preprocess_data.py index: 56\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 4\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py word: नन्हा\n", + "chapters_utils.py word_cleaned: नन्हा\n", + "chapters_utils.py word: हाथी\n", + "chapters_utils.py word_cleaned: हाथी\n", + "chapters_utils.py word: भाई\n", + "chapters_utils.py word_cleaned: भाई\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: सा\n", + "chapters_utils.py word_cleaned: सा\n", + "chapters_utils.py word: मोटा।\n", + "chapters_utils.py word_cleaned: मोटा।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py word: कान\n", + "chapters_utils.py word_cleaned: कान\n", + "chapters_utils.py word: कैसे?\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: पंखे\n", + "chapters_utils.py word_cleaned: पंखे\n", + "chapters_utils.py word: जैसे!\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: लटकी\n", + "chapters_utils.py word_cleaned: लटकी\n", + "chapters_utils.py word: लम्बी\n", + "chapters_utils.py word_cleaned: लम्बी\n", + "chapters_utils.py word: सूंड़।\n", + "chapters_utils.py word_cleaned: सूंड़।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py word: दुम\n", + "chapters_utils.py word_cleaned: दुम\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सिरा\n", + "chapters_utils.py word_cleaned: सिरा\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कितना\n", + "chapters_utils.py word_cleaned: कितना\n", + "chapters_utils.py word: छोटा!\n", + "chapters_utils.py word_cleaned: छोटा\n", + "chapters_utils.py word_count: 20\n", + "chapters_utils.py total_word_length: 77\n", + "step1_2_preprocess_data.py index: 57\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 8\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: गोलू\n", + "chapters_utils.py word_cleaned: गोलू\n", + "chapters_utils.py word: गोल‍\n", + "chapters_utils.py word_cleaned: गोल‍\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py word: सारे\n", + "chapters_utils.py word_cleaned: सारे\n", + "chapters_utils.py word: लोग\n", + "chapters_utils.py word_cleaned: लोग\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: ढूंढ\n", + "chapters_utils.py word_cleaned: ढूंढ\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो।\n", + "chapters_utils.py word_cleaned: हो।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py word: सूरज\n", + "chapters_utils.py word_cleaned: सूरज\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अग‍र\n", + "chapters_utils.py word_cleaned: अग‍र\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: आधा\n", + "chapters_utils.py word_cleaned: आधा\n", + "chapters_utils.py word: अम्ब्रेला\n", + "chapters_utils.py word_cleaned: अम्ब्रेला\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py word: रात\n", + "chapters_utils.py word_cleaned: रात\n", + "chapters_utils.py word: को,\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: चाँद\n", + "chapters_utils.py word_cleaned: चाँद\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: हँसकर\n", + "chapters_utils.py word_cleaned: हँसकर\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: उल्लू\n", + "chapters_utils.py word_cleaned: उल्लू\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: गोल\n", + "chapters_utils.py word_cleaned: गोल\n", + "chapters_utils.py word: आँखों\n", + "chapters_utils.py word_cleaned: आँखों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: तरबूज़,\n", + "chapters_utils.py word_cleaned: तरबूज़\n", + "chapters_utils.py word: सेब,\n", + "chapters_utils.py word_cleaned: सेब\n", + "chapters_utils.py word: नारंगी,\n", + "chapters_utils.py word_cleaned: नारंगी\n", + "chapters_utils.py word: टमाटर,\n", + "chapters_utils.py word_cleaned: टमाटर\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py word: यहां\n", + "chapters_utils.py word_cleaned: यहां\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: ​​कि\n", + "chapters_utils.py word_cleaned: ​​कि\n", + "chapters_utils.py word: छोटे\n", + "chapters_utils.py word_cleaned: छोटे\n", + "chapters_utils.py word: नींबू\n", + "chapters_utils.py word_cleaned: नींबू\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: लग\n", + "chapters_utils.py word_cleaned: लग\n", + "chapters_utils.py word: रहे\n", + "chapters_utils.py word_cleaned: रहे\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मिठाई\n", + "chapters_utils.py word_cleaned: मिठाई\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: रसगुल्ला,\n", + "chapters_utils.py word_cleaned: रसगुल्ला\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: गुलाबजामुन,\n", + "chapters_utils.py word_cleaned: गुलाबजामुन\n", + "chapters_utils.py word: प्यारे\n", + "chapters_utils.py word_cleaned: प्यारे\n", + "chapters_utils.py word: लड्डू,\n", + "chapters_utils.py word_cleaned: लड्डू\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: दिखने\n", + "chapters_utils.py word_cleaned: दिखने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: मिठाइयाँ।\n", + "chapters_utils.py word_cleaned: मिठाइयाँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py word: पशु\n", + "chapters_utils.py word_cleaned: पशु\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: सजाने\n", + "chapters_utils.py word_cleaned: सजाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: चाहते\n", + "chapters_utils.py word_cleaned: चाहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py word: चीता,\n", + "chapters_utils.py word_cleaned: चीता\n", + "chapters_utils.py word: चीटियल\n", + "chapters_utils.py word_cleaned: चीटियल\n", + "chapters_utils.py word: हिरण,\n", + "chapters_utils.py word_cleaned: हिरण\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: त्वचा\n", + "chapters_utils.py word_cleaned: त्वचा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सब\n", + "chapters_utils.py word_cleaned: सब\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: लेडीबर्ड्स\n", + "chapters_utils.py word_cleaned: लेडीबर्ड्स\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: तितलियों\n", + "chapters_utils.py word_cleaned: तितलियों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हूं।\n", + "chapters_utils.py word_cleaned: हूं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मैदान\n", + "chapters_utils.py word_cleaned: मैदान\n", + "chapters_utils.py word: में,\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गेंद\n", + "chapters_utils.py word_cleaned: गेंद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: रूप\n", + "chapters_utils.py word_cleaned: रूप\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हूं,\n", + "chapters_utils.py word_cleaned: हूं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: खेल\n", + "chapters_utils.py word_cleaned: खेल\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: ट्रक,\n", + "chapters_utils.py word_cleaned: ट्रक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़,\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: कार,\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: चक्र,\n", + "chapters_utils.py word_cleaned: चक्र\n", + "chapters_utils.py word: चल\n", + "chapters_utils.py word_cleaned: चल\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: पाएंगे...\n", + "chapters_utils.py word_cleaned: पाएंगे\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होता।\n", + "chapters_utils.py word_cleaned: होता।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जहां\n", + "chapters_utils.py word_cleaned: जहां\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py word: आपके\n", + "chapters_utils.py word_cleaned: आपके\n", + "chapters_utils.py word: रिपोर्ट\n", + "chapters_utils.py word_cleaned: रिपोर्ट\n", + "chapters_utils.py word: कार्ड\n", + "chapters_utils.py word_cleaned: कार्ड\n", + "chapters_utils.py word: पर!\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: क्षमा\n", + "chapters_utils.py word_cleaned: क्षमा\n", + "chapters_utils.py word: करें\n", + "chapters_utils.py word_cleaned: करें\n", + "chapters_utils.py word: दोस्तों!\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: ऐसा\n", + "chapters_utils.py word_cleaned: ऐसा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: दुखी\n", + "chapters_utils.py word_cleaned: दुखी\n", + "chapters_utils.py word: लगता\n", + "chapters_utils.py word_cleaned: लगता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: आपको\n", + "chapters_utils.py word_cleaned: आपको\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: कड़ी\n", + "chapters_utils.py word_cleaned: कड़ी\n", + "chapters_utils.py word: मेहनत\n", + "chapters_utils.py word_cleaned: मेहनत\n", + "chapters_utils.py word: करनी\n", + "chapters_utils.py word_cleaned: करनी\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word_count: 176\n", + "chapters_utils.py total_word_length: 656\n", + "step1_2_preprocess_data.py storybooks_dataframe (after extracting data from `chapters` column): \n", + " id title ... word_count avg_word_length\n", + "0 37 अद्भुत कीड़े ... 26 3.500000\n", + "1 1 अभी नहीं, अभी नहीं! ... 167 3.784431\n", + "2 36 अरे, यह सब कौन खा गया? ... 138 4.115942\n", + "3 59 अरे...नहीं! ... 129 4.100775\n", + "4 25 आओ, बीज बटोरें! ... 1596 3.704261\n", + "5 29 आज, मैं हूँ... ... 110 3.536364\n", + "6 63 आनंद ... 101 3.742574\n", + "7 2 आलू-मालू-कालू ... 123 3.829268\n", + "8 15 उड़ने वाला ऑटो ... 1291 3.571650\n", + "9 6 एक था मोटा राजा ... 78 3.538462\n", + "10 53 एक सौ सैंतीसवाँ पैर ... 486 3.707819\n", + "11 66 एक सफ़र, एक खेल ... 442 4.009050\n", + "12 56 एक, तीन, पाँच, मदद! मदद! ... 398 3.673367\n", + "13 4 कहानी- बादल की सैर ... 117 3.205128\n", + "14 42 कितनी मज़ेदार है बांग्ला संख्याएं ... 264 3.700758\n", + "15 61 कुत्ते के अंडे ... 178 3.741573\n", + "16 50 कोयल का गला हुआ खराब ... 811 3.675709\n", + "17 32 क्या होता अगर? ... 209 3.741627\n", + "18 11 गप्पू नाच नहीं सकती ... 194 3.298969\n", + "19 26 गरजे बादल नाचे मोर ... 393 3.625954\n", + "20 51 घूम-घूम घड़ियाल का अनोखा सफ़र ... 623 3.874799\n", + "21 7 चाँद का तोहफ़ा ... 144 3.555556\n", + "22 64 छुट्टी ... 85 3.847059\n", + "23 55 जादुर्इ गुटका ... 461 3.659436\n", + "24 34 जीव-जन्तुओं के घर ... 148 3.763514\n", + "25 47 टुमी के पार्क का दिन ... 117 3.435897\n", + "26 24 टूथपेस्ट ट्यूब के अंदर कैसे आया? ... 731 3.753762\n", + "27 27 तारा की गगनचुंबी यात्रा ... 211 3.853081\n", + "28 46 तितलियां ... 81 3.691358\n", + "29 65 दीदी का रंग बिरंगा खज़ाना ... 426 3.598592\n", + "30 60 द्रुवी की छतरी ... 427 3.742389\n", + "31 17 पिशि फँसी तूफ़ान में ... 374 3.721925\n", + "32 19 पूरी क्यों फूलती है? ... 1342 3.486587\n", + "33 39 बंटी और उसके गाते हुए पक्षी ... 177 3.627119\n", + "34 5 बनबिलाव! बनबिलाव! ... 116 4.646552\n", + "35 28 बोलो एक साँस में ... 95 4.578947\n", + "36 20 मधुमक्खियाँ क्यों भन-भन करती हैं? ... 672 3.684524\n", + "37 30 मलार का बड़ा सा घर ... 201 3.597015\n", + "38 22 मुत्तज्जी की उम्र क्या है? ... 2057 3.631988\n", + "39 57 मेंढक की तरकीब ... 133 3.563910\n", + "40 33 मेरा प्रथम परिचय - भारतीय डायनोसॉर से ... 23 6.695652\n", + "41 8 मैं और मेरी दोस्त टीना| ... 150 3.293333\n", + "42 9 मैं नहीं डरती ! ... 107 2.915888\n", + "43 16 मैं बहुत कुछ बना सकता हूँ! ... 120 3.641667\n", + "44 41 राजू की पहली हवाई-यात्रा ... 555 3.749550\n", + "45 10 रिमझिम बरसे बादल ... 101 3.188119\n", + "46 58 रोज़ और रॉकी चले कम्पोस्ट बनाने ... 131 4.175573\n", + "47 49 लाल बरसाती ... 258 3.689922\n", + "48 52 सत्यम, ज़रा संभल के! ... 559 3.695886\n", + "49 18 सबसे अच्छा घर ... 564 3.751773\n", + "50 40 सूरज का दोस्त कौन ? ... 89 3.831461\n", + "51 14 सो जाओ टिंकु! ... 488 3.815574\n", + "52 23 स्वतंत्रता की ओर ... 1507 3.727273\n", + "53 38 हमारे मित्र कौन है? ... 140 3.864286\n", + "54 54 हर पेड़ ज़रूरी है! ... 211 3.658768\n", + "55 21 हवाई जहाज़ कैसे उड़ते हैं? ... 965 3.576166\n", + "56 31 हाथी भाई ... 20 3.850000\n", + "57 48 ग़ोलू एक ग़ोल कि कहानी ... 176 3.727273\n", + "\n", + "[58 rows x 12 columns]\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping unnecessary columns): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 11 20 26 3.500000\n", + "1 1 LEVEL1 7 17 167 3.784431\n", + "2 36 LEVEL1 11 29 138 4.115942\n", + "3 59 LEVEL2 16 29 129 4.100775\n", + "4 25 LEVEL3 19 54 1596 3.704261\n", + "5 29 LEVEL1 11 13 110 3.536364\n", + "6 63 LEVEL1 15 13 101 3.742574\n", + "7 2 LEVEL1 7 11 123 3.829268\n", + "8 15 LEVEL3 23 47 1291 3.571650\n", + "9 6 LEVEL1 7 7 78 3.538462\n", + "10 53 LEVEL2 15 62 486 3.707819\n", + "11 66 LEVEL2 15 44 442 4.009050\n", + "12 56 LEVEL2 11 37 398 3.673367\n", + "13 4 LEVEL1 12 25 117 3.205128\n", + "14 42 LEVEL1 15 37 264 3.700758\n", + "15 61 LEVEL2 17 29 178 3.741573\n", + "16 50 LEVEL2 18 48 811 3.675709\n", + "17 32 LEVEL1 10 25 209 3.741627\n", + "18 11 LEVEL1 12 31 194 3.298969\n", + "19 26 LEVEL2 7 11 393 3.625954\n", + "20 51 LEVEL2 19 48 623 3.874799\n", + "21 7 LEVEL1 11 13 144 3.555556\n", + "22 64 LEVEL2 4 25 85 3.847059\n", + "23 55 LEVEL2 18 52 461 3.659436\n", + "24 34 LEVEL1 11 19 148 3.763514\n", + "25 47 LEVEL1 16 18 117 3.435897\n", + "26 24 LEVEL3 14 20 731 3.753762\n", + "27 27 LEVEL2 11 23 211 3.853081\n", + "28 46 LEVEL1 5 5 81 3.691358\n", + "29 65 LEVEL2 12 30 426 3.598592\n", + "30 60 LEVEL2 11 42 427 3.742389\n", + "31 17 LEVEL3 9 10 374 3.721925\n", + "32 19 LEVEL3 15 39 1342 3.486587\n", + "33 39 LEVEL1 13 15 177 3.627119\n", + "34 5 LEVEL1 11 21 116 4.646552\n", + "35 28 LEVEL1 10 17 95 4.578947\n", + "36 20 LEVEL3 13 22 672 3.684524\n", + "37 30 LEVEL1 13 28 201 3.597015\n", + "38 22 LEVEL4 23 75 2057 3.631988\n", + "39 57 LEVEL2 16 22 133 3.563910\n", + "40 33 LEVEL1 14 13 23 6.695652\n", + "41 8 LEVEL1 11 12 150 3.293333\n", + "42 9 LEVEL1 11 11 107 2.915888\n", + "43 16 LEVEL1 11 13 120 3.641667\n", + "44 41 LEVEL4 10 30 555 3.749550\n", + "45 10 LEVEL1 6 18 101 3.188119\n", + "46 58 LEVEL2 11 16 131 4.175573\n", + "47 49 LEVEL1 9 23 258 3.689922\n", + "48 52 LEVEL2 20 41 559 3.695886\n", + "49 18 LEVEL3 17 38 564 3.751773\n", + "50 40 LEVEL1 4 16 89 3.831461\n", + "51 14 LEVEL2 14 40 488 3.815574\n", + "52 23 LEVEL4 16 55 1507 3.727273\n", + "53 38 LEVEL1 14 20 140 3.864286\n", + "54 54 LEVEL2 11 28 211 3.658768\n", + "55 21 LEVEL3 12 26 965 3.576166\n", + "56 31 LEVEL1 4 4 20 3.850000\n", + "57 48 LEVEL1 8 15 176 3.727273\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping missing values): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 11 20 26 3.500000\n", + "1 1 LEVEL1 7 17 167 3.784431\n", + "2 36 LEVEL1 11 29 138 4.115942\n", + "3 59 LEVEL2 16 29 129 4.100775\n", + "4 25 LEVEL3 19 54 1596 3.704261\n", + "5 29 LEVEL1 11 13 110 3.536364\n", + "6 63 LEVEL1 15 13 101 3.742574\n", + "7 2 LEVEL1 7 11 123 3.829268\n", + "8 15 LEVEL3 23 47 1291 3.571650\n", + "9 6 LEVEL1 7 7 78 3.538462\n", + "10 53 LEVEL2 15 62 486 3.707819\n", + "11 66 LEVEL2 15 44 442 4.009050\n", + "12 56 LEVEL2 11 37 398 3.673367\n", + "13 4 LEVEL1 12 25 117 3.205128\n", + "14 42 LEVEL1 15 37 264 3.700758\n", + "15 61 LEVEL2 17 29 178 3.741573\n", + "16 50 LEVEL2 18 48 811 3.675709\n", + "17 32 LEVEL1 10 25 209 3.741627\n", + "18 11 LEVEL1 12 31 194 3.298969\n", + "19 26 LEVEL2 7 11 393 3.625954\n", + "20 51 LEVEL2 19 48 623 3.874799\n", + "21 7 LEVEL1 11 13 144 3.555556\n", + "22 64 LEVEL2 4 25 85 3.847059\n", + "23 55 LEVEL2 18 52 461 3.659436\n", + "24 34 LEVEL1 11 19 148 3.763514\n", + "25 47 LEVEL1 16 18 117 3.435897\n", + "26 24 LEVEL3 14 20 731 3.753762\n", + "27 27 LEVEL2 11 23 211 3.853081\n", + "28 46 LEVEL1 5 5 81 3.691358\n", + "29 65 LEVEL2 12 30 426 3.598592\n", + "30 60 LEVEL2 11 42 427 3.742389\n", + "31 17 LEVEL3 9 10 374 3.721925\n", + "32 19 LEVEL3 15 39 1342 3.486587\n", + "33 39 LEVEL1 13 15 177 3.627119\n", + "34 5 LEVEL1 11 21 116 4.646552\n", + "35 28 LEVEL1 10 17 95 4.578947\n", + "36 20 LEVEL3 13 22 672 3.684524\n", + "37 30 LEVEL1 13 28 201 3.597015\n", + "38 22 LEVEL4 23 75 2057 3.631988\n", + "39 57 LEVEL2 16 22 133 3.563910\n", + "40 33 LEVEL1 14 13 23 6.695652\n", + "41 8 LEVEL1 11 12 150 3.293333\n", + "42 9 LEVEL1 11 11 107 2.915888\n", + "43 16 LEVEL1 11 13 120 3.641667\n", + "44 41 LEVEL4 10 30 555 3.749550\n", + "45 10 LEVEL1 6 18 101 3.188119\n", + "46 58 LEVEL2 11 16 131 4.175573\n", + "47 49 LEVEL1 9 23 258 3.689922\n", + "48 52 LEVEL2 20 41 559 3.695886\n", + "49 18 LEVEL3 17 38 564 3.751773\n", + "50 40 LEVEL1 4 16 89 3.831461\n", + "51 14 LEVEL2 14 40 488 3.815574\n", + "52 23 LEVEL4 16 55 1507 3.727273\n", + "53 38 LEVEL1 14 20 140 3.864286\n", + "54 54 LEVEL2 11 28 211 3.658768\n", + "55 21 LEVEL3 12 26 965 3.576166\n", + "56 31 LEVEL1 4 4 20 3.850000\n", + "57 48 LEVEL1 8 15 176 3.727273\n", + "step1_2_preprocess_data.py storybooks_dataframe (after converting texts to numbers): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 1 11 20 26 3.500000\n", + "1 1 1 7 17 167 3.784431\n", + "2 36 1 11 29 138 4.115942\n", + "3 59 2 16 29 129 4.100775\n", + "4 25 3 19 54 1596 3.704261\n", + "5 29 1 11 13 110 3.536364\n", + "6 63 1 15 13 101 3.742574\n", + "7 2 1 7 11 123 3.829268\n", + "8 15 3 23 47 1291 3.571650\n", + "9 6 1 7 7 78 3.538462\n", + "10 53 2 15 62 486 3.707819\n", + "11 66 2 15 44 442 4.009050\n", + "12 56 2 11 37 398 3.673367\n", + "13 4 1 12 25 117 3.205128\n", + "14 42 1 15 37 264 3.700758\n", + "15 61 2 17 29 178 3.741573\n", + "16 50 2 18 48 811 3.675709\n", + "17 32 1 10 25 209 3.741627\n", + "18 11 1 12 31 194 3.298969\n", + "19 26 2 7 11 393 3.625954\n", + "20 51 2 19 48 623 3.874799\n", + "21 7 1 11 13 144 3.555556\n", + "22 64 2 4 25 85 3.847059\n", + "23 55 2 18 52 461 3.659436\n", + "24 34 1 11 19 148 3.763514\n", + "25 47 1 16 18 117 3.435897\n", + "26 24 3 14 20 731 3.753762\n", + "27 27 2 11 23 211 3.853081\n", + "28 46 1 5 5 81 3.691358\n", + "29 65 2 12 30 426 3.598592\n", + "30 60 2 11 42 427 3.742389\n", + "31 17 3 9 10 374 3.721925\n", + "32 19 3 15 39 1342 3.486587\n", + "33 39 1 13 15 177 3.627119\n", + "34 5 1 11 21 116 4.646552\n", + "35 28 1 10 17 95 4.578947\n", + "36 20 3 13 22 672 3.684524\n", + "37 30 1 13 28 201 3.597015\n", + "38 22 4 23 75 2057 3.631988\n", + "39 57 2 16 22 133 3.563910\n", + "40 33 1 14 13 23 6.695652\n", + "41 8 1 11 12 150 3.293333\n", + "42 9 1 11 11 107 2.915888\n", + "43 16 1 11 13 120 3.641667\n", + "44 41 4 10 30 555 3.749550\n", + "45 10 1 6 18 101 3.188119\n", + "46 58 2 11 16 131 4.175573\n", + "47 49 1 9 23 258 3.689922\n", + "48 52 2 20 41 559 3.695886\n", + "49 18 3 17 38 564 3.751773\n", + "50 40 1 4 16 89 3.831461\n", + "51 14 2 14 40 488 3.815574\n", + "52 23 4 16 55 1507 3.727273\n", + "53 38 1 14 20 140 3.864286\n", + "54 54 2 11 28 211 3.658768\n", + "55 21 3 12 26 965 3.576166\n", + "56 31 1 4 4 20 3.850000\n", + "57 48 1 8 15 176 3.727273\n", + "step1_3_split_data.py storybooks_csv_path: step1_2_storybooks.csv\n", + "step1_3_split_data.py train_X: \n", + " id chapter_count paragraph_count word_count\n", + "29 65 12 30 426\n", + "40 33 14 13 23\n", + "32 19 15 39 1342\n", + "41 8 11 12 150\n", + "37 30 13 28 201\n", + "7 2 7 11 123\n", + "14 42 15 37 264\n", + "31 17 9 10 374\n", + "28 46 5 5 81\n", + "56 31 4 4 20\n", + "52 23 16 55 1507\n", + "18 11 12 31 194\n", + "54 54 11 28 211\n", + "26 24 14 20 731\n", + "15 61 17 29 178\n", + "5 29 11 13 110\n", + "30 60 11 42 427\n", + "16 50 18 48 811\n", + "49 18 17 38 564\n", + "20 51 19 48 623\n", + "50 40 4 16 89\n", + "8 15 23 47 1291\n", + "13 4 12 25 117\n", + "25 47 16 18 117\n", + "17 32 10 25 209\n", + "43 16 11 13 120\n", + "46 58 11 16 131\n", + "51 14 14 40 488\n", + "38 22 23 75 2057\n", + "1 1 7 17 167\n", + "12 56 11 37 398\n", + "57 48 8 15 176\n", + "24 34 11 19 148\n", + "6 63 15 13 101\n", + "23 55 18 52 461\n", + "36 20 13 22 672\n", + "21 7 11 13 144\n", + "19 26 7 11 393\n", + "9 6 7 7 78\n", + "39 57 16 22 133\n", + "55 21 12 26 965\n", + "3 59 16 29 129\n", + "0 37 11 20 26\n", + "53 38 14 20 140\n", + "47 49 9 23 258\n", + "44 41 10 30 555\n", + "step1_3_split_data.py train_y: \n", + " reading_level\n", + "29 2\n", + "40 1\n", + "32 3\n", + "41 1\n", + "37 1\n", + "7 1\n", + "14 1\n", + "31 3\n", + "28 1\n", + "56 1\n", + "52 4\n", + "18 1\n", + "54 2\n", + "26 3\n", + "15 2\n", + "5 1\n", + "30 2\n", + "16 2\n", + "49 3\n", + "20 2\n", + "50 1\n", + "8 3\n", + "13 1\n", + "25 1\n", + "17 1\n", + "43 1\n", + "46 2\n", + "51 2\n", + "38 4\n", + "1 1\n", + "12 2\n", + "57 1\n", + "24 1\n", + "6 1\n", + "23 2\n", + "36 3\n", + "21 1\n", + "19 2\n", + "9 1\n", + "39 2\n", + "55 3\n", + "3 2\n", + "0 1\n", + "53 1\n", + "47 1\n", + "44 4\n", + "step1_3_split_data.py test_X: \n", + " id chapter_count paragraph_count word_count\n", + "35 28 10 17 95\n", + "34 5 11 21 116\n", + "42 9 11 11 107\n", + "27 27 11 23 211\n", + "11 66 15 44 442\n", + "2 36 11 29 138\n", + "33 39 13 15 177\n", + "45 10 6 18 101\n", + "22 64 4 25 85\n", + "48 52 20 41 559\n", + "4 25 19 54 1596\n", + "10 53 15 62 486\n", + "step1_3_split_data.py test_y: \n", + " reading_level\n", + "35 1\n", + "34 1\n", + "42 1\n", + "27 2\n", + "11 2\n", + "2 1\n", + "33 1\n", + "45 1\n", + "22 2\n", + "48 2\n", + "4 3\n", + "10 2\n", + "step1_4_eda.py storybooks_csv_path: step1_2_storybooks.csv\n", + "label: chapter_count\n", + "label: paragraph_count\n", + "label: word_count\n", + "label: avg_word_length\n", + "\n", + "*** Step 2. Train Model ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step2_train\n", + "step2_1_train_model_pkl.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_1_train_model_pkl.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 12 30 426 2\n", + "1 33 14 13 23 1\n", + "2 19 15 39 1342 3\n", + "3 8 11 12 150 1\n", + "4 30 13 28 201 1\n", + "5 2 7 11 123 1\n", + "6 42 15 37 264 1\n", + "7 17 9 10 374 3\n", + "8 46 5 5 81 1\n", + "9 31 4 4 20 1\n", + "10 23 16 55 1507 4\n", + "11 11 12 31 194 1\n", + "12 54 11 28 211 2\n", + "13 24 14 20 731 3\n", + "14 61 17 29 178 2\n", + "15 29 11 13 110 1\n", + "16 60 11 42 427 2\n", + "17 50 18 48 811 2\n", + "18 18 17 38 564 3\n", + "19 51 19 48 623 2\n", + "20 40 4 16 89 1\n", + "21 15 23 47 1291 3\n", + "22 4 12 25 117 1\n", + "23 47 16 18 117 1\n", + "24 32 10 25 209 1\n", + "25 16 11 13 120 1\n", + "26 58 11 16 131 2\n", + "27 14 14 40 488 2\n", + "28 22 23 75 2057 4\n", + "29 1 7 17 167 1\n", + "30 56 11 37 398 2\n", + "31 48 8 15 176 1\n", + "32 34 11 19 148 1\n", + "33 63 15 13 101 1\n", + "34 55 18 52 461 2\n", + "35 20 13 22 672 3\n", + "36 7 11 13 144 1\n", + "37 26 7 11 393 2\n", + "38 6 7 7 78 1\n", + "39 57 16 22 133 2\n", + "40 21 12 26 965 3\n", + "41 59 16 29 129 2\n", + "42 37 11 20 26 1\n", + "43 38 14 20 140 1\n", + "44 49 9 23 258 1\n", + "45 41 10 30 555 4\n", + "step2_1_train_model_pkl.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_1_train_model_pkl.py type(y): \n", + "step2_1_train_model_pkl.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_1_train_model_pkl.py type(X): \n", + "step2_1_train_model_pkl.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 12 30 426\n", + "1 14 13 23\n", + "2 15 39 1342\n", + "3 11 12 150\n", + "4 13 28 201\n", + "5 7 11 123\n", + "6 15 37 264\n", + "7 9 10 374\n", + "8 5 5 81\n", + "9 4 4 20\n", + "10 16 55 1507\n", + "11 12 31 194\n", + "12 11 28 211\n", + "13 14 20 731\n", + "14 17 29 178\n", + "15 11 13 110\n", + "16 11 42 427\n", + "17 18 48 811\n", + "18 17 38 564\n", + "19 19 48 623\n", + "20 4 16 89\n", + "21 23 47 1291\n", + "22 12 25 117\n", + "23 16 18 117\n", + "24 10 25 209\n", + "25 11 13 120\n", + "26 11 16 131\n", + "27 14 40 488\n", + "28 23 75 2057\n", + "29 7 17 167\n", + "30 11 37 398\n", + "31 8 15 176\n", + "32 11 19 148\n", + "33 15 13 101\n", + "34 18 52 461\n", + "35 13 22 672\n", + "36 11 13 144\n", + "37 7 11 393\n", + "38 7 7 78\n", + "39 16 22 133\n", + "40 12 26 965\n", + "41 16 29 129\n", + "42 11 20 26\n", + "43 14 20 140\n", + "44 9 23 258\n", + "45 10 30 555\n", + "step2_1_train_model_pkl.py Defining model...\n", + "step2_1_train_model_pkl.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step2_1_train_model_pkl.py Fitting model...\n", + "step2_1_train_model_pkl.py Saving model...\n", + "step2_2_train_model_pmml.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_2_train_model_pmml.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 12 30 426 2\n", + "1 33 14 13 23 1\n", + "2 19 15 39 1342 3\n", + "3 8 11 12 150 1\n", + "4 30 13 28 201 1\n", + "5 2 7 11 123 1\n", + "6 42 15 37 264 1\n", + "7 17 9 10 374 3\n", + "8 46 5 5 81 1\n", + "9 31 4 4 20 1\n", + "10 23 16 55 1507 4\n", + "11 11 12 31 194 1\n", + "12 54 11 28 211 2\n", + "13 24 14 20 731 3\n", + "14 61 17 29 178 2\n", + "15 29 11 13 110 1\n", + "16 60 11 42 427 2\n", + "17 50 18 48 811 2\n", + "18 18 17 38 564 3\n", + "19 51 19 48 623 2\n", + "20 40 4 16 89 1\n", + "21 15 23 47 1291 3\n", + "22 4 12 25 117 1\n", + "23 47 16 18 117 1\n", + "24 32 10 25 209 1\n", + "25 16 11 13 120 1\n", + "26 58 11 16 131 2\n", + "27 14 14 40 488 2\n", + "28 22 23 75 2057 4\n", + "29 1 7 17 167 1\n", + "30 56 11 37 398 2\n", + "31 48 8 15 176 1\n", + "32 34 11 19 148 1\n", + "33 63 15 13 101 1\n", + "34 55 18 52 461 2\n", + "35 20 13 22 672 3\n", + "36 7 11 13 144 1\n", + "37 26 7 11 393 2\n", + "38 6 7 7 78 1\n", + "39 57 16 22 133 2\n", + "40 21 12 26 965 3\n", + "41 59 16 29 129 2\n", + "42 37 11 20 26 1\n", + "43 38 14 20 140 1\n", + "44 49 9 23 258 1\n", + "45 41 10 30 555 4\n", + "step2_2_train_model_pmml.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_2_train_model_pmml.py type(y): \n", + "step2_2_train_model_pmml.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_2_train_model_pmml.py type(X): \n", + "step2_2_train_model_pmml.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 12 30 426\n", + "1 14 13 23\n", + "2 15 39 1342\n", + "3 11 12 150\n", + "4 13 28 201\n", + "5 7 11 123\n", + "6 15 37 264\n", + "7 9 10 374\n", + "8 5 5 81\n", + "9 4 4 20\n", + "10 16 55 1507\n", + "11 12 31 194\n", + "12 11 28 211\n", + "13 14 20 731\n", + "14 17 29 178\n", + "15 11 13 110\n", + "16 11 42 427\n", + "17 18 48 811\n", + "18 17 38 564\n", + "19 19 48 623\n", + "20 4 16 89\n", + "21 23 47 1291\n", + "22 12 25 117\n", + "23 16 18 117\n", + "24 10 25 209\n", + "25 11 13 120\n", + "26 11 16 131\n", + "27 14 40 488\n", + "28 23 75 2057\n", + "29 7 17 167\n", + "30 11 37 398\n", + "31 8 15 176\n", + "32 11 19 148\n", + "33 15 13 101\n", + "34 18 52 461\n", + "35 13 22 672\n", + "36 11 13 144\n", + "37 7 11 393\n", + "38 7 7 78\n", + "39 16 22 133\n", + "40 12 26 965\n", + "41 16 29 129\n", + "42 11 20 26\n", + "43 14 20 140\n", + "44 9 23 258\n", + "45 10 30 555\n", + "step2_2_train_model_pmml.py Defining model...\n", + "step2_2_train_model_pmml.py reading_level_model: PMMLPipeline(steps=[('regressor', DecisionTreeRegressor(random_state=1))])\n", + "step2_2_train_model_pmml.py Fitting model...\n", + "step2_2_train_model_pmml.py Saving model...\n", + "\n", + "*** Step 3. Make Prediction ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step3_predict\n", + "step3_1_predict.py model_pkl_path: ../step2_train/step2_1_model.pkl\n", + "step3_1_predict.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step3_1_predict.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_test.csv\n", + "step3_1_predict.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 10 17 95 1\n", + "1 5 11 21 116 1\n", + "2 9 11 11 107 1\n", + "3 27 11 23 211 2\n", + "4 66 15 44 442 2\n", + "5 36 11 29 138 1\n", + "6 39 13 15 177 1\n", + "7 10 6 18 101 1\n", + "8 64 4 25 85 2\n", + "9 52 20 41 559 2\n", + "10 25 19 54 1596 3\n", + "11 53 15 62 486 2\n", + "step3_1_predict.py predictions_array:\n", + "[1. 1. 1. 2. 2. 1. 1. 1. 1. 4. 4. 2.]\n", + "step3_1_predict.py type(predictions_array):\n", + "\n", + "step3_1_predict.py predictions_dataframe:\n", + " reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_1_predict.py type(predictions_dataframe):\n", + "\n", + "step3_2_validate.py model_pmml_path: ../step2_train/step2_2_model.pmml\n", + "step3_2_validate.py reading_level_model: org.pmml4s.model.TreeModel@6b58152f\n", + "step3_2_validate.py storybooks_dataframe: \n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 10 17 95 1\n", + "1 5 11 21 116 1\n", + "2 9 11 11 107 1\n", + "3 27 11 23 211 2\n", + "4 66 15 44 442 2\n", + "5 36 11 29 138 1\n", + "6 39 13 15 177 1\n", + "7 10 6 18 101 1\n", + "8 64 4 25 85 2\n", + "9 52 20 41 559 2\n", + "10 25 19 54 1596 3\n", + "11 53 15 62 486 2\n", + "step3_2_validate.py predictions: \n", + " predicted_reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_2_validate.py type(predictions): \n", + "\n", + "step3_2_validate.py mean_absolute_error: 0.3333333333333333\n", + "step3_2_validate.py accuracy_score: 0.75\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!cat step3_predict/step3_2_accuracy_score.txt\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3-gq6h_aPi7a", + "outputId": "b55b0532-eaab-4a61-d3f1-4044b0299fad" + }, + "execution_count": 8, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "0.75" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!cat step3_predict/step3_2_mean_absolute_error.txt\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "W7y57ax-PtbG", + "outputId": "e3471a2a-2f9c-4529-a4af-fb08c224b377" + }, + "execution_count": 9, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "0.3333333333333333" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "%cd step1_prepare" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "vFfaw8BgQNgd", + "outputId": "324a1ab1-5a95-4c45-b9c2-1bd5875c1222" + }, + "execution_count": 38, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml/step1_prepare\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "## MIN MAX SCALER\n", + "\n", + "with open(\"step1_2_preprocess_data.py\", \"r\") as file:\n", + " data = file.readlines()\n", + "\n", + "# insert min-max Scaler after unnecessary columns are dropped\n", + "for i, line in enumerate(data):\n", + " if \"storybooks_dataframe = storybooks_dataframe[['id', 'reading_level',\" in line:\n", + " data.insert(i + 1, \"\"\"\n", + "from sklearn.preprocessing import MinMaxScaler\n", + "scaler = MinMaxScaler()\n", + "storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']] = scaler.fit_transform(\n", + " storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']])\n", + "print(storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']].head())\n", + "\n", + "\"\"\")\n", + "\n", + "# write to file\n", + "with open(\"step1_2_preprocess_data.py\", \"w\") as file:\n", + " file.writelines(data)\n" + ], + "metadata": { + "id": "wnqmawHJQoGq" + }, + "execution_count": 26, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "%cd ..\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3cYofUE4RkGZ", + "outputId": "3ddffd33-2c99-40cd-a93a-0ec779f8969a" + }, + "execution_count": 27, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!python run_all_steps.py\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "GjXpP_0YRhFw", + "outputId": "d6492f2d-4221-4908-aad3-c24e54b6bf48" + }, + "execution_count": 28, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: सोचकर\n", + "chapters_utils.py word_cleaned: सोचकर\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बोले,\n", + "chapters_utils.py word_cleaned: बोले\n", + "chapters_utils.py word: ”मगर\n", + "chapters_utils.py word_cleaned: ”मगर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: जाओगे\n", + "chapters_utils.py word_cleaned: जाओगे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: देखेगा?\n", + "chapters_utils.py word_cleaned: देखेगा\n", + "chapters_utils.py word: इतना\n", + "chapters_utils.py word_cleaned: इतना\n", + "chapters_utils.py word: चलने\n", + "chapters_utils.py word_cleaned: चलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद,\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: कमज़ोर\n", + "chapters_utils.py word_cleaned: कमज़ोर\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाऊँगा।\n", + "chapters_utils.py word_cleaned: जाऊँगा।\n", + "chapters_utils.py word: इसलिये,\n", + "chapters_utils.py word_cleaned: इसलिये\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: वापस\n", + "chapters_utils.py word_cleaned: वापस\n", + "chapters_utils.py word: आऊँगा\n", + "chapters_utils.py word_cleaned: आऊँगा\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: खूब\n", + "chapters_utils.py word_cleaned: खूब\n", + "chapters_utils.py word: सारा\n", + "chapters_utils.py word_cleaned: सारा\n", + "chapters_utils.py word: दूध\n", + "chapters_utils.py word_cleaned: दूध\n", + "chapters_utils.py word: पीना\n", + "chapters_utils.py word_cleaned: पीना\n", + "chapters_utils.py word: पड़ेगा,\n", + "chapters_utils.py word_cleaned: पड़ेगा\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेरी\n", + "chapters_utils.py word_cleaned: मेरी\n", + "chapters_utils.py word: ताकत\n", + "chapters_utils.py word_cleaned: ताकत\n", + "chapters_utils.py word: लौट\n", + "chapters_utils.py word_cleaned: लौट\n", + "chapters_utils.py word: आये।“\n", + "chapters_utils.py word_cleaned: आये।“\n", + "chapters_utils.py paragraph: {'originalText': '”हूँ... यह बात तो ठीक है, गाँधी जी! बिन्नी तभी खाती है, जब मैं उसे खिलाता हूँ,“ धनी ने प्यार से बिन्नी का सर सहलाया, ”और स़िर्फ मैं जानता हूँ कि इसे क्या पसन्द है।“', 'sortOrder': 4, 'id': 1415}\n", + "chapters_utils.py words: ['”हूँ...', 'यह', 'बात', 'तो', 'ठीक', 'है,', 'गाँधी', 'जी!', 'बिन्नी', 'तभी', 'खाती', 'है,', 'जब', 'मैं', 'उसे', 'खिलाता', 'हूँ,“', 'धनी', 'ने', 'प्यार', 'से', 'बिन्नी', 'का', 'सर', 'सहलाया,', '”और', 'स़िर्फ', 'मैं', 'जानता', 'हूँ', 'कि', 'इसे', 'क्या', 'पसन्द', 'है।“']\n", + "chapters_utils.py word: ”हूँ...\n", + "chapters_utils.py word_cleaned: ”हूँ\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी!\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: खाती\n", + "chapters_utils.py word_cleaned: खाती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: खिलाता\n", + "chapters_utils.py word_cleaned: खिलाता\n", + "chapters_utils.py word: हूँ,“\n", + "chapters_utils.py word_cleaned: हूँ“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सर\n", + "chapters_utils.py word_cleaned: सर\n", + "chapters_utils.py word: सहलाया,\n", + "chapters_utils.py word_cleaned: सहलाया\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: स़िर्फ\n", + "chapters_utils.py word_cleaned: स़िर्फ\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: जानता\n", + "chapters_utils.py word_cleaned: जानता\n", + "chapters_utils.py word: हूँ\n", + "chapters_utils.py word_cleaned: हूँ\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: पसन्द\n", + "chapters_utils.py word_cleaned: पसन्द\n", + "chapters_utils.py word: है।“\n", + "chapters_utils.py word_cleaned: है।“\n", + "chapters_utils.py paragraph: {'originalText': '”बिल्कुल सही। तो क्या तुम आश्रम में रह कर मेरे लिये बिन्नी की देखभाल करोगे?“ गाँधी जी प्यार से बोले।', 'sortOrder': 5, 'id': 1416}\n", + "chapters_utils.py words: ['”बिल्कुल', 'सही।', 'तो', 'क्या', 'तुम', 'आश्रम', 'में', 'रह', 'कर', 'मेरे', 'लिये', 'बिन्नी', 'की', 'देखभाल', 'करोगे?“', 'गाँधी', 'जी', 'प्यार', 'से', 'बोले।']\n", + "chapters_utils.py word: ”बिल्कुल\n", + "chapters_utils.py word_cleaned: ”बिल्कुल\n", + "chapters_utils.py word: सही।\n", + "chapters_utils.py word_cleaned: सही।\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: आश्रम\n", + "chapters_utils.py word_cleaned: आश्रम\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रह\n", + "chapters_utils.py word_cleaned: रह\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: लिये\n", + "chapters_utils.py word_cleaned: लिये\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: देखभाल\n", + "chapters_utils.py word_cleaned: देखभाल\n", + "chapters_utils.py word: करोगे?“\n", + "chapters_utils.py word_cleaned: करोगे“\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बोले।\n", + "chapters_utils.py word_cleaned: बोले।\n", + "chapters_utils.py paragraph: {'originalText': '”जी, गाँधी जी, करूँगा,“ धनी बोला, ”और बिन्नी और मैं, आपका इन्तज़ार करेंगे।“', 'sortOrder': 6, 'id': 1417}\n", + "chapters_utils.py words: ['”जी,', 'गाँधी', 'जी,', 'करूँगा,“', 'धनी', 'बोला,', '”और', 'बिन्नी', 'और', 'मैं,', 'आपका', 'इन्तज़ार', 'करेंगे।“']\n", + "chapters_utils.py word: ”जी,\n", + "chapters_utils.py word_cleaned: ”जी\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी,\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: करूँगा,“\n", + "chapters_utils.py word_cleaned: करूँगा“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: बोला,\n", + "chapters_utils.py word_cleaned: बोला\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं,\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: आपका\n", + "chapters_utils.py word_cleaned: आपका\n", + "chapters_utils.py word: इन्तज़ार\n", + "chapters_utils.py word_cleaned: इन्तज़ार\n", + "chapters_utils.py word: करेंगे।“\n", + "chapters_utils.py word_cleaned: करेंगे।“\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py chapter[\"sortOrder\"]: 14\n", + "chapters_utils.py paragraph: {'originalText': 'इतिहास के कुछ रोचक तथ्य:', 'sortOrder': 0, 'id': 1419}\n", + "chapters_utils.py words: ['इतिहास', 'के', 'कुछ', 'रोचक', 'तथ्य:']\n", + "chapters_utils.py word: इतिहास\n", + "chapters_utils.py word_cleaned: इतिहास\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: रोचक\n", + "chapters_utils.py word_cleaned: रोचक\n", + "chapters_utils.py word: तथ्य:\n", + "chapters_utils.py word_cleaned: तथ्य\n", + "chapters_utils.py paragraph: {'originalText': '1. मार्च 1930 में महात्मा गाँधी ने ब्रिटिश सरकार द्वारा लगाये नमक कर के विरोध में दाँडी तक की यात्रा का नेतृत्व किया। गाँधी जी और उनके अनुयायी, गुजरात में 24 दिन तक पैदल चले। पूरे रास्ते उनका स्वागत फूलों और गीतों से हुआ। विश्\\u200dव भर के अखबारों ने यात्रा पर खबरें छापीं।', 'sortOrder': 1, 'id': 1420}\n", + "chapters_utils.py words: ['1.', 'मार्च', '1930', 'में', 'महात्मा', 'गाँधी', 'ने', 'ब्रिटिश', 'सरकार', 'द्वारा', 'लगाये', 'नमक', 'कर', 'के', 'विरोध', 'में', 'दाँडी', 'तक', 'की', 'यात्रा', 'का', 'नेतृत्व', 'किया।', 'गाँधी', 'जी', 'और', 'उनके', 'अनुयायी,', 'गुजरात', 'में', '24', 'दिन', 'तक', 'पैदल', 'चले।', 'पूरे', 'रास्ते', 'उनका', 'स्वागत', 'फूलों', 'और', 'गीतों', 'से', 'हुआ।', 'विश्\\u200dव', 'भर', 'के', 'अखबारों', 'ने', 'यात्रा', 'पर', 'खबरें', 'छापीं।']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: महात्मा\n", + "chapters_utils.py word_cleaned: महात्मा\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: ब्रिटिश\n", + "chapters_utils.py word_cleaned: ब्रिटिश\n", + "chapters_utils.py word: सरकार\n", + "chapters_utils.py word_cleaned: सरकार\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: लगाये\n", + "chapters_utils.py word_cleaned: लगाये\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: विरोध\n", + "chapters_utils.py word_cleaned: विरोध\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नेतृत्व\n", + "chapters_utils.py word_cleaned: नेतृत्व\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: अनुयायी,\n", + "chapters_utils.py word_cleaned: अनुयायी\n", + "chapters_utils.py word: गुजरात\n", + "chapters_utils.py word_cleaned: गुजरात\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: 24\n", + "chapters_utils.py word_cleaned: 24\n", + "chapters_utils.py word: दिन\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: पैदल\n", + "chapters_utils.py word_cleaned: पैदल\n", + "chapters_utils.py word: चले।\n", + "chapters_utils.py word_cleaned: चले।\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: रास्ते\n", + "chapters_utils.py word_cleaned: रास्ते\n", + "chapters_utils.py word: उनका\n", + "chapters_utils.py word_cleaned: उनका\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: गीतों\n", + "chapters_utils.py word_cleaned: गीतों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हुआ।\n", + "chapters_utils.py word_cleaned: हुआ।\n", + "chapters_utils.py word: विश्‍व\n", + "chapters_utils.py word_cleaned: विश्‍व\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अखबारों\n", + "chapters_utils.py word_cleaned: अखबारों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खबरें\n", + "chapters_utils.py word_cleaned: खबरें\n", + "chapters_utils.py word: छापीं।\n", + "chapters_utils.py word_cleaned: छापीं।\n", + "chapters_utils.py paragraph: {'originalText': '2. दाँडी में गाँधी जी और उनके साथियों ने समुद्र तट से नमक उठाया और उन्हें गिरफ़्तार कर लिया गया। उनकी गिरफ़्तारी के बाद असहयोग आन्दोलन शुरू हुआ और पूरे भारत में लोगों ने स्कूल, कॉलेज व दफ़्तरों का बायकॉट किया।', 'sortOrder': 2, 'id': 1421}\n", + "chapters_utils.py words: ['2.', 'दाँडी', 'में', 'गाँधी', 'जी', 'और', 'उनके', 'साथियों', 'ने', 'समुद्र', 'तट', 'से', 'नमक', 'उठाया', 'और', 'उन्हें', 'गिरफ़्तार', 'कर', 'लिया', 'गया।', 'उनकी', 'गिरफ़्तारी', 'के', 'बाद', 'असहयोग', 'आन्दोलन', 'शुरू', 'हुआ', 'और', 'पूरे', 'भारत', 'में', 'लोगों', 'ने', 'स्कूल,', 'कॉलेज', 'व', 'दफ़्तरों', 'का', 'बायकॉट', 'किया।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: साथियों\n", + "chapters_utils.py word_cleaned: साथियों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: समुद्र\n", + "chapters_utils.py word_cleaned: समुद्र\n", + "chapters_utils.py word: तट\n", + "chapters_utils.py word_cleaned: तट\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: उठाया\n", + "chapters_utils.py word_cleaned: उठाया\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: गिरफ़्तार\n", + "chapters_utils.py word_cleaned: गिरफ़्तार\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: लिया\n", + "chapters_utils.py word_cleaned: लिया\n", + "chapters_utils.py word: गया।\n", + "chapters_utils.py word_cleaned: गया।\n", + "chapters_utils.py word: उनकी\n", + "chapters_utils.py word_cleaned: उनकी\n", + "chapters_utils.py word: गिरफ़्तारी\n", + "chapters_utils.py word_cleaned: गिरफ़्तारी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: असहयोग\n", + "chapters_utils.py word_cleaned: असहयोग\n", + "chapters_utils.py word: आन्दोलन\n", + "chapters_utils.py word_cleaned: आन्दोलन\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: हुआ\n", + "chapters_utils.py word_cleaned: हुआ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लोगों\n", + "chapters_utils.py word_cleaned: लोगों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: स्कूल,\n", + "chapters_utils.py word_cleaned: स्कूल\n", + "chapters_utils.py word: कॉलेज\n", + "chapters_utils.py word_cleaned: कॉलेज\n", + "chapters_utils.py word: व\n", + "chapters_utils.py word_cleaned: व\n", + "chapters_utils.py word: दफ़्तरों\n", + "chapters_utils.py word_cleaned: दफ़्तरों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: बायकॉट\n", + "chapters_utils.py word_cleaned: बायकॉट\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py paragraph: {'originalText': '3. इस यात्रा में गाँधी जी के साथ 78 स्वेच्छा कर्मियों (वालंटियरों) ने भाग लिया। उन्होंने 385 किलोमीटर की दूरी तय की।', 'sortOrder': 3, 'id': 1422}\n", + "chapters_utils.py words: ['3.', 'इस', 'यात्रा', 'में', 'गाँधी', 'जी', 'के', 'साथ', '78', 'स्वेच्छा', 'कर्मियों', '(वालंटियरों)', 'ने', 'भाग', 'लिया।', 'उन्होंने', '385', 'किलोमीटर', 'की', 'दूरी', 'तय', 'की।']\n", + "chapters_utils.py word: 3.\n", + "chapters_utils.py word_cleaned: 3\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: 78\n", + "chapters_utils.py word_cleaned: 78\n", + "chapters_utils.py word: स्वेच्छा\n", + "chapters_utils.py word_cleaned: स्वेच्छा\n", + "chapters_utils.py word: कर्मियों\n", + "chapters_utils.py word_cleaned: कर्मियों\n", + "chapters_utils.py word: (वालंटियरों)\n", + "chapters_utils.py word_cleaned: वालंटियरों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: भाग\n", + "chapters_utils.py word_cleaned: भाग\n", + "chapters_utils.py word: लिया।\n", + "chapters_utils.py word_cleaned: लिया।\n", + "chapters_utils.py word: उन्होंने\n", + "chapters_utils.py word_cleaned: उन्होंने\n", + "chapters_utils.py word: 385\n", + "chapters_utils.py word_cleaned: 385\n", + "chapters_utils.py word: किलोमीटर\n", + "chapters_utils.py word_cleaned: किलोमीटर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: दूरी\n", + "chapters_utils.py word_cleaned: दूरी\n", + "chapters_utils.py word: तय\n", + "chapters_utils.py word_cleaned: तय\n", + "chapters_utils.py word: की।\n", + "chapters_utils.py word_cleaned: की।\n", + "chapters_utils.py paragraph: {'originalText': '4. यात्रा 12 मार्च को शुरू होकर 5 अप्रैल, 1930 को समाप्त हुई। सबसे कम उम्र का यात्री 16 वर्ष का था।', 'sortOrder': 4, 'id': 1423}\n", + "chapters_utils.py words: ['4.', 'यात्रा', '12', 'मार्च', 'को', 'शुरू', 'होकर', '5', 'अप्रैल,', '1930', 'को', 'समाप्त', 'हुई।', 'सबसे', 'कम', 'उम्र', 'का', 'यात्री', '16', 'वर्ष', 'का', 'था।']\n", + "chapters_utils.py word: 4.\n", + "chapters_utils.py word_cleaned: 4\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: 12\n", + "chapters_utils.py word_cleaned: 12\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: 5\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: अप्रैल,\n", + "chapters_utils.py word_cleaned: अप्रैल\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: समाप्त\n", + "chapters_utils.py word_cleaned: समाप्त\n", + "chapters_utils.py word: हुई।\n", + "chapters_utils.py word_cleaned: हुई।\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: कम\n", + "chapters_utils.py word_cleaned: कम\n", + "chapters_utils.py word: उम्र\n", + "chapters_utils.py word_cleaned: उम्र\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: यात्री\n", + "chapters_utils.py word_cleaned: यात्री\n", + "chapters_utils.py word: 16\n", + "chapters_utils.py word_cleaned: 16\n", + "chapters_utils.py word: वर्ष\n", + "chapters_utils.py word_cleaned: वर्ष\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '5. सन 2005 में दाँडी यात्रा की 75 वीं जयंती थी।', 'sortOrder': 5, 'id': 1424}\n", + "chapters_utils.py words: ['5.', 'सन', '2005', 'में', 'दाँडी', 'यात्रा', 'की', '75', 'वीं', 'जयंती', 'थी।']\n", + "chapters_utils.py word: 5.\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: सन\n", + "chapters_utils.py word_cleaned: सन\n", + "chapters_utils.py word: 2005\n", + "chapters_utils.py word_cleaned: 2005\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: 75\n", + "chapters_utils.py word_cleaned: 75\n", + "chapters_utils.py word: वीं\n", + "chapters_utils.py word_cleaned: वीं\n", + "chapters_utils.py word: जयंती\n", + "chapters_utils.py word_cleaned: जयंती\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 15\n", + "chapters_utils.py word_count: 1507\n", + "chapters_utils.py total_word_length: 5617\n", + "step1_2_preprocess_data.py index: 53\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 14\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: अनुमान\n", + "chapters_utils.py word_cleaned: अनुमान\n", + "chapters_utils.py word: लगा\n", + "chapters_utils.py word_cleaned: लगा\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: हमारे\n", + "chapters_utils.py word_cleaned: हमारे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: पक्षी!\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गैंडा\n", + "chapters_utils.py word_cleaned: गैंडा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: पिस्सू\n", + "chapters_utils.py word_cleaned: पिस्सू\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: घिरा\n", + "chapters_utils.py word_cleaned: घिरा\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: पिस्सूओं\n", + "chapters_utils.py word_cleaned: पिस्सूओं\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: खा\n", + "chapters_utils.py word_cleaned: खा\n", + "chapters_utils.py word: जाती\n", + "chapters_utils.py word_cleaned: जाती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: मगरमच्छ\n", + "chapters_utils.py word_cleaned: मगरमच्छ\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ब्रश\n", + "chapters_utils.py word_cleaned: ब्रश\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: चोंच\n", + "chapters_utils.py word_cleaned: चोंच\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: साफ\n", + "chapters_utils.py word_cleaned: साफ\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: देती\n", + "chapters_utils.py word_cleaned: देती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जिराफ़\n", + "chapters_utils.py word_cleaned: जिराफ़\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पहुंच\n", + "chapters_utils.py word_cleaned: पहुंच\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: सकती\n", + "chapters_utils.py word_cleaned: सकती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: ज़ेब्रा\n", + "chapters_utils.py word_cleaned: ज़ेब्रा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: वस्तुएं\n", + "chapters_utils.py word_cleaned: वस्तुएं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बड़ी-बड़ी\n", + "chapters_utils.py word_cleaned: बड़ीबड़ी\n", + "chapters_utils.py word: आँखें\n", + "chapters_utils.py word_cleaned: आँखें\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रहा\n", + "chapters_utils.py word_cleaned: रहा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अलग-अलग\n", + "chapters_utils.py word_cleaned: अलगअलग\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है...\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: गाते\n", + "chapters_utils.py word_cleaned: गाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: बनोगे?\n", + "chapters_utils.py word_cleaned: बनोगे\n", + "chapters_utils.py word_count: 140\n", + "chapters_utils.py total_word_length: 541\n", + "step1_2_preprocess_data.py index: 54\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 11\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py word: लटकती\n", + "chapters_utils.py word_cleaned: लटकती\n", + "chapters_utils.py word: जड़ों\n", + "chapters_utils.py word_cleaned: जड़ों\n", + "chapters_utils.py word: वाला\n", + "chapters_utils.py word_cleaned: वाला\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: बरगद\n", + "chapters_utils.py word_cleaned: बरगद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बड़ा\n", + "chapters_utils.py word_cleaned: बड़ा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: घेरे\n", + "chapters_utils.py word_cleaned: घेरे\n", + "chapters_utils.py word: शान\n", + "chapters_utils.py word_cleaned: शान\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py word: दो\n", + "chapters_utils.py word_cleaned: दो\n", + "chapters_utils.py word: पलाश\n", + "chapters_utils.py word_cleaned: पलाश\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बगिया\n", + "chapters_utils.py word_cleaned: बगिया\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लाये\n", + "chapters_utils.py word_cleaned: लाये\n", + "chapters_utils.py word: बहार,\n", + "chapters_utils.py word_cleaned: बहार\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py word: मधुमक्खियों\n", + "chapters_utils.py word_cleaned: मधुमक्खियों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बाँटें\n", + "chapters_utils.py word_cleaned: बाँटें\n", + "chapters_utils.py word: मकरंद\n", + "chapters_utils.py word_cleaned: मकरंद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपहार।\n", + "chapters_utils.py word_cleaned: उपहार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तीन\n", + "chapters_utils.py word_cleaned: तीन\n", + "chapters_utils.py word: पीपल\n", + "chapters_utils.py word_cleaned: पीपल\n", + "chapters_utils.py word: गाँव\n", + "chapters_utils.py word_cleaned: गाँव\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: डगर\n", + "chapters_utils.py word_cleaned: डगर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py word: तोते\n", + "chapters_utils.py word_cleaned: तोते\n", + "chapters_utils.py word: खाएँ\n", + "chapters_utils.py word_cleaned: खाएँ\n", + "chapters_utils.py word: कुतर\n", + "chapters_utils.py word_cleaned: कुतर\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नर्म\n", + "chapters_utils.py word_cleaned: नर्म\n", + "chapters_utils.py word: गूलर।\n", + "chapters_utils.py word_cleaned: गूलर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: खेतों\n", + "chapters_utils.py word_cleaned: खेतों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उस\n", + "chapters_utils.py word_cleaned: उस\n", + "chapters_utils.py word: पार\n", + "chapters_utils.py word_cleaned: पार\n", + "chapters_utils.py word: लहराते\n", + "chapters_utils.py word_cleaned: लहराते\n", + "chapters_utils.py word: नीम\n", + "chapters_utils.py word_cleaned: नीम\n", + "chapters_utils.py word: चार,\n", + "chapters_utils.py word_cleaned: चार\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py word: निबौरी\n", + "chapters_utils.py word_cleaned: निबौरी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कीड़ों\n", + "chapters_utils.py word_cleaned: कीड़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: भगाने\n", + "chapters_utils.py word_cleaned: भगाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपचार।\n", + "chapters_utils.py word_cleaned: उपचार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py word: बलखाती\n", + "chapters_utils.py word_cleaned: बलखाती\n", + "chapters_utils.py word: धारा\n", + "chapters_utils.py word_cleaned: धारा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पास\n", + "chapters_utils.py word_cleaned: पास\n", + "chapters_utils.py word: जमे\n", + "chapters_utils.py word_cleaned: जमे\n", + "chapters_utils.py word: जामुन\n", + "chapters_utils.py word_cleaned: जामुन\n", + "chapters_utils.py word: पाँच,\n", + "chapters_utils.py word_cleaned: पाँच\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py word: गिरे-कुचले\n", + "chapters_utils.py word_cleaned: गिरेकुचले\n", + "chapters_utils.py word: फलों\n", + "chapters_utils.py word_cleaned: फलों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: दिया\n", + "chapters_utils.py word_cleaned: दिया\n", + "chapters_utils.py word: बैंगनी\n", + "chapters_utils.py word_cleaned: बैंगनी\n", + "chapters_utils.py word: रंग\n", + "chapters_utils.py word_cleaned: रंग\n", + "chapters_utils.py word: पसार।\n", + "chapters_utils.py word_cleaned: पसार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py word: पारिजात\n", + "chapters_utils.py word_cleaned: पारिजात\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: छ:\n", + "chapters_utils.py word_cleaned: छ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: मेंड़\n", + "chapters_utils.py word_cleaned: मेंड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खड़े,\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py word: गुलाबी\n", + "chapters_utils.py word_cleaned: गुलाबी\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उमड़े\n", + "chapters_utils.py word_cleaned: उमड़े\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: छोटे-बड़े।\n", + "chapters_utils.py word_cleaned: छोटेबड़े।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: सात\n", + "chapters_utils.py word_cleaned: सात\n", + "chapters_utils.py word: लंबे\n", + "chapters_utils.py word_cleaned: लंबे\n", + "chapters_utils.py word: देवदार,\n", + "chapters_utils.py word_cleaned: देवदार\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py word: तारपीन\n", + "chapters_utils.py word_cleaned: तारपीन\n", + "chapters_utils.py word: निकले,\n", + "chapters_utils.py word_cleaned: निकले\n", + "chapters_utils.py word: इसकी\n", + "chapters_utils.py word_cleaned: इसकी\n", + "chapters_utils.py word: काठ\n", + "chapters_utils.py word_cleaned: काठ\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: काठी\n", + "chapters_utils.py word_cleaned: काठी\n", + "chapters_utils.py word: बने।\n", + "chapters_utils.py word_cleaned: बने।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py word: इमली\n", + "chapters_utils.py word_cleaned: इमली\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: आठ\n", + "chapters_utils.py word_cleaned: आठ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: कस्बे\n", + "chapters_utils.py word_cleaned: कस्बे\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किनारे,\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py word: पक\n", + "chapters_utils.py word_cleaned: पक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: गिरी\n", + "chapters_utils.py word_cleaned: गिरी\n", + "chapters_utils.py word: फलियाँ\n", + "chapters_utils.py word_cleaned: फलियाँ\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: खाये,\n", + "chapters_utils.py word_cleaned: खाये\n", + "chapters_utils.py word: मारे\n", + "chapters_utils.py word_cleaned: मारे\n", + "chapters_utils.py word: चटखारे।\n", + "chapters_utils.py word_cleaned: चटखारे।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: जंगल\n", + "chapters_utils.py word_cleaned: जंगल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बीच\n", + "chapters_utils.py word_cleaned: बीच\n", + "chapters_utils.py word: नौ\n", + "chapters_utils.py word_cleaned: नौ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: साल\n", + "chapters_utils.py word_cleaned: साल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तने,\n", + "chapters_utils.py word_cleaned: तने\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py word: दोने-पत्तल\n", + "chapters_utils.py word_cleaned: दोनेपत्तल\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: चमड़े\n", + "chapters_utils.py word_cleaned: चमड़े\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मोटे\n", + "chapters_utils.py word_cleaned: मोटे\n", + "chapters_utils.py word: पत्तों\n", + "chapters_utils.py word_cleaned: पत्तों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बनें।\n", + "chapters_utils.py word_cleaned: बनें।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py word: तपती\n", + "chapters_utils.py word_cleaned: तपती\n", + "chapters_utils.py word: मरुभूमि\n", + "chapters_utils.py word_cleaned: मरुभूमि\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खेजड़ी\n", + "chapters_utils.py word_cleaned: खेजड़ी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दस\n", + "chapters_utils.py word_cleaned: दस\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: पाकर,\n", + "chapters_utils.py word_cleaned: पाकर\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py word: ऊँट\n", + "chapters_utils.py word_cleaned: ऊँट\n", + "chapters_utils.py word: धन्य\n", + "chapters_utils.py word_cleaned: धन्य\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाएँ\n", + "chapters_utils.py word_cleaned: जाएँ\n", + "chapters_utils.py word: इनकी\n", + "chapters_utils.py word_cleaned: इनकी\n", + "chapters_utils.py word: कोंपल\n", + "chapters_utils.py word_cleaned: कोंपल\n", + "chapters_utils.py word: खाकर।\n", + "chapters_utils.py word_cleaned: खाकर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: प्राणवायु\n", + "chapters_utils.py word_cleaned: प्राणवायु\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: आये\n", + "chapters_utils.py word_cleaned: आये\n", + "chapters_utils.py word: साँसों\n", + "chapters_utils.py word_cleaned: साँसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: काम,\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py word: मिट्टी\n", + "chapters_utils.py word_cleaned: मिट्टी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: उपजाऊ\n", + "chapters_utils.py word_cleaned: उपजाऊ\n", + "chapters_utils.py word: पर्त\n", + "chapters_utils.py word_cleaned: पर्त\n", + "chapters_utils.py word: बचाते,\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: पत्ते\n", + "chapters_utils.py word_cleaned: पत्ते\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: भोजन\n", + "chapters_utils.py word_cleaned: भोजन\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: काम।\n", + "chapters_utils.py word_cleaned: काम।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पेड़,\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py word: बचाते\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कुदरत\n", + "chapters_utils.py word_cleaned: कुदरत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मार\n", + "chapters_utils.py word_cleaned: मार\n", + "chapters_utils.py word: से,\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: इनका\n", + "chapters_utils.py word_cleaned: इनका\n", + "chapters_utils.py word: योगदान।\n", + "chapters_utils.py word_cleaned: योगदान।\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं,\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: अहमियत\n", + "chapters_utils.py word_cleaned: अहमियत\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: निराली\n", + "chapters_utils.py word_cleaned: निराली\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word_count: 211\n", + "chapters_utils.py total_word_length: 772\n", + "step1_2_preprocess_data.py index: 55\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 12\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: दिन,\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: विज्ञान\n", + "chapters_utils.py word_cleaned: विज्ञान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खिड़की\n", + "chapters_utils.py word_cleaned: खिड़की\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाहर\n", + "chapters_utils.py word_cleaned: बाहर\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: आकाश\n", + "chapters_utils.py word_cleaned: आकाश\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फैलाए\n", + "chapters_utils.py word_cleaned: फैलाए\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: कितनी\n", + "chapters_utils.py word_cleaned: कितनी\n", + "chapters_utils.py word: खुश\n", + "chapters_utils.py word_cleaned: खुश\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"सुनो!\n", + "chapters_utils.py word_cleaned: सुनो\n", + "chapters_utils.py word: तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: बोर्ड\n", + "chapters_utils.py word_cleaned: बोर्ड\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: ध्यान\n", + "chapters_utils.py word_cleaned: ध्यान\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देना\n", + "chapters_utils.py word_cleaned: देना\n", + "chapters_utils.py word: चाहिए?\"\n", + "chapters_utils.py word_cleaned: चाहिए\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पढ़ा\n", + "chapters_utils.py word_cleaned: पढ़ा\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: नई\n", + "chapters_utils.py word_cleaned: नई\n", + "chapters_utils.py word: अध्य्यापिका\n", + "chapters_utils.py word_cleaned: अध्य्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: हड़बड़ा\n", + "chapters_utils.py word_cleaned: हड़बड़ा\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खड़ी\n", + "chapters_utils.py word_cleaned: खड़ी\n", + "chapters_utils.py word: हुई\n", + "chapters_utils.py word_cleaned: हुई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बोली,\n", + "chapters_utils.py word_cleaned: बोली\n", + "chapters_utils.py word: \"सॉरी\n", + "chapters_utils.py word_cleaned: सॉरी\n", + "chapters_utils.py word: मैडम!\"\n", + "chapters_utils.py word_cleaned: मैडम\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: काश!\n", + "chapters_utils.py word_cleaned: काश\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह...\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py word: \"तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\"\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py word: 'सरला'\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"अरे\n", + "chapters_utils.py word_cleaned: अरे\n", + "chapters_utils.py word: वाह!\n", + "chapters_utils.py word_cleaned: वाह\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: पहली\n", + "chapters_utils.py word_cleaned: पहली\n", + "chapters_utils.py word: महिला\n", + "chapters_utils.py word_cleaned: महिला\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: (पायलॉट)\n", + "chapters_utils.py word_cleaned: पायलॉट\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: था?\n", + "chapters_utils.py word_cleaned: था\n", + "chapters_utils.py word: मेरा\n", + "chapters_utils.py word_cleaned: मेरा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: हंसा\n", + "chapters_utils.py word_cleaned: हंसा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मतलब\n", + "chapters_utils.py word_cleaned: मतलब\n", + "chapters_utils.py word: 'हंस'।\n", + "chapters_utils.py word_cleaned: हंस।\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हंस\n", + "chapters_utils.py word_cleaned: हंस\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाले\n", + "chapters_utils.py word_cleaned: वाले\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: अध्यापिका\n", + "chapters_utils.py word_cleaned: अध्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py word: \"सरला!\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: पुस्तकालय\n", + "chapters_utils.py word_cleaned: पुस्तकालय\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बिताना\n", + "chapters_utils.py word_cleaned: बिताना\n", + "chapters_utils.py word: चाहिए।\n", + "chapters_utils.py word_cleaned: चाहिए।\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: -सी\n", + "chapters_utils.py word_cleaned: सी\n", + "chapters_utils.py word: किताबें\n", + "chapters_utils.py word_cleaned: किताबें\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यंत्रों\n", + "chapters_utils.py word_cleaned: यंत्रों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: भी,\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़।\n", + "chapters_utils.py word_cleaned: जहाज़।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: दिनों\n", + "chapters_utils.py word_cleaned: दिनों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: पशु-पक्षियों\n", + "chapters_utils.py word_cleaned: पशुपक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: जान\n", + "chapters_utils.py word_cleaned: जान\n", + "chapters_utils.py word: गई\n", + "chapters_utils.py word_cleaned: गई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: क्यों\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते!\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: सीखा\n", + "chapters_utils.py word_cleaned: सीखा\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मानव\n", + "chapters_utils.py word_cleaned: मानव\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: मनुष्य\n", + "chapters_utils.py word_cleaned: मनुष्य\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: आविष्कार,\n", + "chapters_utils.py word_cleaned: आविष्कार\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बैठकर\n", + "chapters_utils.py word_cleaned: बैठकर\n", + "chapters_utils.py word: विश्व\n", + "chapters_utils.py word_cleaned: विश्व\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: नगर\n", + "chapters_utils.py word_cleaned: नगर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: मज़ा\n", + "chapters_utils.py word_cleaned: मज़ा\n", + "chapters_utils.py word: ले\n", + "chapters_utils.py word_cleaned: ले\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जीव\n", + "chapters_utils.py word_cleaned: जीव\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिन्हें\n", + "chapters_utils.py word_cleaned: जिन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बाहरी\n", + "chapters_utils.py word_cleaned: बाहरी\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती।\n", + "chapters_utils.py word_cleaned: होती।\n", + "chapters_utils.py word: आमतौर\n", + "chapters_utils.py word_cleaned: आमतौर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: हल्के\n", + "chapters_utils.py word_cleaned: हल्के\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: इसलिए\n", + "chapters_utils.py word_cleaned: इसलिए\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: भारी\n", + "chapters_utils.py word_cleaned: भारी\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: दोनों\n", + "chapters_utils.py word_cleaned: दोनों\n", + "chapters_utils.py word: किनारे\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बने\n", + "chapters_utils.py word_cleaned: बने\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: जहाजों\n", + "chapters_utils.py word_cleaned: जहाजों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बनावट\n", + "chapters_utils.py word_cleaned: बनावट\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: सपाट\n", + "chapters_utils.py word_cleaned: सपाट\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मुड़े\n", + "chapters_utils.py word_cleaned: मुड़े\n", + "chapters_utils.py word: हुए,\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: हमने\n", + "chapters_utils.py word_cleaned: हमने\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हुए\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: कभी\n", + "chapters_utils.py word_cleaned: कभी\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देखा!\n", + "chapters_utils.py word_cleaned: देखा\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: ताकि\n", + "chapters_utils.py word_cleaned: ताकि\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: धकेलने\n", + "chapters_utils.py word_cleaned: धकेलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपयोग\n", + "chapters_utils.py word_cleaned: उपयोग\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकें।\n", + "chapters_utils.py word_cleaned: सकें।\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: लगी\n", + "chapters_utils.py word_cleaned: लगी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: सहारे\n", + "chapters_utils.py word_cleaned: सहारे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: बनाता\n", + "chapters_utils.py word_cleaned: बनाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: मज़बूत\n", + "chapters_utils.py word_cleaned: मज़बूत\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: (तेज़)\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: काम\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: लगाते\n", + "chapters_utils.py word_cleaned: लगाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: सीखते\n", + "chapters_utils.py word_cleaned: सीखते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कैसे\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: उड़ा\n", + "chapters_utils.py word_cleaned: उड़ा\n", + "chapters_utils.py word: जाय,वैसे\n", + "chapters_utils.py word_cleaned: जायवैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: धकेलती\n", + "chapters_utils.py word_cleaned: धकेलती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ने\n", + "chapters_utils.py word_cleaned: बढ़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: ईंधन\n", + "chapters_utils.py word_cleaned: ईंधन\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: जलाती\n", + "chapters_utils.py word_cleaned: जलाती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: गर्म\n", + "chapters_utils.py word_cleaned: गर्म\n", + "chapters_utils.py word: गैसें\n", + "chapters_utils.py word_cleaned: गैसें\n", + "chapters_utils.py word: छोड़ती\n", + "chapters_utils.py word_cleaned: छोड़ती\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पीछे\n", + "chapters_utils.py word_cleaned: पीछे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: बनता\n", + "chapters_utils.py word_cleaned: बनता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उससे\n", + "chapters_utils.py word_cleaned: उससे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ता\n", + "chapters_utils.py word_cleaned: बढ़ता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: कार\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: एवं\n", + "chapters_utils.py word_cleaned: एवं\n", + "chapters_utils.py word: अन्य\n", + "chapters_utils.py word_cleaned: अन्य\n", + "chapters_utils.py word: वाहन\n", + "chapters_utils.py word_cleaned: वाहन\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: चलते\n", + "chapters_utils.py word_cleaned: चलते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: मगर\n", + "chapters_utils.py word_cleaned: मगर\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकते।\n", + "chapters_utils.py word_cleaned: सकते।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: बहती\n", + "chapters_utils.py word_cleaned: बहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: इन्हीं\n", + "chapters_utils.py word_cleaned: इन्हीं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठते\n", + "chapters_utils.py word_cleaned: उठते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: पूँछ\n", + "chapters_utils.py word_cleaned: पूँछ\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: बिलकुल\n", + "chapters_utils.py word_cleaned: बिलकुल\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह,\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: टिकने\n", + "chapters_utils.py word_cleaned: टिकने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: दिशा\n", + "chapters_utils.py word_cleaned: दिशा\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़कों\n", + "chapters_utils.py word_cleaned: सड़कों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: 'रनवे'\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: कहा\n", + "chapters_utils.py word_cleaned: कहा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ना\n", + "chapters_utils.py word_cleaned: दौड़ना\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठने\n", + "chapters_utils.py word_cleaned: उठने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py word: अधिकांश\n", + "chapters_utils.py word_cleaned: अधिकांश\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़ी\n", + "chapters_utils.py word_cleaned: तेज़ी\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ते\n", + "chapters_utils.py word_cleaned: दौड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डा\n", + "chapters_utils.py word_cleaned: अड्डा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महत्वपूर्ण\n", + "chapters_utils.py word_cleaned: महत्वपूर्ण\n", + "chapters_utils.py word: हिस्सा\n", + "chapters_utils.py word_cleaned: हिस्सा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: बढ़ाने\n", + "chapters_utils.py word_cleaned: बढ़ाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: पर्याप्त\n", + "chapters_utils.py word_cleaned: पर्याप्त\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: देता\n", + "chapters_utils.py word_cleaned: देता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंत\n", + "chapters_utils.py word_cleaned: अंत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: कहाँ\n", + "chapters_utils.py word_cleaned: कहाँ\n", + "chapters_utils.py word: जाना\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्योंकि\n", + "chapters_utils.py word_cleaned: क्योंकि\n", + "chapters_utils.py word: विमानचालक\n", + "chapters_utils.py word_cleaned: विमानचालक\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: चलाते\n", + "chapters_utils.py word_cleaned: चलाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अंदर,\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह,\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जिसे\n", + "chapters_utils.py word_cleaned: जिसे\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: स्थल\n", + "chapters_utils.py word_cleaned: स्थल\n", + "chapters_utils.py word: (कॉकपिट)\n", + "chapters_utils.py word_cleaned: कॉकपिट\n", + "chapters_utils.py word: कहते\n", + "chapters_utils.py word_cleaned: कहते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: नियंत्रित\n", + "chapters_utils.py word_cleaned: नियंत्रित\n", + "chapters_utils.py word: (कंट्रोल)\n", + "chapters_utils.py word_cleaned: कंट्रोल\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: सटीक\n", + "chapters_utils.py word_cleaned: सटीक\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: आधुनिक\n", + "chapters_utils.py word_cleaned: आधुनिक\n", + "chapters_utils.py word: डिवाइसों\n", + "chapters_utils.py word_cleaned: डिवाइसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डों\n", + "chapters_utils.py word_cleaned: अड्डों\n", + "chapters_utils.py word: (एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जहाँ\n", + "chapters_utils.py word_cleaned: जहाँ\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरते\n", + "chapters_utils.py word_cleaned: उतरते\n", + "chapters_utils.py word: हैं)\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: संपर्क\n", + "chapters_utils.py word_cleaned: संपर्क\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: हमारी\n", + "chapters_utils.py word_cleaned: हमारी\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सिग्नल\n", + "chapters_utils.py word_cleaned: सिग्नल\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पुलिस\n", + "chapters_utils.py word_cleaned: पुलिस\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: वैसे\n", + "chapters_utils.py word_cleaned: वैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वायु\n", + "chapters_utils.py word_cleaned: वायु\n", + "chapters_utils.py word: यातायात\n", + "chapters_utils.py word_cleaned: यातायात\n", + "chapters_utils.py word: नियंत्रक\n", + "chapters_utils.py word_cleaned: नियंत्रक\n", + "chapters_utils.py word: (एयर\n", + "chapters_utils.py word_cleaned: एयर\n", + "chapters_utils.py word: ट्रैफिक\n", + "chapters_utils.py word_cleaned: ट्रैफिक\n", + "chapters_utils.py word: कंट्रोलर)\n", + "chapters_utils.py word_cleaned: कंट्रोलर\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बताते\n", + "chapters_utils.py word_cleaned: बताते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: किस\n", + "chapters_utils.py word_cleaned: किस\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरनी\n", + "chapters_utils.py word_cleaned: भरनी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरना\n", + "chapters_utils.py word_cleaned: भरना\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहेगा।\n", + "chapters_utils.py word_cleaned: रहेगा।\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: वास्तव\n", + "chapters_utils.py word_cleaned: वास्तव\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: विशाल\n", + "chapters_utils.py word_cleaned: विशाल\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: सिर्फ़\n", + "chapters_utils.py word_cleaned: सिर्फ़\n", + "chapters_utils.py word: इसका\n", + "chapters_utils.py word_cleaned: इसका\n", + "chapters_utils.py word: आकार\n", + "chapters_utils.py word_cleaned: आकार\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: बल्कि\n", + "chapters_utils.py word_cleaned: बल्कि\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हालाँकि\n", + "chapters_utils.py word_cleaned: हालाँकि\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: बनना\n", + "chapters_utils.py word_cleaned: बनना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ाना\n", + "chapters_utils.py word_cleaned: उड़ाना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py word: ...\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py word: चलो\n", + "chapters_utils.py word_cleaned: चलो\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरें!\n", + "chapters_utils.py word_cleaned: भरें\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: दोस्तों\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मज़े\n", + "chapters_utils.py word_cleaned: मज़े\n", + "chapters_utils.py word: लें\n", + "chapters_utils.py word_cleaned: लें\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: देखो\n", + "chapters_utils.py word_cleaned: देखो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: किसका\n", + "chapters_utils.py word_cleaned: किसका\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: ज़रा\n", + "chapters_utils.py word_cleaned: ज़रा\n", + "chapters_utils.py word: सोचो,\n", + "chapters_utils.py word_cleaned: सोचो\n", + "chapters_utils.py word: क्यों?\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कमाल\n", + "chapters_utils.py word_cleaned: कमाल\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: तरीक़े\n", + "chapters_utils.py word_cleaned: तरीक़े\n", + "chapters_utils.py word: का?\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: ग़ौर\n", + "chapters_utils.py word_cleaned: ग़ौर\n", + "chapters_utils.py word: करो,\n", + "chapters_utils.py word_cleaned: करो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: छोड़ा\n", + "chapters_utils.py word_cleaned: छोड़ा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: छोड़ने\n", + "chapters_utils.py word_cleaned: छोड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: फूँक\n", + "chapters_utils.py word_cleaned: फूँक\n", + "chapters_utils.py word: मारते\n", + "chapters_utils.py word_cleaned: मारते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नीचे,\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: तब\n", + "chapters_utils.py word_cleaned: तब\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: अंतर\n", + "chapters_utils.py word_cleaned: अंतर\n", + "chapters_utils.py word: दिखता\n", + "chapters_utils.py word_cleaned: दिखता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: 'फ़्लाइ\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: डोंट\n", + "chapters_utils.py word_cleaned: डोंट\n", + "chapters_utils.py word: फ़्लाइ'\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: गेम:\n", + "chapters_utils.py word_cleaned: गेम\n", + "chapters_utils.py word: मित्रों\n", + "chapters_utils.py word_cleaned: मित्रों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समूह\n", + "chapters_utils.py word_cleaned: समूह\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: -दूसरे\n", + "chapters_utils.py word_cleaned: दूसरे\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बिना\n", + "chapters_utils.py word_cleaned: बिना\n", + "chapters_utils.py word: छुए\n", + "chapters_utils.py word_cleaned: छुए\n", + "chapters_utils.py word: कमरे\n", + "chapters_utils.py word_cleaned: कमरे\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: चारों\n", + "chapters_utils.py word_cleaned: चारों\n", + "chapters_utils.py word: तरफ़\n", + "chapters_utils.py word_cleaned: तरफ़\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़ो।\n", + "chapters_utils.py word_cleaned: उड़ो।\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: (चोर)\n", + "chapters_utils.py word_cleaned: चोर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: कोने\n", + "chapters_utils.py word_cleaned: कोने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़ों\n", + "chapters_utils.py word_cleaned: चीज़ों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: कहेगा।\n", + "chapters_utils.py word_cleaned: कहेगा।\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़\n", + "chapters_utils.py word_cleaned: चीज़\n", + "chapters_utils.py word: (जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेज़/टेबुल)\n", + "chapters_utils.py word_cleaned: मेज़टेबुल\n", + "chapters_utils.py word: कहे\n", + "chapters_utils.py word_cleaned: कहे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: (बैठ\n", + "chapters_utils.py word_cleaned: बैठ\n", + "chapters_utils.py word: जाना)\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: ग़लती\n", + "chapters_utils.py word_cleaned: ग़लती\n", + "chapters_utils.py word: करेगा,\n", + "chapters_utils.py word_cleaned: करेगा\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: अगला\n", + "chapters_utils.py word_cleaned: अगला\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word_count: 965\n", + "chapters_utils.py total_word_length: 3451\n", + "step1_2_preprocess_data.py index: 56\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 4\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py word: नन्हा\n", + "chapters_utils.py word_cleaned: नन्हा\n", + "chapters_utils.py word: हाथी\n", + "chapters_utils.py word_cleaned: हाथी\n", + "chapters_utils.py word: भाई\n", + "chapters_utils.py word_cleaned: भाई\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: सा\n", + "chapters_utils.py word_cleaned: सा\n", + "chapters_utils.py word: मोटा।\n", + "chapters_utils.py word_cleaned: मोटा।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py word: कान\n", + "chapters_utils.py word_cleaned: कान\n", + "chapters_utils.py word: कैसे?\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: पंखे\n", + "chapters_utils.py word_cleaned: पंखे\n", + "chapters_utils.py word: जैसे!\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: लटकी\n", + "chapters_utils.py word_cleaned: लटकी\n", + "chapters_utils.py word: लम्बी\n", + "chapters_utils.py word_cleaned: लम्बी\n", + "chapters_utils.py word: सूंड़।\n", + "chapters_utils.py word_cleaned: सूंड़।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py word: दुम\n", + "chapters_utils.py word_cleaned: दुम\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सिरा\n", + "chapters_utils.py word_cleaned: सिरा\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कितना\n", + "chapters_utils.py word_cleaned: कितना\n", + "chapters_utils.py word: छोटा!\n", + "chapters_utils.py word_cleaned: छोटा\n", + "chapters_utils.py word_count: 20\n", + "chapters_utils.py total_word_length: 77\n", + "step1_2_preprocess_data.py index: 57\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 8\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: गोलू\n", + "chapters_utils.py word_cleaned: गोलू\n", + "chapters_utils.py word: गोल‍\n", + "chapters_utils.py word_cleaned: गोल‍\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py word: सारे\n", + "chapters_utils.py word_cleaned: सारे\n", + "chapters_utils.py word: लोग\n", + "chapters_utils.py word_cleaned: लोग\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: ढूंढ\n", + "chapters_utils.py word_cleaned: ढूंढ\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो।\n", + "chapters_utils.py word_cleaned: हो।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py word: सूरज\n", + "chapters_utils.py word_cleaned: सूरज\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अग‍र\n", + "chapters_utils.py word_cleaned: अग‍र\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: आधा\n", + "chapters_utils.py word_cleaned: आधा\n", + "chapters_utils.py word: अम्ब्रेला\n", + "chapters_utils.py word_cleaned: अम्ब्रेला\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py word: रात\n", + "chapters_utils.py word_cleaned: रात\n", + "chapters_utils.py word: को,\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: चाँद\n", + "chapters_utils.py word_cleaned: चाँद\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: हँसकर\n", + "chapters_utils.py word_cleaned: हँसकर\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: उल्लू\n", + "chapters_utils.py word_cleaned: उल्लू\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: गोल\n", + "chapters_utils.py word_cleaned: गोल\n", + "chapters_utils.py word: आँखों\n", + "chapters_utils.py word_cleaned: आँखों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: तरबूज़,\n", + "chapters_utils.py word_cleaned: तरबूज़\n", + "chapters_utils.py word: सेब,\n", + "chapters_utils.py word_cleaned: सेब\n", + "chapters_utils.py word: नारंगी,\n", + "chapters_utils.py word_cleaned: नारंगी\n", + "chapters_utils.py word: टमाटर,\n", + "chapters_utils.py word_cleaned: टमाटर\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py word: यहां\n", + "chapters_utils.py word_cleaned: यहां\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: ​​कि\n", + "chapters_utils.py word_cleaned: ​​कि\n", + "chapters_utils.py word: छोटे\n", + "chapters_utils.py word_cleaned: छोटे\n", + "chapters_utils.py word: नींबू\n", + "chapters_utils.py word_cleaned: नींबू\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: लग\n", + "chapters_utils.py word_cleaned: लग\n", + "chapters_utils.py word: रहे\n", + "chapters_utils.py word_cleaned: रहे\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मिठाई\n", + "chapters_utils.py word_cleaned: मिठाई\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: रसगुल्ला,\n", + "chapters_utils.py word_cleaned: रसगुल्ला\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: गुलाबजामुन,\n", + "chapters_utils.py word_cleaned: गुलाबजामुन\n", + "chapters_utils.py word: प्यारे\n", + "chapters_utils.py word_cleaned: प्यारे\n", + "chapters_utils.py word: लड्डू,\n", + "chapters_utils.py word_cleaned: लड्डू\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: दिखने\n", + "chapters_utils.py word_cleaned: दिखने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: मिठाइयाँ।\n", + "chapters_utils.py word_cleaned: मिठाइयाँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py word: पशु\n", + "chapters_utils.py word_cleaned: पशु\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: सजाने\n", + "chapters_utils.py word_cleaned: सजाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: चाहते\n", + "chapters_utils.py word_cleaned: चाहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py word: चीता,\n", + "chapters_utils.py word_cleaned: चीता\n", + "chapters_utils.py word: चीटियल\n", + "chapters_utils.py word_cleaned: चीटियल\n", + "chapters_utils.py word: हिरण,\n", + "chapters_utils.py word_cleaned: हिरण\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: त्वचा\n", + "chapters_utils.py word_cleaned: त्वचा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सब\n", + "chapters_utils.py word_cleaned: सब\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: लेडीबर्ड्स\n", + "chapters_utils.py word_cleaned: लेडीबर्ड्स\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: तितलियों\n", + "chapters_utils.py word_cleaned: तितलियों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हूं।\n", + "chapters_utils.py word_cleaned: हूं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मैदान\n", + "chapters_utils.py word_cleaned: मैदान\n", + "chapters_utils.py word: में,\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गेंद\n", + "chapters_utils.py word_cleaned: गेंद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: रूप\n", + "chapters_utils.py word_cleaned: रूप\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हूं,\n", + "chapters_utils.py word_cleaned: हूं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: खेल\n", + "chapters_utils.py word_cleaned: खेल\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: ट्रक,\n", + "chapters_utils.py word_cleaned: ट्रक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़,\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: कार,\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: चक्र,\n", + "chapters_utils.py word_cleaned: चक्र\n", + "chapters_utils.py word: चल\n", + "chapters_utils.py word_cleaned: चल\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: पाएंगे...\n", + "chapters_utils.py word_cleaned: पाएंगे\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होता।\n", + "chapters_utils.py word_cleaned: होता।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जहां\n", + "chapters_utils.py word_cleaned: जहां\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py word: आपके\n", + "chapters_utils.py word_cleaned: आपके\n", + "chapters_utils.py word: रिपोर्ट\n", + "chapters_utils.py word_cleaned: रिपोर्ट\n", + "chapters_utils.py word: कार्ड\n", + "chapters_utils.py word_cleaned: कार्ड\n", + "chapters_utils.py word: पर!\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: क्षमा\n", + "chapters_utils.py word_cleaned: क्षमा\n", + "chapters_utils.py word: करें\n", + "chapters_utils.py word_cleaned: करें\n", + "chapters_utils.py word: दोस्तों!\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: ऐसा\n", + "chapters_utils.py word_cleaned: ऐसा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: दुखी\n", + "chapters_utils.py word_cleaned: दुखी\n", + "chapters_utils.py word: लगता\n", + "chapters_utils.py word_cleaned: लगता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: आपको\n", + "chapters_utils.py word_cleaned: आपको\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: कड़ी\n", + "chapters_utils.py word_cleaned: कड़ी\n", + "chapters_utils.py word: मेहनत\n", + "chapters_utils.py word_cleaned: मेहनत\n", + "chapters_utils.py word: करनी\n", + "chapters_utils.py word_cleaned: करनी\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word_count: 176\n", + "chapters_utils.py total_word_length: 656\n", + "step1_2_preprocess_data.py storybooks_dataframe (after extracting data from `chapters` column): \n", + " id title ... word_count avg_word_length\n", + "0 37 अद्भुत कीड़े ... 26 3.500000\n", + "1 1 अभी नहीं, अभी नहीं! ... 167 3.784431\n", + "2 36 अरे, यह सब कौन खा गया? ... 138 4.115942\n", + "3 59 अरे...नहीं! ... 129 4.100775\n", + "4 25 आओ, बीज बटोरें! ... 1596 3.704261\n", + "5 29 आज, मैं हूँ... ... 110 3.536364\n", + "6 63 आनंद ... 101 3.742574\n", + "7 2 आलू-मालू-कालू ... 123 3.829268\n", + "8 15 उड़ने वाला ऑटो ... 1291 3.571650\n", + "9 6 एक था मोटा राजा ... 78 3.538462\n", + "10 53 एक सौ सैंतीसवाँ पैर ... 486 3.707819\n", + "11 66 एक सफ़र, एक खेल ... 442 4.009050\n", + "12 56 एक, तीन, पाँच, मदद! मदद! ... 398 3.673367\n", + "13 4 कहानी- बादल की सैर ... 117 3.205128\n", + "14 42 कितनी मज़ेदार है बांग्ला संख्याएं ... 264 3.700758\n", + "15 61 कुत्ते के अंडे ... 178 3.741573\n", + "16 50 कोयल का गला हुआ खराब ... 811 3.675709\n", + "17 32 क्या होता अगर? ... 209 3.741627\n", + "18 11 गप्पू नाच नहीं सकती ... 194 3.298969\n", + "19 26 गरजे बादल नाचे मोर ... 393 3.625954\n", + "20 51 घूम-घूम घड़ियाल का अनोखा सफ़र ... 623 3.874799\n", + "21 7 चाँद का तोहफ़ा ... 144 3.555556\n", + "22 64 छुट्टी ... 85 3.847059\n", + "23 55 जादुर्इ गुटका ... 461 3.659436\n", + "24 34 जीव-जन्तुओं के घर ... 148 3.763514\n", + "25 47 टुमी के पार्क का दिन ... 117 3.435897\n", + "26 24 टूथपेस्ट ट्यूब के अंदर कैसे आया? ... 731 3.753762\n", + "27 27 तारा की गगनचुंबी यात्रा ... 211 3.853081\n", + "28 46 तितलियां ... 81 3.691358\n", + "29 65 दीदी का रंग बिरंगा खज़ाना ... 426 3.598592\n", + "30 60 द्रुवी की छतरी ... 427 3.742389\n", + "31 17 पिशि फँसी तूफ़ान में ... 374 3.721925\n", + "32 19 पूरी क्यों फूलती है? ... 1342 3.486587\n", + "33 39 बंटी और उसके गाते हुए पक्षी ... 177 3.627119\n", + "34 5 बनबिलाव! बनबिलाव! ... 116 4.646552\n", + "35 28 बोलो एक साँस में ... 95 4.578947\n", + "36 20 मधुमक्खियाँ क्यों भन-भन करती हैं? ... 672 3.684524\n", + "37 30 मलार का बड़ा सा घर ... 201 3.597015\n", + "38 22 मुत्तज्जी की उम्र क्या है? ... 2057 3.631988\n", + "39 57 मेंढक की तरकीब ... 133 3.563910\n", + "40 33 मेरा प्रथम परिचय - भारतीय डायनोसॉर से ... 23 6.695652\n", + "41 8 मैं और मेरी दोस्त टीना| ... 150 3.293333\n", + "42 9 मैं नहीं डरती ! ... 107 2.915888\n", + "43 16 मैं बहुत कुछ बना सकता हूँ! ... 120 3.641667\n", + "44 41 राजू की पहली हवाई-यात्रा ... 555 3.749550\n", + "45 10 रिमझिम बरसे बादल ... 101 3.188119\n", + "46 58 रोज़ और रॉकी चले कम्पोस्ट बनाने ... 131 4.175573\n", + "47 49 लाल बरसाती ... 258 3.689922\n", + "48 52 सत्यम, ज़रा संभल के! ... 559 3.695886\n", + "49 18 सबसे अच्छा घर ... 564 3.751773\n", + "50 40 सूरज का दोस्त कौन ? ... 89 3.831461\n", + "51 14 सो जाओ टिंकु! ... 488 3.815574\n", + "52 23 स्वतंत्रता की ओर ... 1507 3.727273\n", + "53 38 हमारे मित्र कौन है? ... 140 3.864286\n", + "54 54 हर पेड़ ज़रूरी है! ... 211 3.658768\n", + "55 21 हवाई जहाज़ कैसे उड़ते हैं? ... 965 3.576166\n", + "56 31 हाथी भाई ... 20 3.850000\n", + "57 48 ग़ोलू एक ग़ोल कि कहानी ... 176 3.727273\n", + "\n", + "[58 rows x 12 columns]\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 0.368421 0.225352 0.002946 0.154537\n", + "1 0.157895 0.183099 0.072165 0.229788\n", + "2 0.368421 0.352113 0.057928 0.317494\n", + "3 0.631579 0.352113 0.053510 0.313482\n", + "4 0.789474 0.704225 0.773687 0.208577\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping unnecessary columns): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping missing values): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after converting texts to numbers): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 1 0.210526 0.154930 0.076583 0.214665\n", + "step1_3_split_data.py storybooks_csv_path: step1_2_storybooks.csv\n", + "step1_3_split_data.py train_X: \n", + " id chapter_count paragraph_count word_count\n", + "29 65 0.421053 0.366197 0.199313\n", + "40 33 0.526316 0.126761 0.001473\n", + "32 19 0.578947 0.492958 0.648994\n", + "41 8 0.368421 0.112676 0.063819\n", + "37 30 0.473684 0.338028 0.088856\n", + "7 2 0.157895 0.098592 0.050565\n", + "14 42 0.578947 0.464789 0.119784\n", + "31 17 0.263158 0.084507 0.173785\n", + "28 46 0.052632 0.014085 0.029946\n", + "56 31 0.000000 0.000000 0.000000\n", + "52 23 0.631579 0.718310 0.729995\n", + "18 11 0.421053 0.380282 0.085420\n", + "54 54 0.368421 0.338028 0.093765\n", + "26 24 0.526316 0.225352 0.349043\n", + "15 61 0.684211 0.352113 0.077565\n", + "5 29 0.368421 0.126761 0.044183\n", + "30 60 0.368421 0.535211 0.199804\n", + "16 50 0.736842 0.619718 0.388316\n", + "49 18 0.684211 0.478873 0.267059\n", + "20 51 0.789474 0.619718 0.296024\n", + "50 40 0.000000 0.169014 0.033873\n", + "8 15 1.000000 0.605634 0.623957\n", + "13 4 0.421053 0.295775 0.047619\n", + "25 47 0.631579 0.197183 0.047619\n", + "17 32 0.315789 0.295775 0.092784\n", + "43 16 0.368421 0.126761 0.049092\n", + "46 58 0.368421 0.169014 0.054492\n", + "51 14 0.526316 0.507042 0.229750\n", + "38 22 1.000000 1.000000 1.000000\n", + "1 1 0.157895 0.183099 0.072165\n", + "12 56 0.368421 0.464789 0.185567\n", + "57 48 0.210526 0.154930 0.076583\n", + "24 34 0.368421 0.211268 0.062838\n", + "6 63 0.578947 0.126761 0.039764\n", + "23 55 0.736842 0.676056 0.216495\n", + "36 20 0.473684 0.253521 0.320079\n", + "21 7 0.368421 0.126761 0.060874\n", + "19 26 0.157895 0.098592 0.183112\n", + "9 6 0.157895 0.042254 0.028473\n", + "39 57 0.631579 0.253521 0.055474\n", + "55 21 0.421053 0.309859 0.463918\n", + "3 59 0.631579 0.352113 0.053510\n", + "0 37 0.368421 0.225352 0.002946\n", + "53 38 0.526316 0.225352 0.058910\n", + "47 49 0.263158 0.267606 0.116838\n", + "44 41 0.315789 0.366197 0.262641\n", + "step1_3_split_data.py train_y: \n", + " reading_level\n", + "29 2\n", + "40 1\n", + "32 3\n", + "41 1\n", + "37 1\n", + "7 1\n", + "14 1\n", + "31 3\n", + "28 1\n", + "56 1\n", + "52 4\n", + "18 1\n", + "54 2\n", + "26 3\n", + "15 2\n", + "5 1\n", + "30 2\n", + "16 2\n", + "49 3\n", + "20 2\n", + "50 1\n", + "8 3\n", + "13 1\n", + "25 1\n", + "17 1\n", + "43 1\n", + "46 2\n", + "51 2\n", + "38 4\n", + "1 1\n", + "12 2\n", + "57 1\n", + "24 1\n", + "6 1\n", + "23 2\n", + "36 3\n", + "21 1\n", + "19 2\n", + "9 1\n", + "39 2\n", + "55 3\n", + "3 2\n", + "0 1\n", + "53 1\n", + "47 1\n", + "44 4\n", + "step1_3_split_data.py test_X: \n", + " id chapter_count paragraph_count word_count\n", + "35 28 0.315789 0.183099 0.036819\n", + "34 5 0.368421 0.239437 0.047128\n", + "42 9 0.368421 0.098592 0.042710\n", + "27 27 0.368421 0.267606 0.093765\n", + "11 66 0.578947 0.563380 0.207167\n", + "2 36 0.368421 0.352113 0.057928\n", + "33 39 0.473684 0.154930 0.077074\n", + "45 10 0.105263 0.197183 0.039764\n", + "22 64 0.000000 0.295775 0.031910\n", + "48 52 0.842105 0.521127 0.264605\n", + "4 25 0.789474 0.704225 0.773687\n", + "10 53 0.578947 0.816901 0.228768\n", + "step1_3_split_data.py test_y: \n", + " reading_level\n", + "35 1\n", + "34 1\n", + "42 1\n", + "27 2\n", + "11 2\n", + "2 1\n", + "33 1\n", + "45 1\n", + "22 2\n", + "48 2\n", + "4 3\n", + "10 2\n", + "step1_4_eda.py storybooks_csv_path: step1_2_storybooks.csv\n", + "label: chapter_count\n", + "label: paragraph_count\n", + "label: word_count\n", + "label: avg_word_length\n", + "\n", + "*** Step 2. Train Model ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step2_train\n", + "step2_1_train_model_pkl.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_1_train_model_pkl.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_1_train_model_pkl.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_1_train_model_pkl.py type(y): \n", + "step2_1_train_model_pkl.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_1_train_model_pkl.py type(X): \n", + "step2_1_train_model_pkl.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_1_train_model_pkl.py Defining model...\n", + "step2_1_train_model_pkl.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step2_1_train_model_pkl.py Fitting model...\n", + "step2_1_train_model_pkl.py Saving model...\n", + "step2_2_train_model_pmml.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_2_train_model_pmml.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_2_train_model_pmml.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_2_train_model_pmml.py type(y): \n", + "step2_2_train_model_pmml.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_2_train_model_pmml.py type(X): \n", + "step2_2_train_model_pmml.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_2_train_model_pmml.py Defining model...\n", + "step2_2_train_model_pmml.py reading_level_model: PMMLPipeline(steps=[('regressor', DecisionTreeRegressor(random_state=1))])\n", + "step2_2_train_model_pmml.py Fitting model...\n", + "step2_2_train_model_pmml.py Saving model...\n", + "\n", + "*** Step 3. Make Prediction ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step3_predict\n", + "step3_1_predict.py model_pkl_path: ../step2_train/step2_1_model.pkl\n", + "step3_1_predict.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step3_1_predict.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_test.csv\n", + "step3_1_predict.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_1_predict.py predictions_array:\n", + "[1. 1. 1. 2. 2. 1. 1. 1. 1. 4. 4. 2.]\n", + "step3_1_predict.py type(predictions_array):\n", + "\n", + "step3_1_predict.py predictions_dataframe:\n", + " reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_1_predict.py type(predictions_dataframe):\n", + "\n", + "step3_2_validate.py model_pmml_path: ../step2_train/step2_2_model.pmml\n", + "step3_2_validate.py reading_level_model: org.pmml4s.model.TreeModel@72380129\n", + "step3_2_validate.py storybooks_dataframe: \n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_2_validate.py predictions: \n", + " predicted_reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_2_validate.py type(predictions): \n", + "\n", + "step3_2_validate.py mean_absolute_error: 0.3333333333333333\n", + "step3_2_validate.py accuracy_score: 0.75\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "## STANDARD SCALER\n", + "\n", + "with open(\"step1_2_preprocess_data.py\", \"r\") as file:\n", + " data = file.readlines()\n", + "\n", + "# insert standard scaler (z-scaling) after unnecessary columns are dropped\n", + "for i, line in enumerate(data):\n", + " if \"storybooks_dataframe = storybooks_dataframe[['id', 'reading_level',\" in line:\n", + " data.insert(i + 1, \"\"\"\n", + "from sklearn.preprocessing import StandardScaler\n", + "scaler = StandardScaler()\n", + "storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']] = scaler.fit_transform(\n", + " storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']])\n", + "print(storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']].head())\n", + "\n", + "\"\"\")\n", + "\n", + "# write to file\n", + "with open(\"step1_2_preprocess_data.py\", \"w\") as file:\n", + " file.writelines(data)\n" + ], + "metadata": { + "id": "cENYche-RiuG" + }, + "execution_count": 39, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "%cd ..\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "vo30-FV9UY7T", + "outputId": "8a487f35-d4ee-4e70-ab9b-f84473b2525c" + }, + "execution_count": 40, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!python run_all_steps.py\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "3i8SE36OUajr", + "outputId": "bce585e8-0bc1-4b18-9d55-17f2f00e1805" + }, + "execution_count": 41, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: जाओगे\n", + "chapters_utils.py word_cleaned: जाओगे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: देखेगा?\n", + "chapters_utils.py word_cleaned: देखेगा\n", + "chapters_utils.py word: इतना\n", + "chapters_utils.py word_cleaned: इतना\n", + "chapters_utils.py word: चलने\n", + "chapters_utils.py word_cleaned: चलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद,\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: कमज़ोर\n", + "chapters_utils.py word_cleaned: कमज़ोर\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाऊँगा।\n", + "chapters_utils.py word_cleaned: जाऊँगा।\n", + "chapters_utils.py word: इसलिये,\n", + "chapters_utils.py word_cleaned: इसलिये\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: वापस\n", + "chapters_utils.py word_cleaned: वापस\n", + "chapters_utils.py word: आऊँगा\n", + "chapters_utils.py word_cleaned: आऊँगा\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: खूब\n", + "chapters_utils.py word_cleaned: खूब\n", + "chapters_utils.py word: सारा\n", + "chapters_utils.py word_cleaned: सारा\n", + "chapters_utils.py word: दूध\n", + "chapters_utils.py word_cleaned: दूध\n", + "chapters_utils.py word: पीना\n", + "chapters_utils.py word_cleaned: पीना\n", + "chapters_utils.py word: पड़ेगा,\n", + "chapters_utils.py word_cleaned: पड़ेगा\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेरी\n", + "chapters_utils.py word_cleaned: मेरी\n", + "chapters_utils.py word: ताकत\n", + "chapters_utils.py word_cleaned: ताकत\n", + "chapters_utils.py word: लौट\n", + "chapters_utils.py word_cleaned: लौट\n", + "chapters_utils.py word: आये।“\n", + "chapters_utils.py word_cleaned: आये।“\n", + "chapters_utils.py paragraph: {'originalText': '”हूँ... यह बात तो ठीक है, गाँधी जी! बिन्नी तभी खाती है, जब मैं उसे खिलाता हूँ,“ धनी ने प्यार से बिन्नी का सर सहलाया, ”और स़िर्फ मैं जानता हूँ कि इसे क्या पसन्द है।“', 'sortOrder': 4, 'id': 1415}\n", + "chapters_utils.py words: ['”हूँ...', 'यह', 'बात', 'तो', 'ठीक', 'है,', 'गाँधी', 'जी!', 'बिन्नी', 'तभी', 'खाती', 'है,', 'जब', 'मैं', 'उसे', 'खिलाता', 'हूँ,“', 'धनी', 'ने', 'प्यार', 'से', 'बिन्नी', 'का', 'सर', 'सहलाया,', '”और', 'स़िर्फ', 'मैं', 'जानता', 'हूँ', 'कि', 'इसे', 'क्या', 'पसन्द', 'है।“']\n", + "chapters_utils.py word: ”हूँ...\n", + "chapters_utils.py word_cleaned: ”हूँ\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी!\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: खाती\n", + "chapters_utils.py word_cleaned: खाती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: खिलाता\n", + "chapters_utils.py word_cleaned: खिलाता\n", + "chapters_utils.py word: हूँ,“\n", + "chapters_utils.py word_cleaned: हूँ“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सर\n", + "chapters_utils.py word_cleaned: सर\n", + "chapters_utils.py word: सहलाया,\n", + "chapters_utils.py word_cleaned: सहलाया\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: स़िर्फ\n", + "chapters_utils.py word_cleaned: स़िर्फ\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: जानता\n", + "chapters_utils.py word_cleaned: जानता\n", + "chapters_utils.py word: हूँ\n", + "chapters_utils.py word_cleaned: हूँ\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: पसन्द\n", + "chapters_utils.py word_cleaned: पसन्द\n", + "chapters_utils.py word: है।“\n", + "chapters_utils.py word_cleaned: है।“\n", + "chapters_utils.py paragraph: {'originalText': '”बिल्कुल सही। तो क्या तुम आश्रम में रह कर मेरे लिये बिन्नी की देखभाल करोगे?“ गाँधी जी प्यार से बोले।', 'sortOrder': 5, 'id': 1416}\n", + "chapters_utils.py words: ['”बिल्कुल', 'सही।', 'तो', 'क्या', 'तुम', 'आश्रम', 'में', 'रह', 'कर', 'मेरे', 'लिये', 'बिन्नी', 'की', 'देखभाल', 'करोगे?“', 'गाँधी', 'जी', 'प्यार', 'से', 'बोले।']\n", + "chapters_utils.py word: ”बिल्कुल\n", + "chapters_utils.py word_cleaned: ”बिल्कुल\n", + "chapters_utils.py word: सही।\n", + "chapters_utils.py word_cleaned: सही।\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: आश्रम\n", + "chapters_utils.py word_cleaned: आश्रम\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रह\n", + "chapters_utils.py word_cleaned: रह\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: लिये\n", + "chapters_utils.py word_cleaned: लिये\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: देखभाल\n", + "chapters_utils.py word_cleaned: देखभाल\n", + "chapters_utils.py word: करोगे?“\n", + "chapters_utils.py word_cleaned: करोगे“\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बोले।\n", + "chapters_utils.py word_cleaned: बोले।\n", + "chapters_utils.py paragraph: {'originalText': '”जी, गाँधी जी, करूँगा,“ धनी बोला, ”और बिन्नी और मैं, आपका इन्तज़ार करेंगे।“', 'sortOrder': 6, 'id': 1417}\n", + "chapters_utils.py words: ['”जी,', 'गाँधी', 'जी,', 'करूँगा,“', 'धनी', 'बोला,', '”और', 'बिन्नी', 'और', 'मैं,', 'आपका', 'इन्तज़ार', 'करेंगे।“']\n", + "chapters_utils.py word: ”जी,\n", + "chapters_utils.py word_cleaned: ”जी\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी,\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: करूँगा,“\n", + "chapters_utils.py word_cleaned: करूँगा“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: बोला,\n", + "chapters_utils.py word_cleaned: बोला\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं,\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: आपका\n", + "chapters_utils.py word_cleaned: आपका\n", + "chapters_utils.py word: इन्तज़ार\n", + "chapters_utils.py word_cleaned: इन्तज़ार\n", + "chapters_utils.py word: करेंगे।“\n", + "chapters_utils.py word_cleaned: करेंगे।“\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py chapter[\"sortOrder\"]: 14\n", + "chapters_utils.py paragraph: {'originalText': 'इतिहास के कुछ रोचक तथ्य:', 'sortOrder': 0, 'id': 1419}\n", + "chapters_utils.py words: ['इतिहास', 'के', 'कुछ', 'रोचक', 'तथ्य:']\n", + "chapters_utils.py word: इतिहास\n", + "chapters_utils.py word_cleaned: इतिहास\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: रोचक\n", + "chapters_utils.py word_cleaned: रोचक\n", + "chapters_utils.py word: तथ्य:\n", + "chapters_utils.py word_cleaned: तथ्य\n", + "chapters_utils.py paragraph: {'originalText': '1. मार्च 1930 में महात्मा गाँधी ने ब्रिटिश सरकार द्वारा लगाये नमक कर के विरोध में दाँडी तक की यात्रा का नेतृत्व किया। गाँधी जी और उनके अनुयायी, गुजरात में 24 दिन तक पैदल चले। पूरे रास्ते उनका स्वागत फूलों और गीतों से हुआ। विश्\\u200dव भर के अखबारों ने यात्रा पर खबरें छापीं।', 'sortOrder': 1, 'id': 1420}\n", + "chapters_utils.py words: ['1.', 'मार्च', '1930', 'में', 'महात्मा', 'गाँधी', 'ने', 'ब्रिटिश', 'सरकार', 'द्वारा', 'लगाये', 'नमक', 'कर', 'के', 'विरोध', 'में', 'दाँडी', 'तक', 'की', 'यात्रा', 'का', 'नेतृत्व', 'किया।', 'गाँधी', 'जी', 'और', 'उनके', 'अनुयायी,', 'गुजरात', 'में', '24', 'दिन', 'तक', 'पैदल', 'चले।', 'पूरे', 'रास्ते', 'उनका', 'स्वागत', 'फूलों', 'और', 'गीतों', 'से', 'हुआ।', 'विश्\\u200dव', 'भर', 'के', 'अखबारों', 'ने', 'यात्रा', 'पर', 'खबरें', 'छापीं।']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: महात्मा\n", + "chapters_utils.py word_cleaned: महात्मा\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: ब्रिटिश\n", + "chapters_utils.py word_cleaned: ब्रिटिश\n", + "chapters_utils.py word: सरकार\n", + "chapters_utils.py word_cleaned: सरकार\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: लगाये\n", + "chapters_utils.py word_cleaned: लगाये\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: विरोध\n", + "chapters_utils.py word_cleaned: विरोध\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नेतृत्व\n", + "chapters_utils.py word_cleaned: नेतृत्व\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: अनुयायी,\n", + "chapters_utils.py word_cleaned: अनुयायी\n", + "chapters_utils.py word: गुजरात\n", + "chapters_utils.py word_cleaned: गुजरात\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: 24\n", + "chapters_utils.py word_cleaned: 24\n", + "chapters_utils.py word: दिन\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: पैदल\n", + "chapters_utils.py word_cleaned: पैदल\n", + "chapters_utils.py word: चले।\n", + "chapters_utils.py word_cleaned: चले।\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: रास्ते\n", + "chapters_utils.py word_cleaned: रास्ते\n", + "chapters_utils.py word: उनका\n", + "chapters_utils.py word_cleaned: उनका\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: गीतों\n", + "chapters_utils.py word_cleaned: गीतों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हुआ।\n", + "chapters_utils.py word_cleaned: हुआ।\n", + "chapters_utils.py word: विश्‍व\n", + "chapters_utils.py word_cleaned: विश्‍व\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अखबारों\n", + "chapters_utils.py word_cleaned: अखबारों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खबरें\n", + "chapters_utils.py word_cleaned: खबरें\n", + "chapters_utils.py word: छापीं।\n", + "chapters_utils.py word_cleaned: छापीं।\n", + "chapters_utils.py paragraph: {'originalText': '2. दाँडी में गाँधी जी और उनके साथियों ने समुद्र तट से नमक उठाया और उन्हें गिरफ़्तार कर लिया गया। उनकी गिरफ़्तारी के बाद असहयोग आन्दोलन शुरू हुआ और पूरे भारत में लोगों ने स्कूल, कॉलेज व दफ़्तरों का बायकॉट किया।', 'sortOrder': 2, 'id': 1421}\n", + "chapters_utils.py words: ['2.', 'दाँडी', 'में', 'गाँधी', 'जी', 'और', 'उनके', 'साथियों', 'ने', 'समुद्र', 'तट', 'से', 'नमक', 'उठाया', 'और', 'उन्हें', 'गिरफ़्तार', 'कर', 'लिया', 'गया।', 'उनकी', 'गिरफ़्तारी', 'के', 'बाद', 'असहयोग', 'आन्दोलन', 'शुरू', 'हुआ', 'और', 'पूरे', 'भारत', 'में', 'लोगों', 'ने', 'स्कूल,', 'कॉलेज', 'व', 'दफ़्तरों', 'का', 'बायकॉट', 'किया।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: साथियों\n", + "chapters_utils.py word_cleaned: साथियों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: समुद्र\n", + "chapters_utils.py word_cleaned: समुद्र\n", + "chapters_utils.py word: तट\n", + "chapters_utils.py word_cleaned: तट\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: उठाया\n", + "chapters_utils.py word_cleaned: उठाया\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: गिरफ़्तार\n", + "chapters_utils.py word_cleaned: गिरफ़्तार\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: लिया\n", + "chapters_utils.py word_cleaned: लिया\n", + "chapters_utils.py word: गया।\n", + "chapters_utils.py word_cleaned: गया।\n", + "chapters_utils.py word: उनकी\n", + "chapters_utils.py word_cleaned: उनकी\n", + "chapters_utils.py word: गिरफ़्तारी\n", + "chapters_utils.py word_cleaned: गिरफ़्तारी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: असहयोग\n", + "chapters_utils.py word_cleaned: असहयोग\n", + "chapters_utils.py word: आन्दोलन\n", + "chapters_utils.py word_cleaned: आन्दोलन\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: हुआ\n", + "chapters_utils.py word_cleaned: हुआ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लोगों\n", + "chapters_utils.py word_cleaned: लोगों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: स्कूल,\n", + "chapters_utils.py word_cleaned: स्कूल\n", + "chapters_utils.py word: कॉलेज\n", + "chapters_utils.py word_cleaned: कॉलेज\n", + "chapters_utils.py word: व\n", + "chapters_utils.py word_cleaned: व\n", + "chapters_utils.py word: दफ़्तरों\n", + "chapters_utils.py word_cleaned: दफ़्तरों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: बायकॉट\n", + "chapters_utils.py word_cleaned: बायकॉट\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py paragraph: {'originalText': '3. इस यात्रा में गाँधी जी के साथ 78 स्वेच्छा कर्मियों (वालंटियरों) ने भाग लिया। उन्होंने 385 किलोमीटर की दूरी तय की।', 'sortOrder': 3, 'id': 1422}\n", + "chapters_utils.py words: ['3.', 'इस', 'यात्रा', 'में', 'गाँधी', 'जी', 'के', 'साथ', '78', 'स्वेच्छा', 'कर्मियों', '(वालंटियरों)', 'ने', 'भाग', 'लिया।', 'उन्होंने', '385', 'किलोमीटर', 'की', 'दूरी', 'तय', 'की।']\n", + "chapters_utils.py word: 3.\n", + "chapters_utils.py word_cleaned: 3\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: 78\n", + "chapters_utils.py word_cleaned: 78\n", + "chapters_utils.py word: स्वेच्छा\n", + "chapters_utils.py word_cleaned: स्वेच्छा\n", + "chapters_utils.py word: कर्मियों\n", + "chapters_utils.py word_cleaned: कर्मियों\n", + "chapters_utils.py word: (वालंटियरों)\n", + "chapters_utils.py word_cleaned: वालंटियरों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: भाग\n", + "chapters_utils.py word_cleaned: भाग\n", + "chapters_utils.py word: लिया।\n", + "chapters_utils.py word_cleaned: लिया।\n", + "chapters_utils.py word: उन्होंने\n", + "chapters_utils.py word_cleaned: उन्होंने\n", + "chapters_utils.py word: 385\n", + "chapters_utils.py word_cleaned: 385\n", + "chapters_utils.py word: किलोमीटर\n", + "chapters_utils.py word_cleaned: किलोमीटर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: दूरी\n", + "chapters_utils.py word_cleaned: दूरी\n", + "chapters_utils.py word: तय\n", + "chapters_utils.py word_cleaned: तय\n", + "chapters_utils.py word: की।\n", + "chapters_utils.py word_cleaned: की।\n", + "chapters_utils.py paragraph: {'originalText': '4. यात्रा 12 मार्च को शुरू होकर 5 अप्रैल, 1930 को समाप्त हुई। सबसे कम उम्र का यात्री 16 वर्ष का था।', 'sortOrder': 4, 'id': 1423}\n", + "chapters_utils.py words: ['4.', 'यात्रा', '12', 'मार्च', 'को', 'शुरू', 'होकर', '5', 'अप्रैल,', '1930', 'को', 'समाप्त', 'हुई।', 'सबसे', 'कम', 'उम्र', 'का', 'यात्री', '16', 'वर्ष', 'का', 'था।']\n", + "chapters_utils.py word: 4.\n", + "chapters_utils.py word_cleaned: 4\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: 12\n", + "chapters_utils.py word_cleaned: 12\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: 5\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: अप्रैल,\n", + "chapters_utils.py word_cleaned: अप्रैल\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: समाप्त\n", + "chapters_utils.py word_cleaned: समाप्त\n", + "chapters_utils.py word: हुई।\n", + "chapters_utils.py word_cleaned: हुई।\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: कम\n", + "chapters_utils.py word_cleaned: कम\n", + "chapters_utils.py word: उम्र\n", + "chapters_utils.py word_cleaned: उम्र\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: यात्री\n", + "chapters_utils.py word_cleaned: यात्री\n", + "chapters_utils.py word: 16\n", + "chapters_utils.py word_cleaned: 16\n", + "chapters_utils.py word: वर्ष\n", + "chapters_utils.py word_cleaned: वर्ष\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '5. सन 2005 में दाँडी यात्रा की 75 वीं जयंती थी।', 'sortOrder': 5, 'id': 1424}\n", + "chapters_utils.py words: ['5.', 'सन', '2005', 'में', 'दाँडी', 'यात्रा', 'की', '75', 'वीं', 'जयंती', 'थी।']\n", + "chapters_utils.py word: 5.\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: सन\n", + "chapters_utils.py word_cleaned: सन\n", + "chapters_utils.py word: 2005\n", + "chapters_utils.py word_cleaned: 2005\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: 75\n", + "chapters_utils.py word_cleaned: 75\n", + "chapters_utils.py word: वीं\n", + "chapters_utils.py word_cleaned: वीं\n", + "chapters_utils.py word: जयंती\n", + "chapters_utils.py word_cleaned: जयंती\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 15\n", + "chapters_utils.py word_count: 1507\n", + "chapters_utils.py total_word_length: 5617\n", + "step1_2_preprocess_data.py index: 53\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 14\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: अनुमान\n", + "chapters_utils.py word_cleaned: अनुमान\n", + "chapters_utils.py word: लगा\n", + "chapters_utils.py word_cleaned: लगा\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: हमारे\n", + "chapters_utils.py word_cleaned: हमारे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: पक्षी!\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गैंडा\n", + "chapters_utils.py word_cleaned: गैंडा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: पिस्सू\n", + "chapters_utils.py word_cleaned: पिस्सू\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: घिरा\n", + "chapters_utils.py word_cleaned: घिरा\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: पिस्सूओं\n", + "chapters_utils.py word_cleaned: पिस्सूओं\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: खा\n", + "chapters_utils.py word_cleaned: खा\n", + "chapters_utils.py word: जाती\n", + "chapters_utils.py word_cleaned: जाती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: मगरमच्छ\n", + "chapters_utils.py word_cleaned: मगरमच्छ\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ब्रश\n", + "chapters_utils.py word_cleaned: ब्रश\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: चोंच\n", + "chapters_utils.py word_cleaned: चोंच\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: साफ\n", + "chapters_utils.py word_cleaned: साफ\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: देती\n", + "chapters_utils.py word_cleaned: देती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जिराफ़\n", + "chapters_utils.py word_cleaned: जिराफ़\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पहुंच\n", + "chapters_utils.py word_cleaned: पहुंच\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: सकती\n", + "chapters_utils.py word_cleaned: सकती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: ज़ेब्रा\n", + "chapters_utils.py word_cleaned: ज़ेब्रा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: वस्तुएं\n", + "chapters_utils.py word_cleaned: वस्तुएं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बड़ी-बड़ी\n", + "chapters_utils.py word_cleaned: बड़ीबड़ी\n", + "chapters_utils.py word: आँखें\n", + "chapters_utils.py word_cleaned: आँखें\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रहा\n", + "chapters_utils.py word_cleaned: रहा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अलग-अलग\n", + "chapters_utils.py word_cleaned: अलगअलग\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है...\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: गाते\n", + "chapters_utils.py word_cleaned: गाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: बनोगे?\n", + "chapters_utils.py word_cleaned: बनोगे\n", + "chapters_utils.py word_count: 140\n", + "chapters_utils.py total_word_length: 541\n", + "step1_2_preprocess_data.py index: 54\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 11\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py word: लटकती\n", + "chapters_utils.py word_cleaned: लटकती\n", + "chapters_utils.py word: जड़ों\n", + "chapters_utils.py word_cleaned: जड़ों\n", + "chapters_utils.py word: वाला\n", + "chapters_utils.py word_cleaned: वाला\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: बरगद\n", + "chapters_utils.py word_cleaned: बरगद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बड़ा\n", + "chapters_utils.py word_cleaned: बड़ा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: घेरे\n", + "chapters_utils.py word_cleaned: घेरे\n", + "chapters_utils.py word: शान\n", + "chapters_utils.py word_cleaned: शान\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py word: दो\n", + "chapters_utils.py word_cleaned: दो\n", + "chapters_utils.py word: पलाश\n", + "chapters_utils.py word_cleaned: पलाश\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बगिया\n", + "chapters_utils.py word_cleaned: बगिया\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लाये\n", + "chapters_utils.py word_cleaned: लाये\n", + "chapters_utils.py word: बहार,\n", + "chapters_utils.py word_cleaned: बहार\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py word: मधुमक्खियों\n", + "chapters_utils.py word_cleaned: मधुमक्खियों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बाँटें\n", + "chapters_utils.py word_cleaned: बाँटें\n", + "chapters_utils.py word: मकरंद\n", + "chapters_utils.py word_cleaned: मकरंद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपहार।\n", + "chapters_utils.py word_cleaned: उपहार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तीन\n", + "chapters_utils.py word_cleaned: तीन\n", + "chapters_utils.py word: पीपल\n", + "chapters_utils.py word_cleaned: पीपल\n", + "chapters_utils.py word: गाँव\n", + "chapters_utils.py word_cleaned: गाँव\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: डगर\n", + "chapters_utils.py word_cleaned: डगर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py word: तोते\n", + "chapters_utils.py word_cleaned: तोते\n", + "chapters_utils.py word: खाएँ\n", + "chapters_utils.py word_cleaned: खाएँ\n", + "chapters_utils.py word: कुतर\n", + "chapters_utils.py word_cleaned: कुतर\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नर्म\n", + "chapters_utils.py word_cleaned: नर्म\n", + "chapters_utils.py word: गूलर।\n", + "chapters_utils.py word_cleaned: गूलर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: खेतों\n", + "chapters_utils.py word_cleaned: खेतों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उस\n", + "chapters_utils.py word_cleaned: उस\n", + "chapters_utils.py word: पार\n", + "chapters_utils.py word_cleaned: पार\n", + "chapters_utils.py word: लहराते\n", + "chapters_utils.py word_cleaned: लहराते\n", + "chapters_utils.py word: नीम\n", + "chapters_utils.py word_cleaned: नीम\n", + "chapters_utils.py word: चार,\n", + "chapters_utils.py word_cleaned: चार\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py word: निबौरी\n", + "chapters_utils.py word_cleaned: निबौरी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कीड़ों\n", + "chapters_utils.py word_cleaned: कीड़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: भगाने\n", + "chapters_utils.py word_cleaned: भगाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपचार।\n", + "chapters_utils.py word_cleaned: उपचार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py word: बलखाती\n", + "chapters_utils.py word_cleaned: बलखाती\n", + "chapters_utils.py word: धारा\n", + "chapters_utils.py word_cleaned: धारा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पास\n", + "chapters_utils.py word_cleaned: पास\n", + "chapters_utils.py word: जमे\n", + "chapters_utils.py word_cleaned: जमे\n", + "chapters_utils.py word: जामुन\n", + "chapters_utils.py word_cleaned: जामुन\n", + "chapters_utils.py word: पाँच,\n", + "chapters_utils.py word_cleaned: पाँच\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py word: गिरे-कुचले\n", + "chapters_utils.py word_cleaned: गिरेकुचले\n", + "chapters_utils.py word: फलों\n", + "chapters_utils.py word_cleaned: फलों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: दिया\n", + "chapters_utils.py word_cleaned: दिया\n", + "chapters_utils.py word: बैंगनी\n", + "chapters_utils.py word_cleaned: बैंगनी\n", + "chapters_utils.py word: रंग\n", + "chapters_utils.py word_cleaned: रंग\n", + "chapters_utils.py word: पसार।\n", + "chapters_utils.py word_cleaned: पसार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py word: पारिजात\n", + "chapters_utils.py word_cleaned: पारिजात\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: छ:\n", + "chapters_utils.py word_cleaned: छ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: मेंड़\n", + "chapters_utils.py word_cleaned: मेंड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खड़े,\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py word: गुलाबी\n", + "chapters_utils.py word_cleaned: गुलाबी\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उमड़े\n", + "chapters_utils.py word_cleaned: उमड़े\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: छोटे-बड़े।\n", + "chapters_utils.py word_cleaned: छोटेबड़े।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: सात\n", + "chapters_utils.py word_cleaned: सात\n", + "chapters_utils.py word: लंबे\n", + "chapters_utils.py word_cleaned: लंबे\n", + "chapters_utils.py word: देवदार,\n", + "chapters_utils.py word_cleaned: देवदार\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py word: तारपीन\n", + "chapters_utils.py word_cleaned: तारपीन\n", + "chapters_utils.py word: निकले,\n", + "chapters_utils.py word_cleaned: निकले\n", + "chapters_utils.py word: इसकी\n", + "chapters_utils.py word_cleaned: इसकी\n", + "chapters_utils.py word: काठ\n", + "chapters_utils.py word_cleaned: काठ\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: काठी\n", + "chapters_utils.py word_cleaned: काठी\n", + "chapters_utils.py word: बने।\n", + "chapters_utils.py word_cleaned: बने।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py word: इमली\n", + "chapters_utils.py word_cleaned: इमली\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: आठ\n", + "chapters_utils.py word_cleaned: आठ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: कस्बे\n", + "chapters_utils.py word_cleaned: कस्बे\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किनारे,\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py word: पक\n", + "chapters_utils.py word_cleaned: पक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: गिरी\n", + "chapters_utils.py word_cleaned: गिरी\n", + "chapters_utils.py word: फलियाँ\n", + "chapters_utils.py word_cleaned: फलियाँ\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: खाये,\n", + "chapters_utils.py word_cleaned: खाये\n", + "chapters_utils.py word: मारे\n", + "chapters_utils.py word_cleaned: मारे\n", + "chapters_utils.py word: चटखारे।\n", + "chapters_utils.py word_cleaned: चटखारे।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: जंगल\n", + "chapters_utils.py word_cleaned: जंगल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बीच\n", + "chapters_utils.py word_cleaned: बीच\n", + "chapters_utils.py word: नौ\n", + "chapters_utils.py word_cleaned: नौ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: साल\n", + "chapters_utils.py word_cleaned: साल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तने,\n", + "chapters_utils.py word_cleaned: तने\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py word: दोने-पत्तल\n", + "chapters_utils.py word_cleaned: दोनेपत्तल\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: चमड़े\n", + "chapters_utils.py word_cleaned: चमड़े\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मोटे\n", + "chapters_utils.py word_cleaned: मोटे\n", + "chapters_utils.py word: पत्तों\n", + "chapters_utils.py word_cleaned: पत्तों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बनें।\n", + "chapters_utils.py word_cleaned: बनें।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py word: तपती\n", + "chapters_utils.py word_cleaned: तपती\n", + "chapters_utils.py word: मरुभूमि\n", + "chapters_utils.py word_cleaned: मरुभूमि\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खेजड़ी\n", + "chapters_utils.py word_cleaned: खेजड़ी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दस\n", + "chapters_utils.py word_cleaned: दस\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: पाकर,\n", + "chapters_utils.py word_cleaned: पाकर\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py word: ऊँट\n", + "chapters_utils.py word_cleaned: ऊँट\n", + "chapters_utils.py word: धन्य\n", + "chapters_utils.py word_cleaned: धन्य\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाएँ\n", + "chapters_utils.py word_cleaned: जाएँ\n", + "chapters_utils.py word: इनकी\n", + "chapters_utils.py word_cleaned: इनकी\n", + "chapters_utils.py word: कोंपल\n", + "chapters_utils.py word_cleaned: कोंपल\n", + "chapters_utils.py word: खाकर।\n", + "chapters_utils.py word_cleaned: खाकर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: प्राणवायु\n", + "chapters_utils.py word_cleaned: प्राणवायु\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: आये\n", + "chapters_utils.py word_cleaned: आये\n", + "chapters_utils.py word: साँसों\n", + "chapters_utils.py word_cleaned: साँसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: काम,\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py word: मिट्टी\n", + "chapters_utils.py word_cleaned: मिट्टी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: उपजाऊ\n", + "chapters_utils.py word_cleaned: उपजाऊ\n", + "chapters_utils.py word: पर्त\n", + "chapters_utils.py word_cleaned: पर्त\n", + "chapters_utils.py word: बचाते,\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: पत्ते\n", + "chapters_utils.py word_cleaned: पत्ते\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: भोजन\n", + "chapters_utils.py word_cleaned: भोजन\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: काम।\n", + "chapters_utils.py word_cleaned: काम।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पेड़,\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py word: बचाते\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कुदरत\n", + "chapters_utils.py word_cleaned: कुदरत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मार\n", + "chapters_utils.py word_cleaned: मार\n", + "chapters_utils.py word: से,\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: इनका\n", + "chapters_utils.py word_cleaned: इनका\n", + "chapters_utils.py word: योगदान।\n", + "chapters_utils.py word_cleaned: योगदान।\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं,\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: अहमियत\n", + "chapters_utils.py word_cleaned: अहमियत\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: निराली\n", + "chapters_utils.py word_cleaned: निराली\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word_count: 211\n", + "chapters_utils.py total_word_length: 772\n", + "step1_2_preprocess_data.py index: 55\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 12\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: दिन,\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: विज्ञान\n", + "chapters_utils.py word_cleaned: विज्ञान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खिड़की\n", + "chapters_utils.py word_cleaned: खिड़की\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाहर\n", + "chapters_utils.py word_cleaned: बाहर\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: आकाश\n", + "chapters_utils.py word_cleaned: आकाश\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फैलाए\n", + "chapters_utils.py word_cleaned: फैलाए\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: कितनी\n", + "chapters_utils.py word_cleaned: कितनी\n", + "chapters_utils.py word: खुश\n", + "chapters_utils.py word_cleaned: खुश\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"सुनो!\n", + "chapters_utils.py word_cleaned: सुनो\n", + "chapters_utils.py word: तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: बोर्ड\n", + "chapters_utils.py word_cleaned: बोर्ड\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: ध्यान\n", + "chapters_utils.py word_cleaned: ध्यान\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देना\n", + "chapters_utils.py word_cleaned: देना\n", + "chapters_utils.py word: चाहिए?\"\n", + "chapters_utils.py word_cleaned: चाहिए\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पढ़ा\n", + "chapters_utils.py word_cleaned: पढ़ा\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: नई\n", + "chapters_utils.py word_cleaned: नई\n", + "chapters_utils.py word: अध्य्यापिका\n", + "chapters_utils.py word_cleaned: अध्य्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: हड़बड़ा\n", + "chapters_utils.py word_cleaned: हड़बड़ा\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खड़ी\n", + "chapters_utils.py word_cleaned: खड़ी\n", + "chapters_utils.py word: हुई\n", + "chapters_utils.py word_cleaned: हुई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बोली,\n", + "chapters_utils.py word_cleaned: बोली\n", + "chapters_utils.py word: \"सॉरी\n", + "chapters_utils.py word_cleaned: सॉरी\n", + "chapters_utils.py word: मैडम!\"\n", + "chapters_utils.py word_cleaned: मैडम\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: काश!\n", + "chapters_utils.py word_cleaned: काश\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह...\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py word: \"तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\"\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py word: 'सरला'\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"अरे\n", + "chapters_utils.py word_cleaned: अरे\n", + "chapters_utils.py word: वाह!\n", + "chapters_utils.py word_cleaned: वाह\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: पहली\n", + "chapters_utils.py word_cleaned: पहली\n", + "chapters_utils.py word: महिला\n", + "chapters_utils.py word_cleaned: महिला\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: (पायलॉट)\n", + "chapters_utils.py word_cleaned: पायलॉट\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: था?\n", + "chapters_utils.py word_cleaned: था\n", + "chapters_utils.py word: मेरा\n", + "chapters_utils.py word_cleaned: मेरा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: हंसा\n", + "chapters_utils.py word_cleaned: हंसा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मतलब\n", + "chapters_utils.py word_cleaned: मतलब\n", + "chapters_utils.py word: 'हंस'।\n", + "chapters_utils.py word_cleaned: हंस।\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हंस\n", + "chapters_utils.py word_cleaned: हंस\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाले\n", + "chapters_utils.py word_cleaned: वाले\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: अध्यापिका\n", + "chapters_utils.py word_cleaned: अध्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py word: \"सरला!\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: पुस्तकालय\n", + "chapters_utils.py word_cleaned: पुस्तकालय\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बिताना\n", + "chapters_utils.py word_cleaned: बिताना\n", + "chapters_utils.py word: चाहिए।\n", + "chapters_utils.py word_cleaned: चाहिए।\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: -सी\n", + "chapters_utils.py word_cleaned: सी\n", + "chapters_utils.py word: किताबें\n", + "chapters_utils.py word_cleaned: किताबें\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यंत्रों\n", + "chapters_utils.py word_cleaned: यंत्रों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: भी,\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़।\n", + "chapters_utils.py word_cleaned: जहाज़।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: दिनों\n", + "chapters_utils.py word_cleaned: दिनों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: पशु-पक्षियों\n", + "chapters_utils.py word_cleaned: पशुपक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: जान\n", + "chapters_utils.py word_cleaned: जान\n", + "chapters_utils.py word: गई\n", + "chapters_utils.py word_cleaned: गई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: क्यों\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते!\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: सीखा\n", + "chapters_utils.py word_cleaned: सीखा\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मानव\n", + "chapters_utils.py word_cleaned: मानव\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: मनुष्य\n", + "chapters_utils.py word_cleaned: मनुष्य\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: आविष्कार,\n", + "chapters_utils.py word_cleaned: आविष्कार\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बैठकर\n", + "chapters_utils.py word_cleaned: बैठकर\n", + "chapters_utils.py word: विश्व\n", + "chapters_utils.py word_cleaned: विश्व\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: नगर\n", + "chapters_utils.py word_cleaned: नगर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: मज़ा\n", + "chapters_utils.py word_cleaned: मज़ा\n", + "chapters_utils.py word: ले\n", + "chapters_utils.py word_cleaned: ले\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जीव\n", + "chapters_utils.py word_cleaned: जीव\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिन्हें\n", + "chapters_utils.py word_cleaned: जिन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बाहरी\n", + "chapters_utils.py word_cleaned: बाहरी\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती।\n", + "chapters_utils.py word_cleaned: होती।\n", + "chapters_utils.py word: आमतौर\n", + "chapters_utils.py word_cleaned: आमतौर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: हल्के\n", + "chapters_utils.py word_cleaned: हल्के\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: इसलिए\n", + "chapters_utils.py word_cleaned: इसलिए\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: भारी\n", + "chapters_utils.py word_cleaned: भारी\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: दोनों\n", + "chapters_utils.py word_cleaned: दोनों\n", + "chapters_utils.py word: किनारे\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बने\n", + "chapters_utils.py word_cleaned: बने\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: जहाजों\n", + "chapters_utils.py word_cleaned: जहाजों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बनावट\n", + "chapters_utils.py word_cleaned: बनावट\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: सपाट\n", + "chapters_utils.py word_cleaned: सपाट\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मुड़े\n", + "chapters_utils.py word_cleaned: मुड़े\n", + "chapters_utils.py word: हुए,\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: हमने\n", + "chapters_utils.py word_cleaned: हमने\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हुए\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: कभी\n", + "chapters_utils.py word_cleaned: कभी\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देखा!\n", + "chapters_utils.py word_cleaned: देखा\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: ताकि\n", + "chapters_utils.py word_cleaned: ताकि\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: धकेलने\n", + "chapters_utils.py word_cleaned: धकेलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपयोग\n", + "chapters_utils.py word_cleaned: उपयोग\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकें।\n", + "chapters_utils.py word_cleaned: सकें।\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: लगी\n", + "chapters_utils.py word_cleaned: लगी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: सहारे\n", + "chapters_utils.py word_cleaned: सहारे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: बनाता\n", + "chapters_utils.py word_cleaned: बनाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: मज़बूत\n", + "chapters_utils.py word_cleaned: मज़बूत\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: (तेज़)\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: काम\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: लगाते\n", + "chapters_utils.py word_cleaned: लगाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: सीखते\n", + "chapters_utils.py word_cleaned: सीखते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कैसे\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: उड़ा\n", + "chapters_utils.py word_cleaned: उड़ा\n", + "chapters_utils.py word: जाय,वैसे\n", + "chapters_utils.py word_cleaned: जायवैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: धकेलती\n", + "chapters_utils.py word_cleaned: धकेलती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ने\n", + "chapters_utils.py word_cleaned: बढ़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: ईंधन\n", + "chapters_utils.py word_cleaned: ईंधन\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: जलाती\n", + "chapters_utils.py word_cleaned: जलाती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: गर्म\n", + "chapters_utils.py word_cleaned: गर्म\n", + "chapters_utils.py word: गैसें\n", + "chapters_utils.py word_cleaned: गैसें\n", + "chapters_utils.py word: छोड़ती\n", + "chapters_utils.py word_cleaned: छोड़ती\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पीछे\n", + "chapters_utils.py word_cleaned: पीछे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: बनता\n", + "chapters_utils.py word_cleaned: बनता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उससे\n", + "chapters_utils.py word_cleaned: उससे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ता\n", + "chapters_utils.py word_cleaned: बढ़ता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: कार\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: एवं\n", + "chapters_utils.py word_cleaned: एवं\n", + "chapters_utils.py word: अन्य\n", + "chapters_utils.py word_cleaned: अन्य\n", + "chapters_utils.py word: वाहन\n", + "chapters_utils.py word_cleaned: वाहन\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: चलते\n", + "chapters_utils.py word_cleaned: चलते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: मगर\n", + "chapters_utils.py word_cleaned: मगर\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकते।\n", + "chapters_utils.py word_cleaned: सकते।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: बहती\n", + "chapters_utils.py word_cleaned: बहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: इन्हीं\n", + "chapters_utils.py word_cleaned: इन्हीं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठते\n", + "chapters_utils.py word_cleaned: उठते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: पूँछ\n", + "chapters_utils.py word_cleaned: पूँछ\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: बिलकुल\n", + "chapters_utils.py word_cleaned: बिलकुल\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह,\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: टिकने\n", + "chapters_utils.py word_cleaned: टिकने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: दिशा\n", + "chapters_utils.py word_cleaned: दिशा\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़कों\n", + "chapters_utils.py word_cleaned: सड़कों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: 'रनवे'\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: कहा\n", + "chapters_utils.py word_cleaned: कहा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ना\n", + "chapters_utils.py word_cleaned: दौड़ना\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठने\n", + "chapters_utils.py word_cleaned: उठने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py word: अधिकांश\n", + "chapters_utils.py word_cleaned: अधिकांश\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़ी\n", + "chapters_utils.py word_cleaned: तेज़ी\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ते\n", + "chapters_utils.py word_cleaned: दौड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डा\n", + "chapters_utils.py word_cleaned: अड्डा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महत्वपूर्ण\n", + "chapters_utils.py word_cleaned: महत्वपूर्ण\n", + "chapters_utils.py word: हिस्सा\n", + "chapters_utils.py word_cleaned: हिस्सा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: बढ़ाने\n", + "chapters_utils.py word_cleaned: बढ़ाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: पर्याप्त\n", + "chapters_utils.py word_cleaned: पर्याप्त\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: देता\n", + "chapters_utils.py word_cleaned: देता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंत\n", + "chapters_utils.py word_cleaned: अंत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: कहाँ\n", + "chapters_utils.py word_cleaned: कहाँ\n", + "chapters_utils.py word: जाना\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्योंकि\n", + "chapters_utils.py word_cleaned: क्योंकि\n", + "chapters_utils.py word: विमानचालक\n", + "chapters_utils.py word_cleaned: विमानचालक\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: चलाते\n", + "chapters_utils.py word_cleaned: चलाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अंदर,\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह,\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जिसे\n", + "chapters_utils.py word_cleaned: जिसे\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: स्थल\n", + "chapters_utils.py word_cleaned: स्थल\n", + "chapters_utils.py word: (कॉकपिट)\n", + "chapters_utils.py word_cleaned: कॉकपिट\n", + "chapters_utils.py word: कहते\n", + "chapters_utils.py word_cleaned: कहते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: नियंत्रित\n", + "chapters_utils.py word_cleaned: नियंत्रित\n", + "chapters_utils.py word: (कंट्रोल)\n", + "chapters_utils.py word_cleaned: कंट्रोल\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: सटीक\n", + "chapters_utils.py word_cleaned: सटीक\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: आधुनिक\n", + "chapters_utils.py word_cleaned: आधुनिक\n", + "chapters_utils.py word: डिवाइसों\n", + "chapters_utils.py word_cleaned: डिवाइसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डों\n", + "chapters_utils.py word_cleaned: अड्डों\n", + "chapters_utils.py word: (एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जहाँ\n", + "chapters_utils.py word_cleaned: जहाँ\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरते\n", + "chapters_utils.py word_cleaned: उतरते\n", + "chapters_utils.py word: हैं)\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: संपर्क\n", + "chapters_utils.py word_cleaned: संपर्क\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: हमारी\n", + "chapters_utils.py word_cleaned: हमारी\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सिग्नल\n", + "chapters_utils.py word_cleaned: सिग्नल\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पुलिस\n", + "chapters_utils.py word_cleaned: पुलिस\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: वैसे\n", + "chapters_utils.py word_cleaned: वैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वायु\n", + "chapters_utils.py word_cleaned: वायु\n", + "chapters_utils.py word: यातायात\n", + "chapters_utils.py word_cleaned: यातायात\n", + "chapters_utils.py word: नियंत्रक\n", + "chapters_utils.py word_cleaned: नियंत्रक\n", + "chapters_utils.py word: (एयर\n", + "chapters_utils.py word_cleaned: एयर\n", + "chapters_utils.py word: ट्रैफिक\n", + "chapters_utils.py word_cleaned: ट्रैफिक\n", + "chapters_utils.py word: कंट्रोलर)\n", + "chapters_utils.py word_cleaned: कंट्रोलर\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बताते\n", + "chapters_utils.py word_cleaned: बताते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: किस\n", + "chapters_utils.py word_cleaned: किस\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरनी\n", + "chapters_utils.py word_cleaned: भरनी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरना\n", + "chapters_utils.py word_cleaned: भरना\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहेगा।\n", + "chapters_utils.py word_cleaned: रहेगा।\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: वास्तव\n", + "chapters_utils.py word_cleaned: वास्तव\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: विशाल\n", + "chapters_utils.py word_cleaned: विशाल\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: सिर्फ़\n", + "chapters_utils.py word_cleaned: सिर्फ़\n", + "chapters_utils.py word: इसका\n", + "chapters_utils.py word_cleaned: इसका\n", + "chapters_utils.py word: आकार\n", + "chapters_utils.py word_cleaned: आकार\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: बल्कि\n", + "chapters_utils.py word_cleaned: बल्कि\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हालाँकि\n", + "chapters_utils.py word_cleaned: हालाँकि\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: बनना\n", + "chapters_utils.py word_cleaned: बनना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ाना\n", + "chapters_utils.py word_cleaned: उड़ाना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py word: ...\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py word: चलो\n", + "chapters_utils.py word_cleaned: चलो\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरें!\n", + "chapters_utils.py word_cleaned: भरें\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: दोस्तों\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मज़े\n", + "chapters_utils.py word_cleaned: मज़े\n", + "chapters_utils.py word: लें\n", + "chapters_utils.py word_cleaned: लें\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: देखो\n", + "chapters_utils.py word_cleaned: देखो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: किसका\n", + "chapters_utils.py word_cleaned: किसका\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: ज़रा\n", + "chapters_utils.py word_cleaned: ज़रा\n", + "chapters_utils.py word: सोचो,\n", + "chapters_utils.py word_cleaned: सोचो\n", + "chapters_utils.py word: क्यों?\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कमाल\n", + "chapters_utils.py word_cleaned: कमाल\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: तरीक़े\n", + "chapters_utils.py word_cleaned: तरीक़े\n", + "chapters_utils.py word: का?\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: ग़ौर\n", + "chapters_utils.py word_cleaned: ग़ौर\n", + "chapters_utils.py word: करो,\n", + "chapters_utils.py word_cleaned: करो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: छोड़ा\n", + "chapters_utils.py word_cleaned: छोड़ा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: छोड़ने\n", + "chapters_utils.py word_cleaned: छोड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: फूँक\n", + "chapters_utils.py word_cleaned: फूँक\n", + "chapters_utils.py word: मारते\n", + "chapters_utils.py word_cleaned: मारते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नीचे,\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: तब\n", + "chapters_utils.py word_cleaned: तब\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: अंतर\n", + "chapters_utils.py word_cleaned: अंतर\n", + "chapters_utils.py word: दिखता\n", + "chapters_utils.py word_cleaned: दिखता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: 'फ़्लाइ\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: डोंट\n", + "chapters_utils.py word_cleaned: डोंट\n", + "chapters_utils.py word: फ़्लाइ'\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: गेम:\n", + "chapters_utils.py word_cleaned: गेम\n", + "chapters_utils.py word: मित्रों\n", + "chapters_utils.py word_cleaned: मित्रों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समूह\n", + "chapters_utils.py word_cleaned: समूह\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: -दूसरे\n", + "chapters_utils.py word_cleaned: दूसरे\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बिना\n", + "chapters_utils.py word_cleaned: बिना\n", + "chapters_utils.py word: छुए\n", + "chapters_utils.py word_cleaned: छुए\n", + "chapters_utils.py word: कमरे\n", + "chapters_utils.py word_cleaned: कमरे\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: चारों\n", + "chapters_utils.py word_cleaned: चारों\n", + "chapters_utils.py word: तरफ़\n", + "chapters_utils.py word_cleaned: तरफ़\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़ो।\n", + "chapters_utils.py word_cleaned: उड़ो।\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: (चोर)\n", + "chapters_utils.py word_cleaned: चोर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: कोने\n", + "chapters_utils.py word_cleaned: कोने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़ों\n", + "chapters_utils.py word_cleaned: चीज़ों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: कहेगा।\n", + "chapters_utils.py word_cleaned: कहेगा।\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़\n", + "chapters_utils.py word_cleaned: चीज़\n", + "chapters_utils.py word: (जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेज़/टेबुल)\n", + "chapters_utils.py word_cleaned: मेज़टेबुल\n", + "chapters_utils.py word: कहे\n", + "chapters_utils.py word_cleaned: कहे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: (बैठ\n", + "chapters_utils.py word_cleaned: बैठ\n", + "chapters_utils.py word: जाना)\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: ग़लती\n", + "chapters_utils.py word_cleaned: ग़लती\n", + "chapters_utils.py word: करेगा,\n", + "chapters_utils.py word_cleaned: करेगा\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: अगला\n", + "chapters_utils.py word_cleaned: अगला\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word_count: 965\n", + "chapters_utils.py total_word_length: 3451\n", + "step1_2_preprocess_data.py index: 56\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 4\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py word: नन्हा\n", + "chapters_utils.py word_cleaned: नन्हा\n", + "chapters_utils.py word: हाथी\n", + "chapters_utils.py word_cleaned: हाथी\n", + "chapters_utils.py word: भाई\n", + "chapters_utils.py word_cleaned: भाई\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: सा\n", + "chapters_utils.py word_cleaned: सा\n", + "chapters_utils.py word: मोटा।\n", + "chapters_utils.py word_cleaned: मोटा।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py word: कान\n", + "chapters_utils.py word_cleaned: कान\n", + "chapters_utils.py word: कैसे?\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: पंखे\n", + "chapters_utils.py word_cleaned: पंखे\n", + "chapters_utils.py word: जैसे!\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: लटकी\n", + "chapters_utils.py word_cleaned: लटकी\n", + "chapters_utils.py word: लम्बी\n", + "chapters_utils.py word_cleaned: लम्बी\n", + "chapters_utils.py word: सूंड़।\n", + "chapters_utils.py word_cleaned: सूंड़।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py word: दुम\n", + "chapters_utils.py word_cleaned: दुम\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सिरा\n", + "chapters_utils.py word_cleaned: सिरा\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कितना\n", + "chapters_utils.py word_cleaned: कितना\n", + "chapters_utils.py word: छोटा!\n", + "chapters_utils.py word_cleaned: छोटा\n", + "chapters_utils.py word_count: 20\n", + "chapters_utils.py total_word_length: 77\n", + "step1_2_preprocess_data.py index: 57\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 8\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: गोलू\n", + "chapters_utils.py word_cleaned: गोलू\n", + "chapters_utils.py word: गोल‍\n", + "chapters_utils.py word_cleaned: गोल‍\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py word: सारे\n", + "chapters_utils.py word_cleaned: सारे\n", + "chapters_utils.py word: लोग\n", + "chapters_utils.py word_cleaned: लोग\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: ढूंढ\n", + "chapters_utils.py word_cleaned: ढूंढ\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो।\n", + "chapters_utils.py word_cleaned: हो।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py word: सूरज\n", + "chapters_utils.py word_cleaned: सूरज\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अग‍र\n", + "chapters_utils.py word_cleaned: अग‍र\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: आधा\n", + "chapters_utils.py word_cleaned: आधा\n", + "chapters_utils.py word: अम्ब्रेला\n", + "chapters_utils.py word_cleaned: अम्ब्रेला\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py word: रात\n", + "chapters_utils.py word_cleaned: रात\n", + "chapters_utils.py word: को,\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: चाँद\n", + "chapters_utils.py word_cleaned: चाँद\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: हँसकर\n", + "chapters_utils.py word_cleaned: हँसकर\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: उल्लू\n", + "chapters_utils.py word_cleaned: उल्लू\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: गोल\n", + "chapters_utils.py word_cleaned: गोल\n", + "chapters_utils.py word: आँखों\n", + "chapters_utils.py word_cleaned: आँखों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: तरबूज़,\n", + "chapters_utils.py word_cleaned: तरबूज़\n", + "chapters_utils.py word: सेब,\n", + "chapters_utils.py word_cleaned: सेब\n", + "chapters_utils.py word: नारंगी,\n", + "chapters_utils.py word_cleaned: नारंगी\n", + "chapters_utils.py word: टमाटर,\n", + "chapters_utils.py word_cleaned: टमाटर\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py word: यहां\n", + "chapters_utils.py word_cleaned: यहां\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: ​​कि\n", + "chapters_utils.py word_cleaned: ​​कि\n", + "chapters_utils.py word: छोटे\n", + "chapters_utils.py word_cleaned: छोटे\n", + "chapters_utils.py word: नींबू\n", + "chapters_utils.py word_cleaned: नींबू\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: लग\n", + "chapters_utils.py word_cleaned: लग\n", + "chapters_utils.py word: रहे\n", + "chapters_utils.py word_cleaned: रहे\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मिठाई\n", + "chapters_utils.py word_cleaned: मिठाई\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: रसगुल्ला,\n", + "chapters_utils.py word_cleaned: रसगुल्ला\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: गुलाबजामुन,\n", + "chapters_utils.py word_cleaned: गुलाबजामुन\n", + "chapters_utils.py word: प्यारे\n", + "chapters_utils.py word_cleaned: प्यारे\n", + "chapters_utils.py word: लड्डू,\n", + "chapters_utils.py word_cleaned: लड्डू\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: दिखने\n", + "chapters_utils.py word_cleaned: दिखने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: मिठाइयाँ।\n", + "chapters_utils.py word_cleaned: मिठाइयाँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py word: पशु\n", + "chapters_utils.py word_cleaned: पशु\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: सजाने\n", + "chapters_utils.py word_cleaned: सजाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: चाहते\n", + "chapters_utils.py word_cleaned: चाहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py word: चीता,\n", + "chapters_utils.py word_cleaned: चीता\n", + "chapters_utils.py word: चीटियल\n", + "chapters_utils.py word_cleaned: चीटियल\n", + "chapters_utils.py word: हिरण,\n", + "chapters_utils.py word_cleaned: हिरण\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: त्वचा\n", + "chapters_utils.py word_cleaned: त्वचा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सब\n", + "chapters_utils.py word_cleaned: सब\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: लेडीबर्ड्स\n", + "chapters_utils.py word_cleaned: लेडीबर्ड्स\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: तितलियों\n", + "chapters_utils.py word_cleaned: तितलियों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हूं।\n", + "chapters_utils.py word_cleaned: हूं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मैदान\n", + "chapters_utils.py word_cleaned: मैदान\n", + "chapters_utils.py word: में,\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गेंद\n", + "chapters_utils.py word_cleaned: गेंद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: रूप\n", + "chapters_utils.py word_cleaned: रूप\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हूं,\n", + "chapters_utils.py word_cleaned: हूं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: खेल\n", + "chapters_utils.py word_cleaned: खेल\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: ट्रक,\n", + "chapters_utils.py word_cleaned: ट्रक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़,\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: कार,\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: चक्र,\n", + "chapters_utils.py word_cleaned: चक्र\n", + "chapters_utils.py word: चल\n", + "chapters_utils.py word_cleaned: चल\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: पाएंगे...\n", + "chapters_utils.py word_cleaned: पाएंगे\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होता।\n", + "chapters_utils.py word_cleaned: होता।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जहां\n", + "chapters_utils.py word_cleaned: जहां\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py word: आपके\n", + "chapters_utils.py word_cleaned: आपके\n", + "chapters_utils.py word: रिपोर्ट\n", + "chapters_utils.py word_cleaned: रिपोर्ट\n", + "chapters_utils.py word: कार्ड\n", + "chapters_utils.py word_cleaned: कार्ड\n", + "chapters_utils.py word: पर!\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: क्षमा\n", + "chapters_utils.py word_cleaned: क्षमा\n", + "chapters_utils.py word: करें\n", + "chapters_utils.py word_cleaned: करें\n", + "chapters_utils.py word: दोस्तों!\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: ऐसा\n", + "chapters_utils.py word_cleaned: ऐसा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: दुखी\n", + "chapters_utils.py word_cleaned: दुखी\n", + "chapters_utils.py word: लगता\n", + "chapters_utils.py word_cleaned: लगता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: आपको\n", + "chapters_utils.py word_cleaned: आपको\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: कड़ी\n", + "chapters_utils.py word_cleaned: कड़ी\n", + "chapters_utils.py word: मेहनत\n", + "chapters_utils.py word_cleaned: मेहनत\n", + "chapters_utils.py word: करनी\n", + "chapters_utils.py word_cleaned: करनी\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word_count: 176\n", + "chapters_utils.py total_word_length: 656\n", + "step1_2_preprocess_data.py storybooks_dataframe (after extracting data from `chapters` column): \n", + " id title ... word_count avg_word_length\n", + "0 37 अद्भुत कीड़े ... 26 3.500000\n", + "1 1 अभी नहीं, अभी नहीं! ... 167 3.784431\n", + "2 36 अरे, यह सब कौन खा गया? ... 138 4.115942\n", + "3 59 अरे...नहीं! ... 129 4.100775\n", + "4 25 आओ, बीज बटोरें! ... 1596 3.704261\n", + "5 29 आज, मैं हूँ... ... 110 3.536364\n", + "6 63 आनंद ... 101 3.742574\n", + "7 2 आलू-मालू-कालू ... 123 3.829268\n", + "8 15 उड़ने वाला ऑटो ... 1291 3.571650\n", + "9 6 एक था मोटा राजा ... 78 3.538462\n", + "10 53 एक सौ सैंतीसवाँ पैर ... 486 3.707819\n", + "11 66 एक सफ़र, एक खेल ... 442 4.009050\n", + "12 56 एक, तीन, पाँच, मदद! मदद! ... 398 3.673367\n", + "13 4 कहानी- बादल की सैर ... 117 3.205128\n", + "14 42 कितनी मज़ेदार है बांग्ला संख्याएं ... 264 3.700758\n", + "15 61 कुत्ते के अंडे ... 178 3.741573\n", + "16 50 कोयल का गला हुआ खराब ... 811 3.675709\n", + "17 32 क्या होता अगर? ... 209 3.741627\n", + "18 11 गप्पू नाच नहीं सकती ... 194 3.298969\n", + "19 26 गरजे बादल नाचे मोर ... 393 3.625954\n", + "20 51 घूम-घूम घड़ियाल का अनोखा सफ़र ... 623 3.874799\n", + "21 7 चाँद का तोहफ़ा ... 144 3.555556\n", + "22 64 छुट्टी ... 85 3.847059\n", + "23 55 जादुर्इ गुटका ... 461 3.659436\n", + "24 34 जीव-जन्तुओं के घर ... 148 3.763514\n", + "25 47 टुमी के पार्क का दिन ... 117 3.435897\n", + "26 24 टूथपेस्ट ट्यूब के अंदर कैसे आया? ... 731 3.753762\n", + "27 27 तारा की गगनचुंबी यात्रा ... 211 3.853081\n", + "28 46 तितलियां ... 81 3.691358\n", + "29 65 दीदी का रंग बिरंगा खज़ाना ... 426 3.598592\n", + "30 60 द्रुवी की छतरी ... 427 3.742389\n", + "31 17 पिशि फँसी तूफ़ान में ... 374 3.721925\n", + "32 19 पूरी क्यों फूलती है? ... 1342 3.486587\n", + "33 39 बंटी और उसके गाते हुए पक्षी ... 177 3.627119\n", + "34 5 बनबिलाव! बनबिलाव! ... 116 4.646552\n", + "35 28 बोलो एक साँस में ... 95 4.578947\n", + "36 20 मधुमक्खियाँ क्यों भन-भन करती हैं? ... 672 3.684524\n", + "37 30 मलार का बड़ा सा घर ... 201 3.597015\n", + "38 22 मुत्तज्जी की उम्र क्या है? ... 2057 3.631988\n", + "39 57 मेंढक की तरकीब ... 133 3.563910\n", + "40 33 मेरा प्रथम परिचय - भारतीय डायनोसॉर से ... 23 6.695652\n", + "41 8 मैं और मेरी दोस्त टीना| ... 150 3.293333\n", + "42 9 मैं नहीं डरती ! ... 107 2.915888\n", + "43 16 मैं बहुत कुछ बना सकता हूँ! ... 120 3.641667\n", + "44 41 राजू की पहली हवाई-यात्रा ... 555 3.749550\n", + "45 10 रिमझिम बरसे बादल ... 101 3.188119\n", + "46 58 रोज़ और रॉकी चले कम्पोस्ट बनाने ... 131 4.175573\n", + "47 49 लाल बरसाती ... 258 3.689922\n", + "48 52 सत्यम, ज़रा संभल के! ... 559 3.695886\n", + "49 18 सबसे अच्छा घर ... 564 3.751773\n", + "50 40 सूरज का दोस्त कौन ? ... 89 3.831461\n", + "51 14 सो जाओ टिंकु! ... 488 3.815574\n", + "52 23 स्वतंत्रता की ओर ... 1507 3.727273\n", + "53 38 हमारे मित्र कौन है? ... 140 3.864286\n", + "54 54 हर पेड़ ज़रूरी है! ... 211 3.658768\n", + "55 21 हवाई जहाज़ कैसे उड़ते हैं? ... 965 3.576166\n", + "56 31 हाथी भाई ... 20 3.850000\n", + "57 48 ग़ोलू एक ग़ोल कि कहानी ... 176 3.727273\n", + "\n", + "[58 rows x 12 columns]\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 -0.315151 -0.447218 -0.830955 -0.543453\n", + "1 -1.240660 -0.645728 -0.499917 0.055601\n", + "2 -0.315151 0.148312 -0.568003 0.753811\n", + "3 0.841734 0.148312 -0.589133 0.721867\n", + "4 1.535865 1.802563 2.855072 -0.113250\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 -0.315151 -0.447218 -0.830955 -0.543453\n", + "1 -1.240660 -0.645728 -0.499917 0.055601\n", + "2 -0.315151 0.148312 -0.568003 0.753811\n", + "3 0.841734 0.148312 -0.589133 0.721867\n", + "4 1.535865 1.802563 2.855072 -0.113250\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 0.368421 0.225352 0.002946 0.154537\n", + "1 0.157895 0.183099 0.072165 0.229788\n", + "2 0.368421 0.352113 0.057928 0.317494\n", + "3 0.631579 0.352113 0.053510 0.313482\n", + "4 0.789474 0.704225 0.773687 0.208577\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping unnecessary columns): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping missing values): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after converting texts to numbers): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 1 0.210526 0.154930 0.076583 0.214665\n", + "step1_3_split_data.py storybooks_csv_path: step1_2_storybooks.csv\n", + "step1_3_split_data.py train_X: \n", + " id chapter_count paragraph_count word_count\n", + "29 65 0.421053 0.366197 0.199313\n", + "40 33 0.526316 0.126761 0.001473\n", + "32 19 0.578947 0.492958 0.648994\n", + "41 8 0.368421 0.112676 0.063819\n", + "37 30 0.473684 0.338028 0.088856\n", + "7 2 0.157895 0.098592 0.050565\n", + "14 42 0.578947 0.464789 0.119784\n", + "31 17 0.263158 0.084507 0.173785\n", + "28 46 0.052632 0.014085 0.029946\n", + "56 31 0.000000 0.000000 0.000000\n", + "52 23 0.631579 0.718310 0.729995\n", + "18 11 0.421053 0.380282 0.085420\n", + "54 54 0.368421 0.338028 0.093765\n", + "26 24 0.526316 0.225352 0.349043\n", + "15 61 0.684211 0.352113 0.077565\n", + "5 29 0.368421 0.126761 0.044183\n", + "30 60 0.368421 0.535211 0.199804\n", + "16 50 0.736842 0.619718 0.388316\n", + "49 18 0.684211 0.478873 0.267059\n", + "20 51 0.789474 0.619718 0.296024\n", + "50 40 0.000000 0.169014 0.033873\n", + "8 15 1.000000 0.605634 0.623957\n", + "13 4 0.421053 0.295775 0.047619\n", + "25 47 0.631579 0.197183 0.047619\n", + "17 32 0.315789 0.295775 0.092784\n", + "43 16 0.368421 0.126761 0.049092\n", + "46 58 0.368421 0.169014 0.054492\n", + "51 14 0.526316 0.507042 0.229750\n", + "38 22 1.000000 1.000000 1.000000\n", + "1 1 0.157895 0.183099 0.072165\n", + "12 56 0.368421 0.464789 0.185567\n", + "57 48 0.210526 0.154930 0.076583\n", + "24 34 0.368421 0.211268 0.062838\n", + "6 63 0.578947 0.126761 0.039764\n", + "23 55 0.736842 0.676056 0.216495\n", + "36 20 0.473684 0.253521 0.320079\n", + "21 7 0.368421 0.126761 0.060874\n", + "19 26 0.157895 0.098592 0.183112\n", + "9 6 0.157895 0.042254 0.028473\n", + "39 57 0.631579 0.253521 0.055474\n", + "55 21 0.421053 0.309859 0.463918\n", + "3 59 0.631579 0.352113 0.053510\n", + "0 37 0.368421 0.225352 0.002946\n", + "53 38 0.526316 0.225352 0.058910\n", + "47 49 0.263158 0.267606 0.116838\n", + "44 41 0.315789 0.366197 0.262641\n", + "step1_3_split_data.py train_y: \n", + " reading_level\n", + "29 2\n", + "40 1\n", + "32 3\n", + "41 1\n", + "37 1\n", + "7 1\n", + "14 1\n", + "31 3\n", + "28 1\n", + "56 1\n", + "52 4\n", + "18 1\n", + "54 2\n", + "26 3\n", + "15 2\n", + "5 1\n", + "30 2\n", + "16 2\n", + "49 3\n", + "20 2\n", + "50 1\n", + "8 3\n", + "13 1\n", + "25 1\n", + "17 1\n", + "43 1\n", + "46 2\n", + "51 2\n", + "38 4\n", + "1 1\n", + "12 2\n", + "57 1\n", + "24 1\n", + "6 1\n", + "23 2\n", + "36 3\n", + "21 1\n", + "19 2\n", + "9 1\n", + "39 2\n", + "55 3\n", + "3 2\n", + "0 1\n", + "53 1\n", + "47 1\n", + "44 4\n", + "step1_3_split_data.py test_X: \n", + " id chapter_count paragraph_count word_count\n", + "35 28 0.315789 0.183099 0.036819\n", + "34 5 0.368421 0.239437 0.047128\n", + "42 9 0.368421 0.098592 0.042710\n", + "27 27 0.368421 0.267606 0.093765\n", + "11 66 0.578947 0.563380 0.207167\n", + "2 36 0.368421 0.352113 0.057928\n", + "33 39 0.473684 0.154930 0.077074\n", + "45 10 0.105263 0.197183 0.039764\n", + "22 64 0.000000 0.295775 0.031910\n", + "48 52 0.842105 0.521127 0.264605\n", + "4 25 0.789474 0.704225 0.773687\n", + "10 53 0.578947 0.816901 0.228768\n", + "step1_3_split_data.py test_y: \n", + " reading_level\n", + "35 1\n", + "34 1\n", + "42 1\n", + "27 2\n", + "11 2\n", + "2 1\n", + "33 1\n", + "45 1\n", + "22 2\n", + "48 2\n", + "4 3\n", + "10 2\n", + "step1_4_eda.py storybooks_csv_path: step1_2_storybooks.csv\n", + "label: chapter_count\n", + "label: paragraph_count\n", + "label: word_count\n", + "label: avg_word_length\n", + "\n", + "*** Step 2. Train Model ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step2_train\n", + "step2_1_train_model_pkl.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_1_train_model_pkl.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_1_train_model_pkl.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_1_train_model_pkl.py type(y): \n", + "step2_1_train_model_pkl.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_1_train_model_pkl.py type(X): \n", + "step2_1_train_model_pkl.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_1_train_model_pkl.py Defining model...\n", + "step2_1_train_model_pkl.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step2_1_train_model_pkl.py Fitting model...\n", + "step2_1_train_model_pkl.py Saving model...\n", + "step2_2_train_model_pmml.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_2_train_model_pmml.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_2_train_model_pmml.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_2_train_model_pmml.py type(y): \n", + "step2_2_train_model_pmml.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_2_train_model_pmml.py type(X): \n", + "step2_2_train_model_pmml.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_2_train_model_pmml.py Defining model...\n", + "step2_2_train_model_pmml.py reading_level_model: PMMLPipeline(steps=[('regressor', DecisionTreeRegressor(random_state=1))])\n", + "step2_2_train_model_pmml.py Fitting model...\n", + "step2_2_train_model_pmml.py Saving model...\n", + "\n", + "*** Step 3. Make Prediction ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step3_predict\n", + "step3_1_predict.py model_pkl_path: ../step2_train/step2_1_model.pkl\n", + "step3_1_predict.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step3_1_predict.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_test.csv\n", + "step3_1_predict.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_1_predict.py predictions_array:\n", + "[1. 1. 1. 2. 2. 1. 1. 1. 1. 4. 4. 2.]\n", + "step3_1_predict.py type(predictions_array):\n", + "\n", + "step3_1_predict.py predictions_dataframe:\n", + " reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_1_predict.py type(predictions_dataframe):\n", + "\n", + "step3_2_validate.py model_pmml_path: ../step2_train/step2_2_model.pmml\n", + "step3_2_validate.py reading_level_model: org.pmml4s.model.TreeModel@6e3e31a6\n", + "step3_2_validate.py storybooks_dataframe: \n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_2_validate.py predictions: \n", + " predicted_reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_2_validate.py type(predictions): \n", + "\n", + "step3_2_validate.py mean_absolute_error: 0.3333333333333333\n", + "step3_2_validate.py accuracy_score: 0.75\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "%cd step1_prepare" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "B_7nQ0Q8Uv_g", + "outputId": "9930fe3d-4bcd-45ee-f93c-8023453da743" + }, + "execution_count": 42, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml/step1_prepare\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "## ROBUST SCALER\n", + "\n", + "with open(\"step1_2_preprocess_data.py\", \"r\") as file:\n", + " data = file.readlines()\n", + "\n", + "# insert robust scaler after unnecessary columns are dropped\n", + "for i, line in enumerate(data):\n", + " if \"storybooks_dataframe = storybooks_dataframe[['id', 'reading_level',\" in line:\n", + " data.insert(i + 1, \"\"\"\n", + "from sklearn.preprocessing import RobustScaler\n", + "scaler = RobustScaler()\n", + "storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']] = scaler.fit_transform(\n", + " storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']])\n", + "print(storybooks_dataframe[['chapter_count', 'paragraph_count', 'word_count', 'avg_word_length']].head())\n", + "\n", + "\"\"\")\n", + "\n", + "# write to file\n", + "with open(\"step1_2_preprocess_data.py\", \"w\") as file:\n", + " file.writelines(data)\n" + ], + "metadata": { + "id": "VLR42ShQWet-" + }, + "execution_count": 43, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "%cd ..\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3oxwSdd7WjGb", + "outputId": "9244140f-c5e4-4ba7-abb8-f7368e9c7833" + }, + "execution_count": 44, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/ml-storybook-reading-level/pmml\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!python run_all_steps.py" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "h4laC3ZaWl1Q", + "outputId": "12b8a87f-7ecd-4054-f4a5-88e88c903650" + }, + "execution_count": 45, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: जाओगे\n", + "chapters_utils.py word_cleaned: जाओगे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: देखेगा?\n", + "chapters_utils.py word_cleaned: देखेगा\n", + "chapters_utils.py word: इतना\n", + "chapters_utils.py word_cleaned: इतना\n", + "chapters_utils.py word: चलने\n", + "chapters_utils.py word_cleaned: चलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद,\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: कमज़ोर\n", + "chapters_utils.py word_cleaned: कमज़ोर\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाऊँगा।\n", + "chapters_utils.py word_cleaned: जाऊँगा।\n", + "chapters_utils.py word: इसलिये,\n", + "chapters_utils.py word_cleaned: इसलिये\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: वापस\n", + "chapters_utils.py word_cleaned: वापस\n", + "chapters_utils.py word: आऊँगा\n", + "chapters_utils.py word_cleaned: आऊँगा\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: खूब\n", + "chapters_utils.py word_cleaned: खूब\n", + "chapters_utils.py word: सारा\n", + "chapters_utils.py word_cleaned: सारा\n", + "chapters_utils.py word: दूध\n", + "chapters_utils.py word_cleaned: दूध\n", + "chapters_utils.py word: पीना\n", + "chapters_utils.py word_cleaned: पीना\n", + "chapters_utils.py word: पड़ेगा,\n", + "chapters_utils.py word_cleaned: पड़ेगा\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेरी\n", + "chapters_utils.py word_cleaned: मेरी\n", + "chapters_utils.py word: ताकत\n", + "chapters_utils.py word_cleaned: ताकत\n", + "chapters_utils.py word: लौट\n", + "chapters_utils.py word_cleaned: लौट\n", + "chapters_utils.py word: आये।“\n", + "chapters_utils.py word_cleaned: आये।“\n", + "chapters_utils.py paragraph: {'originalText': '”हूँ... यह बात तो ठीक है, गाँधी जी! बिन्नी तभी खाती है, जब मैं उसे खिलाता हूँ,“ धनी ने प्यार से बिन्नी का सर सहलाया, ”और स़िर्फ मैं जानता हूँ कि इसे क्या पसन्द है।“', 'sortOrder': 4, 'id': 1415}\n", + "chapters_utils.py words: ['”हूँ...', 'यह', 'बात', 'तो', 'ठीक', 'है,', 'गाँधी', 'जी!', 'बिन्नी', 'तभी', 'खाती', 'है,', 'जब', 'मैं', 'उसे', 'खिलाता', 'हूँ,“', 'धनी', 'ने', 'प्यार', 'से', 'बिन्नी', 'का', 'सर', 'सहलाया,', '”और', 'स़िर्फ', 'मैं', 'जानता', 'हूँ', 'कि', 'इसे', 'क्या', 'पसन्द', 'है।“']\n", + "chapters_utils.py word: ”हूँ...\n", + "chapters_utils.py word_cleaned: ”हूँ\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी!\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: खाती\n", + "chapters_utils.py word_cleaned: खाती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: खिलाता\n", + "chapters_utils.py word_cleaned: खिलाता\n", + "chapters_utils.py word: हूँ,“\n", + "chapters_utils.py word_cleaned: हूँ“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सर\n", + "chapters_utils.py word_cleaned: सर\n", + "chapters_utils.py word: सहलाया,\n", + "chapters_utils.py word_cleaned: सहलाया\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: स़िर्फ\n", + "chapters_utils.py word_cleaned: स़िर्फ\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: जानता\n", + "chapters_utils.py word_cleaned: जानता\n", + "chapters_utils.py word: हूँ\n", + "chapters_utils.py word_cleaned: हूँ\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: पसन्द\n", + "chapters_utils.py word_cleaned: पसन्द\n", + "chapters_utils.py word: है।“\n", + "chapters_utils.py word_cleaned: है।“\n", + "chapters_utils.py paragraph: {'originalText': '”बिल्कुल सही। तो क्या तुम आश्रम में रह कर मेरे लिये बिन्नी की देखभाल करोगे?“ गाँधी जी प्यार से बोले।', 'sortOrder': 5, 'id': 1416}\n", + "chapters_utils.py words: ['”बिल्कुल', 'सही।', 'तो', 'क्या', 'तुम', 'आश्रम', 'में', 'रह', 'कर', 'मेरे', 'लिये', 'बिन्नी', 'की', 'देखभाल', 'करोगे?“', 'गाँधी', 'जी', 'प्यार', 'से', 'बोले।']\n", + "chapters_utils.py word: ”बिल्कुल\n", + "chapters_utils.py word_cleaned: ”बिल्कुल\n", + "chapters_utils.py word: सही।\n", + "chapters_utils.py word_cleaned: सही।\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: आश्रम\n", + "chapters_utils.py word_cleaned: आश्रम\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रह\n", + "chapters_utils.py word_cleaned: रह\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: लिये\n", + "chapters_utils.py word_cleaned: लिये\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: देखभाल\n", + "chapters_utils.py word_cleaned: देखभाल\n", + "chapters_utils.py word: करोगे?“\n", + "chapters_utils.py word_cleaned: करोगे“\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: प्यार\n", + "chapters_utils.py word_cleaned: प्यार\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बोले।\n", + "chapters_utils.py word_cleaned: बोले।\n", + "chapters_utils.py paragraph: {'originalText': '”जी, गाँधी जी, करूँगा,“ धनी बोला, ”और बिन्नी और मैं, आपका इन्तज़ार करेंगे।“', 'sortOrder': 6, 'id': 1417}\n", + "chapters_utils.py words: ['”जी,', 'गाँधी', 'जी,', 'करूँगा,“', 'धनी', 'बोला,', '”और', 'बिन्नी', 'और', 'मैं,', 'आपका', 'इन्तज़ार', 'करेंगे।“']\n", + "chapters_utils.py word: ”जी,\n", + "chapters_utils.py word_cleaned: ”जी\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी,\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: करूँगा,“\n", + "chapters_utils.py word_cleaned: करूँगा“\n", + "chapters_utils.py word: धनी\n", + "chapters_utils.py word_cleaned: धनी\n", + "chapters_utils.py word: बोला,\n", + "chapters_utils.py word_cleaned: बोला\n", + "chapters_utils.py word: ”और\n", + "chapters_utils.py word_cleaned: ”और\n", + "chapters_utils.py word: बिन्नी\n", + "chapters_utils.py word_cleaned: बिन्नी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं,\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: आपका\n", + "chapters_utils.py word_cleaned: आपका\n", + "chapters_utils.py word: इन्तज़ार\n", + "chapters_utils.py word_cleaned: इन्तज़ार\n", + "chapters_utils.py word: करेंगे।“\n", + "chapters_utils.py word_cleaned: करेंगे।“\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py chapter[\"sortOrder\"]: 14\n", + "chapters_utils.py paragraph: {'originalText': 'इतिहास के कुछ रोचक तथ्य:', 'sortOrder': 0, 'id': 1419}\n", + "chapters_utils.py words: ['इतिहास', 'के', 'कुछ', 'रोचक', 'तथ्य:']\n", + "chapters_utils.py word: इतिहास\n", + "chapters_utils.py word_cleaned: इतिहास\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: रोचक\n", + "chapters_utils.py word_cleaned: रोचक\n", + "chapters_utils.py word: तथ्य:\n", + "chapters_utils.py word_cleaned: तथ्य\n", + "chapters_utils.py paragraph: {'originalText': '1. मार्च 1930 में महात्मा गाँधी ने ब्रिटिश सरकार द्वारा लगाये नमक कर के विरोध में दाँडी तक की यात्रा का नेतृत्व किया। गाँधी जी और उनके अनुयायी, गुजरात में 24 दिन तक पैदल चले। पूरे रास्ते उनका स्वागत फूलों और गीतों से हुआ। विश्\\u200dव भर के अखबारों ने यात्रा पर खबरें छापीं।', 'sortOrder': 1, 'id': 1420}\n", + "chapters_utils.py words: ['1.', 'मार्च', '1930', 'में', 'महात्मा', 'गाँधी', 'ने', 'ब्रिटिश', 'सरकार', 'द्वारा', 'लगाये', 'नमक', 'कर', 'के', 'विरोध', 'में', 'दाँडी', 'तक', 'की', 'यात्रा', 'का', 'नेतृत्व', 'किया।', 'गाँधी', 'जी', 'और', 'उनके', 'अनुयायी,', 'गुजरात', 'में', '24', 'दिन', 'तक', 'पैदल', 'चले।', 'पूरे', 'रास्ते', 'उनका', 'स्वागत', 'फूलों', 'और', 'गीतों', 'से', 'हुआ।', 'विश्\\u200dव', 'भर', 'के', 'अखबारों', 'ने', 'यात्रा', 'पर', 'खबरें', 'छापीं।']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: महात्मा\n", + "chapters_utils.py word_cleaned: महात्मा\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: ब्रिटिश\n", + "chapters_utils.py word_cleaned: ब्रिटिश\n", + "chapters_utils.py word: सरकार\n", + "chapters_utils.py word_cleaned: सरकार\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: लगाये\n", + "chapters_utils.py word_cleaned: लगाये\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: विरोध\n", + "chapters_utils.py word_cleaned: विरोध\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नेतृत्व\n", + "chapters_utils.py word_cleaned: नेतृत्व\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: अनुयायी,\n", + "chapters_utils.py word_cleaned: अनुयायी\n", + "chapters_utils.py word: गुजरात\n", + "chapters_utils.py word_cleaned: गुजरात\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: 24\n", + "chapters_utils.py word_cleaned: 24\n", + "chapters_utils.py word: दिन\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: पैदल\n", + "chapters_utils.py word_cleaned: पैदल\n", + "chapters_utils.py word: चले।\n", + "chapters_utils.py word_cleaned: चले।\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: रास्ते\n", + "chapters_utils.py word_cleaned: रास्ते\n", + "chapters_utils.py word: उनका\n", + "chapters_utils.py word_cleaned: उनका\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: गीतों\n", + "chapters_utils.py word_cleaned: गीतों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हुआ।\n", + "chapters_utils.py word_cleaned: हुआ।\n", + "chapters_utils.py word: विश्‍व\n", + "chapters_utils.py word_cleaned: विश्‍व\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अखबारों\n", + "chapters_utils.py word_cleaned: अखबारों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खबरें\n", + "chapters_utils.py word_cleaned: खबरें\n", + "chapters_utils.py word: छापीं।\n", + "chapters_utils.py word_cleaned: छापीं।\n", + "chapters_utils.py paragraph: {'originalText': '2. दाँडी में गाँधी जी और उनके साथियों ने समुद्र तट से नमक उठाया और उन्हें गिरफ़्तार कर लिया गया। उनकी गिरफ़्तारी के बाद असहयोग आन्दोलन शुरू हुआ और पूरे भारत में लोगों ने स्कूल, कॉलेज व दफ़्तरों का बायकॉट किया।', 'sortOrder': 2, 'id': 1421}\n", + "chapters_utils.py words: ['2.', 'दाँडी', 'में', 'गाँधी', 'जी', 'और', 'उनके', 'साथियों', 'ने', 'समुद्र', 'तट', 'से', 'नमक', 'उठाया', 'और', 'उन्हें', 'गिरफ़्तार', 'कर', 'लिया', 'गया।', 'उनकी', 'गिरफ़्तारी', 'के', 'बाद', 'असहयोग', 'आन्दोलन', 'शुरू', 'हुआ', 'और', 'पूरे', 'भारत', 'में', 'लोगों', 'ने', 'स्कूल,', 'कॉलेज', 'व', 'दफ़्तरों', 'का', 'बायकॉट', 'किया।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उनके\n", + "chapters_utils.py word_cleaned: उनके\n", + "chapters_utils.py word: साथियों\n", + "chapters_utils.py word_cleaned: साथियों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: समुद्र\n", + "chapters_utils.py word_cleaned: समुद्र\n", + "chapters_utils.py word: तट\n", + "chapters_utils.py word_cleaned: तट\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: नमक\n", + "chapters_utils.py word_cleaned: नमक\n", + "chapters_utils.py word: उठाया\n", + "chapters_utils.py word_cleaned: उठाया\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: गिरफ़्तार\n", + "chapters_utils.py word_cleaned: गिरफ़्तार\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: लिया\n", + "chapters_utils.py word_cleaned: लिया\n", + "chapters_utils.py word: गया।\n", + "chapters_utils.py word_cleaned: गया।\n", + "chapters_utils.py word: उनकी\n", + "chapters_utils.py word_cleaned: उनकी\n", + "chapters_utils.py word: गिरफ़्तारी\n", + "chapters_utils.py word_cleaned: गिरफ़्तारी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाद\n", + "chapters_utils.py word_cleaned: बाद\n", + "chapters_utils.py word: असहयोग\n", + "chapters_utils.py word_cleaned: असहयोग\n", + "chapters_utils.py word: आन्दोलन\n", + "chapters_utils.py word_cleaned: आन्दोलन\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: हुआ\n", + "chapters_utils.py word_cleaned: हुआ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पूरे\n", + "chapters_utils.py word_cleaned: पूरे\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लोगों\n", + "chapters_utils.py word_cleaned: लोगों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: स्कूल,\n", + "chapters_utils.py word_cleaned: स्कूल\n", + "chapters_utils.py word: कॉलेज\n", + "chapters_utils.py word_cleaned: कॉलेज\n", + "chapters_utils.py word: व\n", + "chapters_utils.py word_cleaned: व\n", + "chapters_utils.py word: दफ़्तरों\n", + "chapters_utils.py word_cleaned: दफ़्तरों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: बायकॉट\n", + "chapters_utils.py word_cleaned: बायकॉट\n", + "chapters_utils.py word: किया।\n", + "chapters_utils.py word_cleaned: किया।\n", + "chapters_utils.py paragraph: {'originalText': '3. इस यात्रा में गाँधी जी के साथ 78 स्वेच्छा कर्मियों (वालंटियरों) ने भाग लिया। उन्होंने 385 किलोमीटर की दूरी तय की।', 'sortOrder': 3, 'id': 1422}\n", + "chapters_utils.py words: ['3.', 'इस', 'यात्रा', 'में', 'गाँधी', 'जी', 'के', 'साथ', '78', 'स्वेच्छा', 'कर्मियों', '(वालंटियरों)', 'ने', 'भाग', 'लिया।', 'उन्होंने', '385', 'किलोमीटर', 'की', 'दूरी', 'तय', 'की।']\n", + "chapters_utils.py word: 3.\n", + "chapters_utils.py word_cleaned: 3\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: गाँधी\n", + "chapters_utils.py word_cleaned: गाँधी\n", + "chapters_utils.py word: जी\n", + "chapters_utils.py word_cleaned: जी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: 78\n", + "chapters_utils.py word_cleaned: 78\n", + "chapters_utils.py word: स्वेच्छा\n", + "chapters_utils.py word_cleaned: स्वेच्छा\n", + "chapters_utils.py word: कर्मियों\n", + "chapters_utils.py word_cleaned: कर्मियों\n", + "chapters_utils.py word: (वालंटियरों)\n", + "chapters_utils.py word_cleaned: वालंटियरों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: भाग\n", + "chapters_utils.py word_cleaned: भाग\n", + "chapters_utils.py word: लिया।\n", + "chapters_utils.py word_cleaned: लिया।\n", + "chapters_utils.py word: उन्होंने\n", + "chapters_utils.py word_cleaned: उन्होंने\n", + "chapters_utils.py word: 385\n", + "chapters_utils.py word_cleaned: 385\n", + "chapters_utils.py word: किलोमीटर\n", + "chapters_utils.py word_cleaned: किलोमीटर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: दूरी\n", + "chapters_utils.py word_cleaned: दूरी\n", + "chapters_utils.py word: तय\n", + "chapters_utils.py word_cleaned: तय\n", + "chapters_utils.py word: की।\n", + "chapters_utils.py word_cleaned: की।\n", + "chapters_utils.py paragraph: {'originalText': '4. यात्रा 12 मार्च को शुरू होकर 5 अप्रैल, 1930 को समाप्त हुई। सबसे कम उम्र का यात्री 16 वर्ष का था।', 'sortOrder': 4, 'id': 1423}\n", + "chapters_utils.py words: ['4.', 'यात्रा', '12', 'मार्च', 'को', 'शुरू', 'होकर', '5', 'अप्रैल,', '1930', 'को', 'समाप्त', 'हुई।', 'सबसे', 'कम', 'उम्र', 'का', 'यात्री', '16', 'वर्ष', 'का', 'था।']\n", + "chapters_utils.py word: 4.\n", + "chapters_utils.py word_cleaned: 4\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: 12\n", + "chapters_utils.py word_cleaned: 12\n", + "chapters_utils.py word: मार्च\n", + "chapters_utils.py word_cleaned: मार्च\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: शुरू\n", + "chapters_utils.py word_cleaned: शुरू\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: 5\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: अप्रैल,\n", + "chapters_utils.py word_cleaned: अप्रैल\n", + "chapters_utils.py word: 1930\n", + "chapters_utils.py word_cleaned: 1930\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: समाप्त\n", + "chapters_utils.py word_cleaned: समाप्त\n", + "chapters_utils.py word: हुई।\n", + "chapters_utils.py word_cleaned: हुई।\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: कम\n", + "chapters_utils.py word_cleaned: कम\n", + "chapters_utils.py word: उम्र\n", + "chapters_utils.py word_cleaned: उम्र\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: यात्री\n", + "chapters_utils.py word_cleaned: यात्री\n", + "chapters_utils.py word: 16\n", + "chapters_utils.py word_cleaned: 16\n", + "chapters_utils.py word: वर्ष\n", + "chapters_utils.py word_cleaned: वर्ष\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '5. सन 2005 में दाँडी यात्रा की 75 वीं जयंती थी।', 'sortOrder': 5, 'id': 1424}\n", + "chapters_utils.py words: ['5.', 'सन', '2005', 'में', 'दाँडी', 'यात्रा', 'की', '75', 'वीं', 'जयंती', 'थी।']\n", + "chapters_utils.py word: 5.\n", + "chapters_utils.py word_cleaned: 5\n", + "chapters_utils.py word: सन\n", + "chapters_utils.py word_cleaned: सन\n", + "chapters_utils.py word: 2005\n", + "chapters_utils.py word_cleaned: 2005\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: दाँडी\n", + "chapters_utils.py word_cleaned: दाँडी\n", + "chapters_utils.py word: यात्रा\n", + "chapters_utils.py word_cleaned: यात्रा\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: 75\n", + "chapters_utils.py word_cleaned: 75\n", + "chapters_utils.py word: वीं\n", + "chapters_utils.py word_cleaned: वीं\n", + "chapters_utils.py word: जयंती\n", + "chapters_utils.py word_cleaned: जयंती\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 15\n", + "chapters_utils.py word_count: 1507\n", + "chapters_utils.py total_word_length: 5617\n", + "step1_2_preprocess_data.py index: 53\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 14\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप अनुमान लगा सकते हो कि हमारा सबसे अच्छा मित्र कौन है?', 'sortOrder': 0, 'id': 1782}\n", + "chapters_utils.py words: ['क्या', 'आप', 'अनुमान', 'लगा', 'सकते', 'हो', 'कि', 'हमारा', 'सबसे', 'अच्छा', 'मित्र', 'कौन', 'है?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: अनुमान\n", + "chapters_utils.py word_cleaned: अनुमान\n", + "chapters_utils.py word: लगा\n", + "chapters_utils.py word_cleaned: लगा\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: कौन\n", + "chapters_utils.py word_cleaned: कौन\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'वह हमारे जैसा नहीं है।', 'sortOrder': 1, 'id': 1783}\n", + "chapters_utils.py words: ['वह', 'हमारे', 'जैसा', 'नहीं', 'है।']\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: हमारे\n", + "chapters_utils.py word_cleaned: हमारे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'हमारा सबसे अच्छा मित्र है पक्षी!', 'sortOrder': 0, 'id': 1784}\n", + "chapters_utils.py words: ['हमारा', 'सबसे', 'अच्छा', 'मित्र', 'है', 'पक्षी!']\n", + "chapters_utils.py word: हमारा\n", + "chapters_utils.py word_cleaned: हमारा\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: अच्छा\n", + "chapters_utils.py word_cleaned: अच्छा\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: पक्षी!\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py paragraph: {'originalText': '(चिड़िया)', 'sortOrder': 1, 'id': 1785}\n", + "chapters_utils.py words: ['(चिड़िया)']\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक गैंडा\\xa0हूँ।', 'sortOrder': 0, 'id': 1786}\n", + "chapters_utils.py words: ['मैं', 'एक', 'गैंडा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गैंडा\n", + "chapters_utils.py word_cleaned: गैंडा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं पिस्सू से घिरा रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1787}\n", + "chapters_utils.py words: ['मैं', 'पिस्सू', 'से', 'घिरा', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: पिस्सू\n", + "chapters_utils.py word_cleaned: पिस्सू\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: घिरा\n", + "chapters_utils.py word_cleaned: घिरा\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया उन सभी पिस्सूओं को खा जाती है।', 'sortOrder': 0, 'id': 1788}\n", + "chapters_utils.py words: ['चिड़िया', 'उन', 'सभी', 'पिस्सूओं', 'को', 'खा', 'जाती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: पिस्सूओं\n", + "chapters_utils.py word_cleaned: पिस्सूओं\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: खा\n", + "chapters_utils.py word_cleaned: खा\n", + "chapters_utils.py word: जाती\n", + "chapters_utils.py word_cleaned: जाती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक मगरमच्छ हूँ।', 'sortOrder': 0, 'id': 1789}\n", + "chapters_utils.py words: ['मैं', 'एक', 'मगरमच्छ', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: मगरमच्छ\n", + "chapters_utils.py word_cleaned: मगरमच्छ\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपने दांतों को ब्रश नहीं कर सकता हूँ।', 'sortOrder': 1, 'id': 1790}\n", + "chapters_utils.py words: ['मैं', 'अपने', 'दांतों', 'को', 'ब्रश', 'नहीं', 'कर', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ब्रश\n", + "chapters_utils.py word_cleaned: ब्रश\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया अपनी चोंच से दांतों को साफ कर देती है।', 'sortOrder': 0, 'id': 1791}\n", + "chapters_utils.py words: ['चिड़िया', 'अपनी', 'चोंच', 'से', 'दांतों', 'को', 'साफ', 'कर', 'देती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: चोंच\n", + "chapters_utils.py word_cleaned: चोंच\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दांतों\n", + "chapters_utils.py word_cleaned: दांतों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: साफ\n", + "chapters_utils.py word_cleaned: साफ\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: देती\n", + "chapters_utils.py word_cleaned: देती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'मैं एक जिराफ़ हूँ।', 'sortOrder': 0, 'id': 1792}\n", + "chapters_utils.py words: ['मैं', 'एक', 'जिराफ़', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जिराफ़\n", + "chapters_utils.py word_cleaned: जिराफ़\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं अपना सिर खुजला नहीं सकता\\xa0हूँ।', 'sortOrder': 1, 'id': 1793}\n", + "chapters_utils.py words: ['मैं', 'अपना', 'सिर', 'खुजला', 'नहीं', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'चिड़िया मेरे सिर पर पहुंच कर खुजला सकती है।', 'sortOrder': 0, 'id': 1794}\n", + "chapters_utils.py words: ['चिड़िया', 'मेरे', 'सिर', 'पर', 'पहुंच', 'कर', 'खुजला', 'सकती', 'है।']\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: सिर\n", + "chapters_utils.py word_cleaned: सिर\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पहुंच\n", + "chapters_utils.py word_cleaned: पहुंच\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खुजला\n", + "chapters_utils.py word_cleaned: खुजला\n", + "chapters_utils.py word: सकती\n", + "chapters_utils.py word_cleaned: सकती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'मैं ज़ेब्रा हूँ।', 'sortOrder': 0, 'id': 1795}\n", + "chapters_utils.py words: ['मैं', 'ज़ेब्रा', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: ज़ेब्रा\n", + "chapters_utils.py word_cleaned: ज़ेब्रा\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं दूर की वस्तुएं नहीं देख सकता हूँ।', 'sortOrder': 1, 'id': 1796}\n", + "chapters_utils.py words: ['मैं', 'दूर', 'की', 'वस्तुएं', 'नहीं', 'देख', 'सकता', 'हूँ।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: वस्तुएं\n", + "chapters_utils.py word_cleaned: वस्तुएं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: सकता\n", + "chapters_utils.py word_cleaned: सकता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी की बड़ी-बड़ी आँखें होती हैं।', 'sortOrder': 0, 'id': 1797}\n", + "chapters_utils.py words: ['पक्षी', 'की', 'बड़ी-बड़ी', 'आँखें', 'होती', 'हैं।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बड़ी-बड़ी\n", + "chapters_utils.py word_cleaned: बड़ीबड़ी\n", + "chapters_utils.py word: आँखें\n", + "chapters_utils.py word_cleaned: आँखें\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'जब वह देख रहा होता है, मैं सुरक्षित रहता\\xa0हूँ।', 'sortOrder': 1, 'id': 1798}\n", + "chapters_utils.py words: ['जब', 'वह', 'देख', 'रहा', 'होता', 'है,', 'मैं', 'सुरक्षित', 'रहता', 'हूँ।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रहा\n", + "chapters_utils.py word_cleaned: रहा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहता\n", + "chapters_utils.py word_cleaned: रहता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी (चिड़िया) अलग-अलग हो सकते हैं, लेकिन यह कोई समस्या नहीं है...', 'sortOrder': 0, 'id': 1799}\n", + "chapters_utils.py words: ['पक्षी', '(चिड़िया)', 'अलग-अलग', 'हो', 'सकते', 'हैं,', 'लेकिन', 'यह', 'कोई', 'समस्या', 'नहीं', 'है...']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: (चिड़िया)\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: अलग-अलग\n", + "chapters_utils.py word_cleaned: अलगअलग\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है...\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'हमें कोई समस्या नहीं होती है, जब पक्षी गाते हैं।', 'sortOrder': 0, 'id': 1800}\n", + "chapters_utils.py words: ['हमें', 'कोई', 'समस्या', 'नहीं', 'होती', 'है,', 'जब', 'पक्षी', 'गाते', 'हैं।']\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: समस्या\n", + "chapters_utils.py word_cleaned: समस्या\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: गाते\n", + "chapters_utils.py word_cleaned: गाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 12\n", + "chapters_utils.py chapter[\"sortOrder\"]: 13\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप मेरे मित्र बनोगे?', 'sortOrder': 0, 'id': 1801}\n", + "chapters_utils.py words: ['क्या', 'आप', 'मेरे', 'मित्र', 'बनोगे?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: मित्र\n", + "chapters_utils.py word_cleaned: मित्र\n", + "chapters_utils.py word: बनोगे?\n", + "chapters_utils.py word_cleaned: बनोगे\n", + "chapters_utils.py word_count: 140\n", + "chapters_utils.py total_word_length: 541\n", + "step1_2_preprocess_data.py index: 54\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 11\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'लटकती जड़ों वाला एक बरगद का पेड़ बड़ा है,', 'sortOrder': 0, 'id': 2176}\n", + "chapters_utils.py words: ['लटकती', 'जड़ों', 'वाला', 'एक', 'बरगद', 'का', 'पेड़', 'बड़ा', 'है,']\n", + "chapters_utils.py word: लटकती\n", + "chapters_utils.py word_cleaned: लटकती\n", + "chapters_utils.py word: जड़ों\n", + "chapters_utils.py word_cleaned: जड़ों\n", + "chapters_utils.py word: वाला\n", + "chapters_utils.py word_cleaned: वाला\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: बरगद\n", + "chapters_utils.py word_cleaned: बरगद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बड़ा\n", + "chapters_utils.py word_cleaned: बड़ा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'बहुत बड़ी जगह घेरे शान से खड़ा है।', 'sortOrder': 1, 'id': 2177}\n", + "chapters_utils.py words: ['बहुत', 'बड़ी', 'जगह', 'घेरे', 'शान', 'से', 'खड़ा', 'है।']\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: घेरे\n", + "chapters_utils.py word_cleaned: घेरे\n", + "chapters_utils.py word: शान\n", + "chapters_utils.py word_cleaned: शान\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'दो पलाश के पेड़ बगिया में लाये बहार,', 'sortOrder': 0, 'id': 2178}\n", + "chapters_utils.py words: ['दो', 'पलाश', 'के', 'पेड़', 'बगिया', 'में', 'लाये', 'बहार,']\n", + "chapters_utils.py word: दो\n", + "chapters_utils.py word_cleaned: दो\n", + "chapters_utils.py word: पलाश\n", + "chapters_utils.py word_cleaned: पलाश\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: बगिया\n", + "chapters_utils.py word_cleaned: बगिया\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: लाये\n", + "chapters_utils.py word_cleaned: लाये\n", + "chapters_utils.py word: बहार,\n", + "chapters_utils.py word_cleaned: बहार\n", + "chapters_utils.py paragraph: {'originalText': 'मधुमक्खियों को बाँटें मकरंद का उपहार।', 'sortOrder': 1, 'id': 2179}\n", + "chapters_utils.py words: ['मधुमक्खियों', 'को', 'बाँटें', 'मकरंद', 'का', 'उपहार।']\n", + "chapters_utils.py word: मधुमक्खियों\n", + "chapters_utils.py word_cleaned: मधुमक्खियों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बाँटें\n", + "chapters_utils.py word_cleaned: बाँटें\n", + "chapters_utils.py word: मकरंद\n", + "chapters_utils.py word_cleaned: मकरंद\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपहार।\n", + "chapters_utils.py word_cleaned: उपहार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'खड़े तीन पीपल गाँव की डगर पर,', 'sortOrder': 0, 'id': 2180}\n", + "chapters_utils.py words: ['खड़े', 'तीन', 'पीपल', 'गाँव', 'की', 'डगर', 'पर,']\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तीन\n", + "chapters_utils.py word_cleaned: तीन\n", + "chapters_utils.py word: पीपल\n", + "chapters_utils.py word_cleaned: पीपल\n", + "chapters_utils.py word: गाँव\n", + "chapters_utils.py word_cleaned: गाँव\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: डगर\n", + "chapters_utils.py word_cleaned: डगर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py paragraph: {'originalText': 'तोते खाएँ कुतर उसके नर्म गूलर।', 'sortOrder': 1, 'id': 2181}\n", + "chapters_utils.py words: ['तोते', 'खाएँ', 'कुतर', 'उसके', 'नर्म', 'गूलर।']\n", + "chapters_utils.py word: तोते\n", + "chapters_utils.py word_cleaned: तोते\n", + "chapters_utils.py word: खाएँ\n", + "chapters_utils.py word_cleaned: खाएँ\n", + "chapters_utils.py word: कुतर\n", + "chapters_utils.py word_cleaned: कुतर\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नर्म\n", + "chapters_utils.py word_cleaned: नर्म\n", + "chapters_utils.py word: गूलर।\n", + "chapters_utils.py word_cleaned: गूलर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दूर खेतों के उस पार लहराते नीम चार,', 'sortOrder': 0, 'id': 2182}\n", + "chapters_utils.py words: ['दूर', 'खेतों', 'के', 'उस', 'पार', 'लहराते', 'नीम', 'चार,']\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: खेतों\n", + "chapters_utils.py word_cleaned: खेतों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उस\n", + "chapters_utils.py word_cleaned: उस\n", + "chapters_utils.py word: पार\n", + "chapters_utils.py word_cleaned: पार\n", + "chapters_utils.py word: लहराते\n", + "chapters_utils.py word_cleaned: लहराते\n", + "chapters_utils.py word: नीम\n", + "chapters_utils.py word_cleaned: नीम\n", + "chapters_utils.py word: चार,\n", + "chapters_utils.py word_cleaned: चार\n", + "chapters_utils.py paragraph: {'originalText': 'निबौरी है कीड़ों को दूर भगाने का उपचार।', 'sortOrder': 1, 'id': 2183}\n", + "chapters_utils.py words: ['निबौरी', 'है', 'कीड़ों', 'को', 'दूर', 'भगाने', 'का', 'उपचार।']\n", + "chapters_utils.py word: निबौरी\n", + "chapters_utils.py word_cleaned: निबौरी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कीड़ों\n", + "chapters_utils.py word_cleaned: कीड़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: भगाने\n", + "chapters_utils.py word_cleaned: भगाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपचार।\n", + "chapters_utils.py word_cleaned: उपचार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'बलखाती धारा के पास जमे जामुन पाँच,', 'sortOrder': 0, 'id': 2184}\n", + "chapters_utils.py words: ['बलखाती', 'धारा', 'के', 'पास', 'जमे', 'जामुन', 'पाँच,']\n", + "chapters_utils.py word: बलखाती\n", + "chapters_utils.py word_cleaned: बलखाती\n", + "chapters_utils.py word: धारा\n", + "chapters_utils.py word_cleaned: धारा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पास\n", + "chapters_utils.py word_cleaned: पास\n", + "chapters_utils.py word: जमे\n", + "chapters_utils.py word_cleaned: जमे\n", + "chapters_utils.py word: जामुन\n", + "chapters_utils.py word_cleaned: जामुन\n", + "chapters_utils.py word: पाँच,\n", + "chapters_utils.py word_cleaned: पाँच\n", + "chapters_utils.py paragraph: {'originalText': 'गिरे-कुचले फलों ने दिया बैंगनी रंग पसार।', 'sortOrder': 1, 'id': 2185}\n", + "chapters_utils.py words: ['गिरे-कुचले', 'फलों', 'ने', 'दिया', 'बैंगनी', 'रंग', 'पसार।']\n", + "chapters_utils.py word: गिरे-कुचले\n", + "chapters_utils.py word_cleaned: गिरेकुचले\n", + "chapters_utils.py word: फलों\n", + "chapters_utils.py word_cleaned: फलों\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: दिया\n", + "chapters_utils.py word_cleaned: दिया\n", + "chapters_utils.py word: बैंगनी\n", + "chapters_utils.py word_cleaned: बैंगनी\n", + "chapters_utils.py word: रंग\n", + "chapters_utils.py word_cleaned: रंग\n", + "chapters_utils.py word: पसार।\n", + "chapters_utils.py word_cleaned: पसार।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'पारिजात के छ: पेड़ घने मेंड़ पर खड़े,', 'sortOrder': 0, 'id': 2186}\n", + "chapters_utils.py words: ['पारिजात', 'के', 'छ:', 'पेड़', 'घने', 'मेंड़', 'पर', 'खड़े,']\n", + "chapters_utils.py word: पारिजात\n", + "chapters_utils.py word_cleaned: पारिजात\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: छ:\n", + "chapters_utils.py word_cleaned: छ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: मेंड़\n", + "chapters_utils.py word_cleaned: मेंड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: खड़े,\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py paragraph: {'originalText': 'गुलाबी फूलों पर उमड़े पक्षी छोटे-बड़े।', 'sortOrder': 1, 'id': 2187}\n", + "chapters_utils.py words: ['गुलाबी', 'फूलों', 'पर', 'उमड़े', 'पक्षी', 'छोटे-बड़े।']\n", + "chapters_utils.py word: गुलाबी\n", + "chapters_utils.py word_cleaned: गुलाबी\n", + "chapters_utils.py word: फूलों\n", + "chapters_utils.py word_cleaned: फूलों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उमड़े\n", + "chapters_utils.py word_cleaned: उमड़े\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: छोटे-बड़े।\n", + "chapters_utils.py word_cleaned: छोटेबड़े।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँचे पहाड़ पर टिके सात लंबे देवदार,', 'sortOrder': 0, 'id': 2188}\n", + "chapters_utils.py words: ['ऊँचे', 'पहाड़', 'पर', 'टिके', 'सात', 'लंबे', 'देवदार,']\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: सात\n", + "chapters_utils.py word_cleaned: सात\n", + "chapters_utils.py word: लंबे\n", + "chapters_utils.py word_cleaned: लंबे\n", + "chapters_utils.py word: देवदार,\n", + "chapters_utils.py word_cleaned: देवदार\n", + "chapters_utils.py paragraph: {'originalText': 'तारपीन निकले, इसकी काठ से धूप काठी बने।', 'sortOrder': 1, 'id': 2189}\n", + "chapters_utils.py words: ['तारपीन', 'निकले,', 'इसकी', 'काठ', 'से', 'धूप', 'काठी', 'बने।']\n", + "chapters_utils.py word: तारपीन\n", + "chapters_utils.py word_cleaned: तारपीन\n", + "chapters_utils.py word: निकले,\n", + "chapters_utils.py word_cleaned: निकले\n", + "chapters_utils.py word: इसकी\n", + "chapters_utils.py word_cleaned: इसकी\n", + "chapters_utils.py word: काठ\n", + "chapters_utils.py word_cleaned: काठ\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: काठी\n", + "chapters_utils.py word_cleaned: काठी\n", + "chapters_utils.py word: बने।\n", + "chapters_utils.py word_cleaned: बने।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'इमली के आठ पेड़ कस्बे की सड़क के किनारे,', 'sortOrder': 0, 'id': 2190}\n", + "chapters_utils.py words: ['इमली', 'के', 'आठ', 'पेड़', 'कस्बे', 'की', 'सड़क', 'के', 'किनारे,']\n", + "chapters_utils.py word: इमली\n", + "chapters_utils.py word_cleaned: इमली\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: आठ\n", + "chapters_utils.py word_cleaned: आठ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: कस्बे\n", + "chapters_utils.py word_cleaned: कस्बे\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किनारे,\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py paragraph: {'originalText': 'पक कर गिरी फलियाँ जो भी खाये, मारे चटखारे।', 'sortOrder': 1, 'id': 2191}\n", + "chapters_utils.py words: ['पक', 'कर', 'गिरी', 'फलियाँ', 'जो', 'भी', 'खाये,', 'मारे', 'चटखारे।']\n", + "chapters_utils.py word: पक\n", + "chapters_utils.py word_cleaned: पक\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: गिरी\n", + "chapters_utils.py word_cleaned: गिरी\n", + "chapters_utils.py word: फलियाँ\n", + "chapters_utils.py word_cleaned: फलियाँ\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: खाये,\n", + "chapters_utils.py word_cleaned: खाये\n", + "chapters_utils.py word: मारे\n", + "chapters_utils.py word_cleaned: मारे\n", + "chapters_utils.py word: चटखारे।\n", + "chapters_utils.py word_cleaned: चटखारे।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'घने जंगल के बीच नौ पेड़ साल के खड़े तने,', 'sortOrder': 0, 'id': 2192}\n", + "chapters_utils.py words: ['घने', 'जंगल', 'के', 'बीच', 'नौ', 'पेड़', 'साल', 'के', 'खड़े', 'तने,']\n", + "chapters_utils.py word: घने\n", + "chapters_utils.py word_cleaned: घने\n", + "chapters_utils.py word: जंगल\n", + "chapters_utils.py word_cleaned: जंगल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बीच\n", + "chapters_utils.py word_cleaned: बीच\n", + "chapters_utils.py word: नौ\n", + "chapters_utils.py word_cleaned: नौ\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: साल\n", + "chapters_utils.py word_cleaned: साल\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: खड़े\n", + "chapters_utils.py word_cleaned: खड़े\n", + "chapters_utils.py word: तने,\n", + "chapters_utils.py word_cleaned: तने\n", + "chapters_utils.py paragraph: {'originalText': 'दोने-पत्तल इनके चमड़े से मोटे पत्तों से बनें।', 'sortOrder': 1, 'id': 2193}\n", + "chapters_utils.py words: ['दोने-पत्तल', 'इनके', 'चमड़े', 'से', 'मोटे', 'पत्तों', 'से', 'बनें।']\n", + "chapters_utils.py word: दोने-पत्तल\n", + "chapters_utils.py word_cleaned: दोनेपत्तल\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: चमड़े\n", + "chapters_utils.py word_cleaned: चमड़े\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मोटे\n", + "chapters_utils.py word_cleaned: मोटे\n", + "chapters_utils.py word: पत्तों\n", + "chapters_utils.py word_cleaned: पत्तों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बनें।\n", + "chapters_utils.py word_cleaned: बनें।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'तपती मरुभूमि में खेजड़ी के दस पेड़ पाकर,', 'sortOrder': 0, 'id': 2194}\n", + "chapters_utils.py words: ['तपती', 'मरुभूमि', 'में', 'खेजड़ी', 'के', 'दस', 'पेड़', 'पाकर,']\n", + "chapters_utils.py word: तपती\n", + "chapters_utils.py word_cleaned: तपती\n", + "chapters_utils.py word: मरुभूमि\n", + "chapters_utils.py word_cleaned: मरुभूमि\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खेजड़ी\n", + "chapters_utils.py word_cleaned: खेजड़ी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दस\n", + "chapters_utils.py word_cleaned: दस\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: पाकर,\n", + "chapters_utils.py word_cleaned: पाकर\n", + "chapters_utils.py paragraph: {'originalText': 'ऊँट धन्य हो जाएँ इनकी कोंपल खाकर।', 'sortOrder': 1, 'id': 2195}\n", + "chapters_utils.py words: ['ऊँट', 'धन्य', 'हो', 'जाएँ', 'इनकी', 'कोंपल', 'खाकर।']\n", + "chapters_utils.py word: ऊँट\n", + "chapters_utils.py word_cleaned: ऊँट\n", + "chapters_utils.py word: धन्य\n", + "chapters_utils.py word_cleaned: धन्य\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: जाएँ\n", + "chapters_utils.py word_cleaned: जाएँ\n", + "chapters_utils.py word: इनकी\n", + "chapters_utils.py word_cleaned: इनकी\n", + "chapters_utils.py word: कोंपल\n", + "chapters_utils.py word_cleaned: कोंपल\n", + "chapters_utils.py word: खाकर।\n", + "chapters_utils.py word_cleaned: खाकर।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': 'पेड़ देते प्राणवायु जो आये साँसों के काम,', 'sortOrder': 0, 'id': 2196}\n", + "chapters_utils.py words: ['पेड़', 'देते', 'प्राणवायु', 'जो', 'आये', 'साँसों', 'के', 'काम,']\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: प्राणवायु\n", + "chapters_utils.py word_cleaned: प्राणवायु\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: आये\n", + "chapters_utils.py word_cleaned: आये\n", + "chapters_utils.py word: साँसों\n", + "chapters_utils.py word_cleaned: साँसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: काम,\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py paragraph: {'originalText': 'मिट्टी की उपजाऊ पर्त बचाते,', 'sortOrder': 1, 'id': 2197}\n", + "chapters_utils.py words: ['मिट्टी', 'की', 'उपजाऊ', 'पर्त', 'बचाते,']\n", + "chapters_utils.py word: मिट्टी\n", + "chapters_utils.py word_cleaned: मिट्टी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: उपजाऊ\n", + "chapters_utils.py word_cleaned: उपजाऊ\n", + "chapters_utils.py word: पर्त\n", + "chapters_utils.py word_cleaned: पर्त\n", + "chapters_utils.py word: बचाते,\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py paragraph: {'originalText': 'धूप से इनके पत्ते करते भोजन बनाने का काम।', 'sortOrder': 2, 'id': 2198}\n", + "chapters_utils.py words: ['धूप', 'से', 'इनके', 'पत्ते', 'करते', 'भोजन', 'बनाने', 'का', 'काम।']\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: इनके\n", + "chapters_utils.py word_cleaned: इनके\n", + "chapters_utils.py word: पत्ते\n", + "chapters_utils.py word_cleaned: पत्ते\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: भोजन\n", + "chapters_utils.py word_cleaned: भोजन\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: काम।\n", + "chapters_utils.py word_cleaned: काम।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ न कुछ देते हैं पेड़,', 'sortOrder': 3, 'id': 2199}\n", + "chapters_utils.py words: ['कुछ', 'न', 'कुछ', 'देते', 'हैं', 'पेड़,']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: देते\n", + "chapters_utils.py word_cleaned: देते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पेड़,\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py paragraph: {'originalText': 'बचाते हैं हमें कुदरत की मार से,', 'sortOrder': 4, 'id': 2200}\n", + "chapters_utils.py words: ['बचाते', 'हैं', 'हमें', 'कुदरत', 'की', 'मार', 'से,']\n", + "chapters_utils.py word: बचाते\n", + "chapters_utils.py word_cleaned: बचाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हमें\n", + "chapters_utils.py word_cleaned: हमें\n", + "chapters_utils.py word: कुदरत\n", + "chapters_utils.py word_cleaned: कुदरत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मार\n", + "chapters_utils.py word_cleaned: मार\n", + "chapters_utils.py word: से,\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py paragraph: {'originalText': 'होता है हर कहीं इनका योगदान।', 'sortOrder': 5, 'id': 2201}\n", + "chapters_utils.py words: ['होता', 'है', 'हर', 'कहीं', 'इनका', 'योगदान।']\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: इनका\n", + "chapters_utils.py word_cleaned: इनका\n", + "chapters_utils.py word: योगदान।\n", + "chapters_utils.py word_cleaned: योगदान।\n", + "chapters_utils.py paragraph: {'originalText': 'हर कहीं, हर एक पेड़ की अपनी अहमियत है,', 'sortOrder': 6, 'id': 2202}\n", + "chapters_utils.py words: ['हर', 'कहीं,', 'हर', 'एक', 'पेड़', 'की', 'अपनी', 'अहमियत', 'है,']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: कहीं,\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: अहमियत\n", + "chapters_utils.py word_cleaned: अहमियत\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': 'हर एक पेड़ की बात निराली है!', 'sortOrder': 7, 'id': 2203}\n", + "chapters_utils.py words: ['हर', 'एक', 'पेड़', 'की', 'बात', 'निराली', 'है!']\n", + "chapters_utils.py word: हर\n", + "chapters_utils.py word_cleaned: हर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पेड़\n", + "chapters_utils.py word_cleaned: पेड़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बात\n", + "chapters_utils.py word_cleaned: बात\n", + "chapters_utils.py word: निराली\n", + "chapters_utils.py word_cleaned: निराली\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word_count: 211\n", + "chapters_utils.py total_word_length: 772\n", + "step1_2_preprocess_data.py index: 55\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 12\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'सरला को उड़ती चिड़िया देखना पसंद था।', 'sortOrder': 0, 'id': 1134}\n", + "chapters_utils.py words: ['सरला', 'को', 'उड़ती', 'चिड़िया', 'देखना', 'पसंद', 'था।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': 'एक दिन, विज्ञान की कक्षा में खिड़की के बाहर वह आकाश में पंख फैलाए उड़ती चील देख रही थी। वह चिड़िया कितनी खुश होगी! उसे हवाई जहाज़ को उड़ते देखना भी बहुत पसंद था।', 'sortOrder': 1, 'id': 1135}\n", + "chapters_utils.py words: ['एक', 'दिन,', 'विज्ञान', 'की', 'कक्षा', 'में', 'खिड़की', 'के', 'बाहर', 'वह', 'आकाश', 'में', 'पंख', 'फैलाए', 'उड़ती', 'चील', 'देख', 'रही', 'थी।', 'वह', 'चिड़िया', 'कितनी', 'खुश', 'होगी!', 'उसे', 'हवाई', 'जहाज़', 'को', 'उड़ते', 'देखना', 'भी', 'बहुत', 'पसंद', 'था।']\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: दिन,\n", + "chapters_utils.py word_cleaned: दिन\n", + "chapters_utils.py word: विज्ञान\n", + "chapters_utils.py word_cleaned: विज्ञान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खिड़की\n", + "chapters_utils.py word_cleaned: खिड़की\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बाहर\n", + "chapters_utils.py word_cleaned: बाहर\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: आकाश\n", + "chapters_utils.py word_cleaned: आकाश\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फैलाए\n", + "chapters_utils.py word_cleaned: फैलाए\n", + "chapters_utils.py word: उड़ती\n", + "chapters_utils.py word_cleaned: उड़ती\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: कितनी\n", + "chapters_utils.py word_cleaned: कितनी\n", + "chapters_utils.py word: खुश\n", + "chapters_utils.py word_cleaned: खुश\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: देखना\n", + "chapters_utils.py word_cleaned: देखना\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: था।\n", + "chapters_utils.py word_cleaned: था।\n", + "chapters_utils.py paragraph: {'originalText': '\"सुनो! तुम्हारा नाम क्या है? क्या तुम्हें बोर्ड पर ध्यान नहीं देना चाहिए?\" कक्षा में पढ़ा रही नई अध्य्यापिका ने कहा।', 'sortOrder': 2, 'id': 1136}\n", + "chapters_utils.py words: ['\"सुनो!', 'तुम्हारा', 'नाम', 'क्या', 'है?', 'क्या', 'तुम्हें', 'बोर्ड', 'पर', 'ध्यान', 'नहीं', 'देना', 'चाहिए?\"', 'कक्षा', 'में', 'पढ़ा', 'रही', 'नई', 'अध्य्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"सुनो!\n", + "chapters_utils.py word_cleaned: सुनो\n", + "chapters_utils.py word: तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: बोर्ड\n", + "chapters_utils.py word_cleaned: बोर्ड\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: ध्यान\n", + "chapters_utils.py word_cleaned: ध्यान\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देना\n", + "chapters_utils.py word_cleaned: देना\n", + "chapters_utils.py word: चाहिए?\"\n", + "chapters_utils.py word_cleaned: चाहिए\n", + "chapters_utils.py word: कक्षा\n", + "chapters_utils.py word_cleaned: कक्षा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: पढ़ा\n", + "chapters_utils.py word_cleaned: पढ़ा\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: नई\n", + "chapters_utils.py word_cleaned: नई\n", + "chapters_utils.py word: अध्य्यापिका\n", + "chapters_utils.py word_cleaned: अध्य्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': 'सरला हड़बड़ा कर खड़ी हुई और बोली, \"सॉरी मैडम!\" मैं चील को देख रही थी। काश! हम भी चिड़िया की तरह उड़ पाते या फिर एक हवाई जहाज़ की तरह...', 'sortOrder': 3, 'id': 1137}\n", + "chapters_utils.py words: ['सरला', 'हड़बड़ा', 'कर', 'खड़ी', 'हुई', 'और', 'बोली,', '\"सॉरी', 'मैडम!\"', 'मैं', 'चील', 'को', 'देख', 'रही', 'थी।', 'काश!', 'हम', 'भी', 'चिड़िया', 'की', 'तरह', 'उड़', 'पाते', 'या', 'फिर', 'एक', 'हवाई', 'जहाज़', 'की', 'तरह...']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: हड़बड़ा\n", + "chapters_utils.py word_cleaned: हड़बड़ा\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: खड़ी\n", + "chapters_utils.py word_cleaned: खड़ी\n", + "chapters_utils.py word: हुई\n", + "chapters_utils.py word_cleaned: हुई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बोली,\n", + "chapters_utils.py word_cleaned: बोली\n", + "chapters_utils.py word: \"सॉरी\n", + "chapters_utils.py word_cleaned: सॉरी\n", + "chapters_utils.py word: मैडम!\"\n", + "chapters_utils.py word_cleaned: मैडम\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: चील\n", + "chapters_utils.py word_cleaned: चील\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: देख\n", + "chapters_utils.py word_cleaned: देख\n", + "chapters_utils.py word: रही\n", + "chapters_utils.py word_cleaned: रही\n", + "chapters_utils.py word: थी।\n", + "chapters_utils.py word_cleaned: थी।\n", + "chapters_utils.py word: काश!\n", + "chapters_utils.py word_cleaned: काश\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह...\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py paragraph: {'originalText': '\"तुम्हारा नाम क्या है?\"', 'sortOrder': 4, 'id': 1138}\n", + "chapters_utils.py words: ['\"तुम्हारा', 'नाम', 'क्या', 'है?\"']\n", + "chapters_utils.py word: \"तुम्हारा\n", + "chapters_utils.py word_cleaned: तुम्हारा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: है?\"\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"'सरला'\", 'sortOrder': 5, 'id': 1139}\n", + "chapters_utils.py words: [\"'सरला'\"]\n", + "chapters_utils.py word: 'सरला'\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': '\"अरे वाह! क्या तुम जानती हो कि भारत की पहली महिला विमान चालक (पायलॉट) का नाम भी सरला था? मेरा नाम हंसा है, मतलब \\'हंस\\'। क्या तुम जानती हो कि हंस भी उड़ने वाले बड़े पक्षियों में से एक हैं? अध्यापिका ने कहा।', 'sortOrder': 0, 'id': 1140}\n", + "chapters_utils.py words: ['\"अरे', 'वाह!', 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'भारत', 'की', 'पहली', 'महिला', 'विमान', 'चालक', '(पायलॉट)', 'का', 'नाम', 'भी', 'सरला', 'था?', 'मेरा', 'नाम', 'हंसा', 'है,', 'मतलब', \"'हंस'।\", 'क्या', 'तुम', 'जानती', 'हो', 'कि', 'हंस', 'भी', 'उड़ने', 'वाले', 'बड़े', 'पक्षियों', 'में', 'से', 'एक', 'हैं?', 'अध्यापिका', 'ने', 'कहा।']\n", + "chapters_utils.py word: \"अरे\n", + "chapters_utils.py word_cleaned: अरे\n", + "chapters_utils.py word: वाह!\n", + "chapters_utils.py word_cleaned: वाह\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: भारत\n", + "chapters_utils.py word_cleaned: भारत\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: पहली\n", + "chapters_utils.py word_cleaned: पहली\n", + "chapters_utils.py word: महिला\n", + "chapters_utils.py word_cleaned: महिला\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: (पायलॉट)\n", + "chapters_utils.py word_cleaned: पायलॉट\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: था?\n", + "chapters_utils.py word_cleaned: था\n", + "chapters_utils.py word: मेरा\n", + "chapters_utils.py word_cleaned: मेरा\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: हंसा\n", + "chapters_utils.py word_cleaned: हंसा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: मतलब\n", + "chapters_utils.py word_cleaned: मतलब\n", + "chapters_utils.py word: 'हंस'।\n", + "chapters_utils.py word_cleaned: हंस।\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जानती\n", + "chapters_utils.py word_cleaned: जानती\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हंस\n", + "chapters_utils.py word_cleaned: हंस\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाले\n", + "chapters_utils.py word_cleaned: वाले\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: अध्यापिका\n", + "chapters_utils.py word_cleaned: अध्यापिका\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: कहा।\n", + "chapters_utils.py word_cleaned: कहा।\n", + "chapters_utils.py paragraph: {'originalText': '\"सरला! तुम्हें कुछ समय पुस्तकालय में बिताना चाहिए। वहाँ पक्षियों और विमानों के बारे में बहुत -सी किताबें हैं, और यंत्रों के बारे में भी, जैसे कि हवाई जहाज़।', 'sortOrder': 1, 'id': 1141}\n", + "chapters_utils.py words: ['\"सरला!', 'तुम्हें', 'कुछ', 'समय', 'पुस्तकालय', 'में', 'बिताना', 'चाहिए।', 'वहाँ', 'पक्षियों', 'और', 'विमानों', 'के', 'बारे', 'में', 'बहुत', '-सी', 'किताबें', 'हैं,', 'और', 'यंत्रों', 'के', 'बारे', 'में', 'भी,', 'जैसे', 'कि', 'हवाई', 'जहाज़।']\n", + "chapters_utils.py word: \"सरला!\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: तुम्हें\n", + "chapters_utils.py word_cleaned: तुम्हें\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: पुस्तकालय\n", + "chapters_utils.py word_cleaned: पुस्तकालय\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बिताना\n", + "chapters_utils.py word_cleaned: बिताना\n", + "chapters_utils.py word: चाहिए।\n", + "chapters_utils.py word_cleaned: चाहिए।\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: -सी\n", + "chapters_utils.py word_cleaned: सी\n", + "chapters_utils.py word: किताबें\n", + "chapters_utils.py word_cleaned: किताबें\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यंत्रों\n", + "chapters_utils.py word_cleaned: यंत्रों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: भी,\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़।\n", + "chapters_utils.py word_cleaned: जहाज़।\n", + "chapters_utils.py paragraph: {'originalText': 'कुछ ही दिनों में वह पशु-पक्षियों के बारे में बहुत कुछ जान गई और यह भी कि हम हवाई जहाज़ की तरह क्यों नहीं उड़ सकते!', 'sortOrder': 2, 'id': 1142}\n", + "chapters_utils.py words: ['कुछ', 'ही', 'दिनों', 'में', 'वह', 'पशु-पक्षियों', 'के', 'बारे', 'में', 'बहुत', 'कुछ', 'जान', 'गई', 'और', 'यह', 'भी', 'कि', 'हम', 'हवाई', 'जहाज़', 'की', 'तरह', 'क्यों', 'नहीं', 'उड़', 'सकते!']\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: दिनों\n", + "chapters_utils.py word_cleaned: दिनों\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: पशु-पक्षियों\n", + "chapters_utils.py word_cleaned: पशुपक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: बारे\n", + "chapters_utils.py word_cleaned: बारे\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: जान\n", + "chapters_utils.py word_cleaned: जान\n", + "chapters_utils.py word: गई\n", + "chapters_utils.py word_cleaned: गई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: क्यों\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते!\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सरला ने सीखा कि मानव भी उड़ सकते हैं, पर पक्षियों की तरह नहीं। हम मनुष्य के एक महान आविष्कार, हवाई जहाज़ में बैठकर विश्व के किसी भी नगर से उड़ान भर सकते हैं।', 'sortOrder': 0, 'id': 1143}\n", + "chapters_utils.py words: ['सरला', 'ने', 'सीखा', 'कि', 'मानव', 'भी', 'उड़', 'सकते', 'हैं,', 'पर', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'हम', 'मनुष्य', 'के', 'एक', 'महान', 'आविष्कार,', 'हवाई', 'जहाज़', 'में', 'बैठकर', 'विश्व', 'के', 'किसी', 'भी', 'नगर', 'से', 'उड़ान', 'भर', 'सकते', 'हैं।']\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: ने\n", + "chapters_utils.py word_cleaned: ने\n", + "chapters_utils.py word: सीखा\n", + "chapters_utils.py word_cleaned: सीखा\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मानव\n", + "chapters_utils.py word_cleaned: मानव\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: मनुष्य\n", + "chapters_utils.py word_cleaned: मनुष्य\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: आविष्कार,\n", + "chapters_utils.py word_cleaned: आविष्कार\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बैठकर\n", + "chapters_utils.py word_cleaned: बैठकर\n", + "chapters_utils.py word: विश्व\n", + "chapters_utils.py word_cleaned: विश्व\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: नगर\n", + "chapters_utils.py word_cleaned: नगर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भर\n", + "chapters_utils.py word_cleaned: भर\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'इस महान यंत्र की सहायता से हम हवा में उड़ने का मज़ा ले सकते हैं। पक्षी हवाई जीव होते हैं जिन्हें उड़ने के लिए बाहरी यंत्र की ज़रूरत नहीं होती। आमतौर पर, एक पक्षी के पंख उसके शरीर से बड़े होते हैं। पंख बड़े हल्के होते हैं और इसलिए वे उड़ पाते हैं।', 'sortOrder': 1, 'id': 1144}\n", + "chapters_utils.py words: ['इस', 'महान', 'यंत्र', 'की', 'सहायता', 'से', 'हम', 'हवा', 'में', 'उड़ने', 'का', 'मज़ा', 'ले', 'सकते', 'हैं।', 'पक्षी', 'हवाई', 'जीव', 'होते', 'हैं', 'जिन्हें', 'उड़ने', 'के', 'लिए', 'बाहरी', 'यंत्र', 'की', 'ज़रूरत', 'नहीं', 'होती।', 'आमतौर', 'पर,', 'एक', 'पक्षी', 'के', 'पंख', 'उसके', 'शरीर', 'से', 'बड़े', 'होते', 'हैं।', 'पंख', 'बड़े', 'हल्के', 'होते', 'हैं', 'और', 'इसलिए', 'वे', 'उड़', 'पाते', 'हैं।']\n", + "chapters_utils.py word: इस\n", + "chapters_utils.py word_cleaned: इस\n", + "chapters_utils.py word: महान\n", + "chapters_utils.py word_cleaned: महान\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: हम\n", + "chapters_utils.py word_cleaned: हम\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: मज़ा\n", + "chapters_utils.py word_cleaned: मज़ा\n", + "chapters_utils.py word: ले\n", + "chapters_utils.py word_cleaned: ले\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जीव\n", + "chapters_utils.py word_cleaned: जीव\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिन्हें\n", + "chapters_utils.py word_cleaned: जिन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बाहरी\n", + "chapters_utils.py word_cleaned: बाहरी\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होती।\n", + "chapters_utils.py word_cleaned: होती।\n", + "chapters_utils.py word: आमतौर\n", + "chapters_utils.py word_cleaned: आमतौर\n", + "chapters_utils.py word: पर,\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: हल्के\n", + "chapters_utils.py word_cleaned: हल्के\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: इसलिए\n", + "chapters_utils.py word_cleaned: इसलिए\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ बहुत बड़े और बहुत भारी होते हैं। उसके दोनों किनारे पर पक्षी की तरह ही पंख बने होते हैं, जो उन्हें उड़ने में मदद करते हैं। इन जहाजों के पंखों की बनावट ठीक पक्षियों के पंखों जैसी होती हैं। नीचे से सपाट और ऊपर से मुड़े हुए, जो उन्हें आसमान में बहुत ऊँचे तक उड़ने में मदद करते हैं।', 'sortOrder': 0, 'id': 1145}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'बहुत', 'बड़े', 'और', 'बहुत', 'भारी', 'होते', 'हैं।', 'उसके', 'दोनों', 'किनारे', 'पर', 'पक्षी', 'की', 'तरह', 'ही', 'पंख', 'बने', 'होते', 'हैं,', 'जो', 'उन्हें', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।', 'इन', 'जहाजों', 'के', 'पंखों', 'की', 'बनावट', 'ठीक', 'पक्षियों', 'के', 'पंखों', 'जैसी', 'होती', 'हैं।', 'नीचे', 'से', 'सपाट', 'और', 'ऊपर', 'से', 'मुड़े', 'हुए,', 'जो', 'उन्हें', 'आसमान', 'में', 'बहुत', 'ऊँचे', 'तक', 'उड़ने', 'में', 'मदद', 'करते', 'हैं।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: भारी\n", + "chapters_utils.py word_cleaned: भारी\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: दोनों\n", + "chapters_utils.py word_cleaned: दोनों\n", + "chapters_utils.py word: किनारे\n", + "chapters_utils.py word_cleaned: किनारे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: बने\n", + "chapters_utils.py word_cleaned: बने\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: जहाजों\n", + "chapters_utils.py word_cleaned: जहाजों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: बनावट\n", + "chapters_utils.py word_cleaned: बनावट\n", + "chapters_utils.py word: ठीक\n", + "chapters_utils.py word_cleaned: ठीक\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: सपाट\n", + "chapters_utils.py word_cleaned: सपाट\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: मुड़े\n", + "chapters_utils.py word_cleaned: मुड़े\n", + "chapters_utils.py word: हुए,\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ऊँचे\n", + "chapters_utils.py word_cleaned: ऊँचे\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पक्षी उड़ने के समय अपने पंख फड़फड़ाते हैं, लेकिन हमने\\xa0हवाई जहाज़ के पंखों को फड़फड़ाते हुए कभी नहीं देखा! पक्षी अपने पंख फड़फड़ाते हैं ताकि वे अपने शरीर को ऊपर धकेलने में हवा का उपयोग कर सकें।', 'sortOrder': 0, 'id': 1146}\n", + "chapters_utils.py words: ['पक्षी', 'उड़ने', 'के', 'समय', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं,', 'लेकिन', 'हमने', 'हवाई', 'जहाज़', 'के', 'पंखों', 'को', 'फड़फड़ाते', 'हुए', 'कभी', 'नहीं', 'देखा!', 'पक्षी', 'अपने', 'पंख', 'फड़फड़ाते', 'हैं', 'ताकि', 'वे', 'अपने', 'शरीर', 'को', 'ऊपर', 'धकेलने', 'में', 'हवा', 'का', 'उपयोग', 'कर', 'सकें।']\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: लेकिन\n", + "chapters_utils.py word_cleaned: लेकिन\n", + "chapters_utils.py word: हमने\n", + "chapters_utils.py word_cleaned: हमने\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हुए\n", + "chapters_utils.py word_cleaned: हुए\n", + "chapters_utils.py word: कभी\n", + "chapters_utils.py word_cleaned: कभी\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: देखा!\n", + "chapters_utils.py word_cleaned: देखा\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: फड़फड़ाते\n", + "chapters_utils.py word_cleaned: फड़फड़ाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: ताकि\n", + "chapters_utils.py word_cleaned: ताकि\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: शरीर\n", + "chapters_utils.py word_cleaned: शरीर\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: धकेलने\n", + "chapters_utils.py word_cleaned: धकेलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: उपयोग\n", + "chapters_utils.py word_cleaned: उपयोग\n", + "chapters_utils.py word: कर\n", + "chapters_utils.py word_cleaned: कर\n", + "chapters_utils.py word: सकें।\n", + "chapters_utils.py word_cleaned: सकें।\n", + "chapters_utils.py paragraph: {'originalText': 'हवाई जहाज़ भी हवा के दवाब की मदद से ही उड़ते हैं। यह यंत्र अपने अंदर लगी इंजिन के सहारे विमान के नीचे हवा का दवाब बनाता है।', 'sortOrder': 1, 'id': 1147}\n", + "chapters_utils.py words: ['हवाई', 'जहाज़', 'भी', 'हवा', 'के', 'दवाब', 'की', 'मदद', 'से', 'ही', 'उड़ते', 'हैं।', 'यह', 'यंत्र', 'अपने', 'अंदर', 'लगी', 'इंजिन', 'के', 'सहारे', 'विमान', 'के', 'नीचे', 'हवा', 'का', 'दवाब', 'बनाता', 'है।']\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: लगी\n", + "chapters_utils.py word_cleaned: लगी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: सहारे\n", + "chapters_utils.py word_cleaned: सहारे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नीचे\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दवाब\n", + "chapters_utils.py word_cleaned: दवाब\n", + "chapters_utils.py word: बनाता\n", + "chapters_utils.py word_cleaned: बनाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'इंजिन बहुत ही मज़बूत यंत्र है जो हवाई जहाज़ के दिमाग की तरह (तेज़) काम करती है। जिस तरह पक्षी अपना दिमाग लगाते हैं और सीखते हैं कि कैसे उड़ा जाय,वैसे ही इंजिन विमान को ज़मीन से ऊपर की ओर धकेलती है और उन्हें आगे बढ़ने में मदद करती है।', 'sortOrder': 0, 'id': 1148}\n", + "chapters_utils.py words: ['इंजिन', 'बहुत', 'ही', 'मज़बूत', 'यंत्र', 'है', 'जो', 'हवाई', 'जहाज़', 'के', 'दिमाग', 'की', 'तरह', '(तेज़)', 'काम', 'करती', 'है।', 'जिस', 'तरह', 'पक्षी', 'अपना', 'दिमाग', 'लगाते', 'हैं', 'और', 'सीखते', 'हैं', 'कि', 'कैसे', 'उड़ा', 'जाय,वैसे', 'ही', 'इंजिन', 'विमान', 'को', 'ज़मीन', 'से', 'ऊपर', 'की', 'ओर', 'धकेलती', 'है', 'और', 'उन्हें', 'आगे', 'बढ़ने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: मज़बूत\n", + "chapters_utils.py word_cleaned: मज़बूत\n", + "chapters_utils.py word: यंत्र\n", + "chapters_utils.py word_cleaned: यंत्र\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: (तेज़)\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: काम\n", + "chapters_utils.py word_cleaned: काम\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: अपना\n", + "chapters_utils.py word_cleaned: अपना\n", + "chapters_utils.py word: दिमाग\n", + "chapters_utils.py word_cleaned: दिमाग\n", + "chapters_utils.py word: लगाते\n", + "chapters_utils.py word_cleaned: लगाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: सीखते\n", + "chapters_utils.py word_cleaned: सीखते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कैसे\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: उड़ा\n", + "chapters_utils.py word_cleaned: उड़ा\n", + "chapters_utils.py word: जाय,वैसे\n", + "chapters_utils.py word_cleaned: जायवैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: धकेलती\n", + "chapters_utils.py word_cleaned: धकेलती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ने\n", + "chapters_utils.py word_cleaned: बढ़ने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'जब विमान की इंजिन ईंधन को जलाती है तो वे बहुत ही तेज़ गति से गर्म गैसें छोड़ती हैं, जिससे इंजिन के पीछे हवा का दबाव बनता है और उससे विमान आगे बढ़ता है।', 'sortOrder': 1, 'id': 1149}\n", + "chapters_utils.py words: ['जब', 'विमान', 'की', 'इंजिन', 'ईंधन', 'को', 'जलाती', 'है', 'तो', 'वे', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'गर्म', 'गैसें', 'छोड़ती', 'हैं,', 'जिससे', 'इंजिन', 'के', 'पीछे', 'हवा', 'का', 'दबाव', 'बनता', 'है', 'और', 'उससे', 'विमान', 'आगे', 'बढ़ता', 'है।']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: ईंधन\n", + "chapters_utils.py word_cleaned: ईंधन\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: जलाती\n", + "chapters_utils.py word_cleaned: जलाती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: गर्म\n", + "chapters_utils.py word_cleaned: गर्म\n", + "chapters_utils.py word: गैसें\n", + "chapters_utils.py word_cleaned: गैसें\n", + "chapters_utils.py word: छोड़ती\n", + "chapters_utils.py word_cleaned: छोड़ती\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जिससे\n", + "chapters_utils.py word_cleaned: जिससे\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पीछे\n", + "chapters_utils.py word_cleaned: पीछे\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: बनता\n", + "chapters_utils.py word_cleaned: बनता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उससे\n", + "chapters_utils.py word_cleaned: उससे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: आगे\n", + "chapters_utils.py word_cleaned: आगे\n", + "chapters_utils.py word: बढ़ता\n", + "chapters_utils.py word_cleaned: बढ़ता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'कार एवं अन्य वाहन भी इंजिन की सहायता से ही चलते हैं, मगर वे विमान की तरह आसमान में उड़ नहीं सकते। हवा विमान के उन पंखों के ऊपर और अंदर बहती है जो पक्षी के पंख जैसे होते है, इन्हीं के दबाव से विमान ऊपर उठते हैं और टिके रहते हैं। विमान की भी पूँछ होती हैं - बिलकुल चिड़िया की तरह, जो उन्हें हवा में टिकने और दिशा बदलने में मदद करती है।', 'sortOrder': 0, 'id': 1150}\n", + "chapters_utils.py words: ['कार', 'एवं', 'अन्य', 'वाहन', 'भी', 'इंजिन', 'की', 'सहायता', 'से', 'ही', 'चलते', 'हैं,', 'मगर', 'वे', 'विमान', 'की', 'तरह', 'आसमान', 'में', 'उड़', 'नहीं', 'सकते।', 'हवा', 'विमान', 'के', 'उन', 'पंखों', 'के', 'ऊपर', 'और', 'अंदर', 'बहती', 'है', 'जो', 'पक्षी', 'के', 'पंख', 'जैसे', 'होते', 'है,', 'इन्हीं', 'के', 'दबाव', 'से', 'विमान', 'ऊपर', 'उठते', 'हैं', 'और', 'टिके', 'रहते', 'हैं।', 'विमान', 'की', 'भी', 'पूँछ', 'होती', 'हैं', '-', 'बिलकुल', 'चिड़िया', 'की', 'तरह,', 'जो', 'उन्हें', 'हवा', 'में', 'टिकने', 'और', 'दिशा', 'बदलने', 'में', 'मदद', 'करती', 'है।']\n", + "chapters_utils.py word: कार\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: एवं\n", + "chapters_utils.py word_cleaned: एवं\n", + "chapters_utils.py word: अन्य\n", + "chapters_utils.py word_cleaned: अन्य\n", + "chapters_utils.py word: वाहन\n", + "chapters_utils.py word_cleaned: वाहन\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: इंजिन\n", + "chapters_utils.py word_cleaned: इंजिन\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: सहायता\n", + "chapters_utils.py word_cleaned: सहायता\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: चलते\n", + "chapters_utils.py word_cleaned: चलते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: मगर\n", + "chapters_utils.py word_cleaned: मगर\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: आसमान\n", + "chapters_utils.py word_cleaned: आसमान\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: सकते।\n", + "chapters_utils.py word_cleaned: सकते।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: उन\n", + "chapters_utils.py word_cleaned: उन\n", + "chapters_utils.py word: पंखों\n", + "chapters_utils.py word_cleaned: पंखों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: बहती\n", + "chapters_utils.py word_cleaned: बहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पंख\n", + "chapters_utils.py word_cleaned: पंख\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: इन्हीं\n", + "chapters_utils.py word_cleaned: इन्हीं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: दबाव\n", + "chapters_utils.py word_cleaned: दबाव\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठते\n", + "chapters_utils.py word_cleaned: उठते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: टिके\n", + "chapters_utils.py word_cleaned: टिके\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: पूँछ\n", + "chapters_utils.py word_cleaned: पूँछ\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: बिलकुल\n", + "chapters_utils.py word_cleaned: बिलकुल\n", + "chapters_utils.py word: चिड़िया\n", + "chapters_utils.py word_cleaned: चिड़िया\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह,\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: टिकने\n", + "chapters_utils.py word_cleaned: टिकने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: दिशा\n", + "chapters_utils.py word_cleaned: दिशा\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: करती\n", + "chapters_utils.py word_cleaned: करती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': \"विमानों को उड़ान भरने और उतरने के लिए बड़ी लंबी सड़क की ज़रूरत होती है। इन लंबी सड़कों को 'रनवे' कहा जाता है। विमान को उड़ान भरने और उतरने से पहले रनवे पर बहुत ही तेज़ गति से दौड़ना होता है। हवा में ऊपर उठने के लिए विमान को बहुत ही तेज़ गति की ज़रूरत होती है।\", 'sortOrder': 0, 'id': 1151}\n", + "chapters_utils.py words: ['विमानों', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'के', 'लिए', 'बड़ी', 'लंबी', 'सड़क', 'की', 'ज़रूरत', 'होती', 'है।', 'इन', 'लंबी', 'सड़कों', 'को', \"'रनवे'\", 'कहा', 'जाता', 'है।', 'विमान', 'को', 'उड़ान', 'भरने', 'और', 'उतरने', 'से', 'पहले', 'रनवे', 'पर', 'बहुत', 'ही', 'तेज़', 'गति', 'से', 'दौड़ना', 'होता', 'है।', 'हवा', 'में', 'ऊपर', 'उठने', 'के', 'लिए', 'विमान', 'को', 'बहुत', 'ही', 'तेज़', 'गति', 'की', 'ज़रूरत', 'होती', 'है।']\n", + "chapters_utils.py word: विमानों\n", + "chapters_utils.py word_cleaned: विमानों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: लंबी\n", + "chapters_utils.py word_cleaned: लंबी\n", + "chapters_utils.py word: सड़कों\n", + "chapters_utils.py word_cleaned: सड़कों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: 'रनवे'\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: कहा\n", + "chapters_utils.py word_cleaned: कहा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरने\n", + "chapters_utils.py word_cleaned: भरने\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरने\n", + "chapters_utils.py word_cleaned: उतरने\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ना\n", + "chapters_utils.py word_cleaned: दौड़ना\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: हवा\n", + "chapters_utils.py word_cleaned: हवा\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: उठने\n", + "chapters_utils.py word_cleaned: उठने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़\n", + "chapters_utils.py word_cleaned: तेज़\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: ज़रूरत\n", + "chapters_utils.py word_cleaned: ज़रूरत\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'अधिकांश हवाई जहाज़ तभी उड़ पाते हैं जब वे बहुत ही तेज़ी से दौड़ते हैं। रनवे हवाई अड्डा का एक महत्वपूर्ण हिस्सा है, जो हवाई जहाज़ों को अपनी गति बढ़ाने के लिए पर्याप्त समय देता है। और अंत में वे उड़ान भरते हैं।', 'sortOrder': 1, 'id': 1152}\n", + "chapters_utils.py words: ['अधिकांश', 'हवाई', 'जहाज़', 'तभी', 'उड़', 'पाते', 'हैं', 'जब', 'वे', 'बहुत', 'ही', 'तेज़ी', 'से', 'दौड़ते', 'हैं।', 'रनवे', 'हवाई', 'अड्डा', 'का', 'एक', 'महत्वपूर्ण', 'हिस्सा', 'है,', 'जो', 'हवाई', 'जहाज़ों', 'को', 'अपनी', 'गति', 'बढ़ाने', 'के', 'लिए', 'पर्याप्त', 'समय', 'देता', 'है।', 'और', 'अंत', 'में', 'वे', 'उड़ान', 'भरते', 'हैं।']\n", + "chapters_utils.py word: अधिकांश\n", + "chapters_utils.py word_cleaned: अधिकांश\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: तभी\n", + "chapters_utils.py word_cleaned: तभी\n", + "chapters_utils.py word: उड़\n", + "chapters_utils.py word_cleaned: उड़\n", + "chapters_utils.py word: पाते\n", + "chapters_utils.py word_cleaned: पाते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: तेज़ी\n", + "chapters_utils.py word_cleaned: तेज़ी\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: दौड़ते\n", + "chapters_utils.py word_cleaned: दौड़ते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: रनवे\n", + "chapters_utils.py word_cleaned: रनवे\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डा\n", + "chapters_utils.py word_cleaned: अड्डा\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: महत्वपूर्ण\n", + "chapters_utils.py word_cleaned: महत्वपूर्ण\n", + "chapters_utils.py word: हिस्सा\n", + "chapters_utils.py word_cleaned: हिस्सा\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: गति\n", + "chapters_utils.py word_cleaned: गति\n", + "chapters_utils.py word: बढ़ाने\n", + "chapters_utils.py word_cleaned: बढ़ाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: पर्याप्त\n", + "chapters_utils.py word_cleaned: पर्याप्त\n", + "chapters_utils.py word: समय\n", + "chapters_utils.py word_cleaned: समय\n", + "chapters_utils.py word: देता\n", + "chapters_utils.py word_cleaned: देता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: अंत\n", + "chapters_utils.py word_cleaned: अंत\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 8\n", + "chapters_utils.py paragraph: {'originalText': 'विमान जानते हैं कि उन्हें कहाँ जाना है, क्योंकि विमानचालक उन्हें चलाते हैं। ये चालक विमान के अंदर, सामने की एक जगह, जिसे चालक स्थल (कॉकपिट) कहते हैं, से उन्हें नियंत्रित\\xa0(कंट्रोल) करते हैं। वे बहुत ही सटीक और आधुनिक डिवाइसों के द्वारा हवाई अड्डों (एक जगह जहाँ हवाई जहाज़ उड़ान भरते और उतरते हैं) के संपर्क में रहते हैं। जिस तरह हमारी मदद के लिए सड़क पर सिग्नल और पुलिस होती है, वैसे ही वायु यातायात नियंत्रक (एयर ट्रैफिक कंट्रोलर) होते हैं जो विमान चालक को बताते हैं कि कब और किस ओर उड़ान भरनी है और कब उड़ान भरना या उतरना सुरक्षित रहेगा।', 'sortOrder': 0, 'id': 1153}\n", + "chapters_utils.py words: ['विमान', 'जानते', 'हैं', 'कि', 'उन्हें', 'कहाँ', 'जाना', 'है,', 'क्योंकि', 'विमानचालक', 'उन्हें', 'चलाते', 'हैं।', 'ये', 'चालक', 'विमान', 'के', 'अंदर,', 'सामने', 'की', 'एक', 'जगह,', 'जिसे', 'चालक', 'स्थल', '(कॉकपिट)', 'कहते', 'हैं,', 'से', 'उन्हें', 'नियंत्रित', '(कंट्रोल)', 'करते', 'हैं।', 'वे', 'बहुत', 'ही', 'सटीक', 'और', 'आधुनिक', 'डिवाइसों', 'के', 'द्वारा', 'हवाई', 'अड्डों', '(एक', 'जगह', 'जहाँ', 'हवाई', 'जहाज़', 'उड़ान', 'भरते', 'और', 'उतरते', 'हैं)', 'के', 'संपर्क', 'में', 'रहते', 'हैं।', 'जिस', 'तरह', 'हमारी', 'मदद', 'के', 'लिए', 'सड़क', 'पर', 'सिग्नल', 'और', 'पुलिस', 'होती', 'है,', 'वैसे', 'ही', 'वायु', 'यातायात', 'नियंत्रक', '(एयर', 'ट्रैफिक', 'कंट्रोलर)', 'होते', 'हैं', 'जो', 'विमान', 'चालक', 'को', 'बताते', 'हैं', 'कि', 'कब', 'और', 'किस', 'ओर', 'उड़ान', 'भरनी', 'है', 'और', 'कब', 'उड़ान', 'भरना', 'या', 'उतरना', 'सुरक्षित', 'रहेगा।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: कहाँ\n", + "chapters_utils.py word_cleaned: कहाँ\n", + "chapters_utils.py word: जाना\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: क्योंकि\n", + "chapters_utils.py word_cleaned: क्योंकि\n", + "chapters_utils.py word: विमानचालक\n", + "chapters_utils.py word_cleaned: विमानचालक\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: चलाते\n", + "chapters_utils.py word_cleaned: चलाते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: अंदर,\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह,\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जिसे\n", + "chapters_utils.py word_cleaned: जिसे\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: स्थल\n", + "chapters_utils.py word_cleaned: स्थल\n", + "chapters_utils.py word: (कॉकपिट)\n", + "chapters_utils.py word_cleaned: कॉकपिट\n", + "chapters_utils.py word: कहते\n", + "chapters_utils.py word_cleaned: कहते\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: नियंत्रित\n", + "chapters_utils.py word_cleaned: नियंत्रित\n", + "chapters_utils.py word: (कंट्रोल)\n", + "chapters_utils.py word_cleaned: कंट्रोल\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: वे\n", + "chapters_utils.py word_cleaned: वे\n", + "chapters_utils.py word: बहुत\n", + "chapters_utils.py word_cleaned: बहुत\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: सटीक\n", + "chapters_utils.py word_cleaned: सटीक\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: आधुनिक\n", + "chapters_utils.py word_cleaned: आधुनिक\n", + "chapters_utils.py word: डिवाइसों\n", + "chapters_utils.py word_cleaned: डिवाइसों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: द्वारा\n", + "chapters_utils.py word_cleaned: द्वारा\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: अड्डों\n", + "chapters_utils.py word_cleaned: अड्डों\n", + "chapters_utils.py word: (एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: जहाँ\n", + "chapters_utils.py word_cleaned: जहाँ\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरते\n", + "chapters_utils.py word_cleaned: भरते\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: उतरते\n", + "chapters_utils.py word_cleaned: उतरते\n", + "chapters_utils.py word: हैं)\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: संपर्क\n", + "chapters_utils.py word_cleaned: संपर्क\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: रहते\n", + "chapters_utils.py word_cleaned: रहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: जिस\n", + "chapters_utils.py word_cleaned: जिस\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: हमारी\n", + "chapters_utils.py word_cleaned: हमारी\n", + "chapters_utils.py word: मदद\n", + "chapters_utils.py word_cleaned: मदद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: सड़क\n", + "chapters_utils.py word_cleaned: सड़क\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सिग्नल\n", + "chapters_utils.py word_cleaned: सिग्नल\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: पुलिस\n", + "chapters_utils.py word_cleaned: पुलिस\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: वैसे\n", + "chapters_utils.py word_cleaned: वैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वायु\n", + "chapters_utils.py word_cleaned: वायु\n", + "chapters_utils.py word: यातायात\n", + "chapters_utils.py word_cleaned: यातायात\n", + "chapters_utils.py word: नियंत्रक\n", + "chapters_utils.py word_cleaned: नियंत्रक\n", + "chapters_utils.py word: (एयर\n", + "chapters_utils.py word_cleaned: एयर\n", + "chapters_utils.py word: ट्रैफिक\n", + "chapters_utils.py word_cleaned: ट्रैफिक\n", + "chapters_utils.py word: कंट्रोलर)\n", + "chapters_utils.py word_cleaned: कंट्रोलर\n", + "chapters_utils.py word: होते\n", + "chapters_utils.py word_cleaned: होते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बताते\n", + "chapters_utils.py word_cleaned: बताते\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: किस\n", + "chapters_utils.py word_cleaned: किस\n", + "chapters_utils.py word: ओर\n", + "chapters_utils.py word_cleaned: ओर\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरनी\n", + "chapters_utils.py word_cleaned: भरनी\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कब\n", + "chapters_utils.py word_cleaned: कब\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरना\n", + "chapters_utils.py word_cleaned: भरना\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: सुरक्षित\n", + "chapters_utils.py word_cleaned: सुरक्षित\n", + "chapters_utils.py word: रहेगा।\n", + "chapters_utils.py word_cleaned: रहेगा।\n", + "chapters_utils.py paragraph: {'originalText': 'विमान वास्तव में एक विशाल पक्षी है! न सिर्फ़ इसका आकार पक्षी की तरह है, बल्कि ये उड़ते भी हैं, हालाँकि पक्षियों की तरह नहीं। सरला बड़ी होकर विमान चालक बनना चाहती है और हवाई जहाज़ उड़ाना चाहती है।', 'sortOrder': 1, 'id': 1154}\n", + "chapters_utils.py words: ['विमान', 'वास्तव', 'में', 'एक', 'विशाल', 'पक्षी', 'है!', 'न', 'सिर्फ़', 'इसका', 'आकार', 'पक्षी', 'की', 'तरह', 'है,', 'बल्कि', 'ये', 'उड़ते', 'भी', 'हैं,', 'हालाँकि', 'पक्षियों', 'की', 'तरह', 'नहीं।', 'सरला', 'बड़ी', 'होकर', 'विमान', 'चालक', 'बनना', 'चाहती', 'है', 'और', 'हवाई', 'जहाज़', 'उड़ाना', 'चाहती', 'है।']\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: वास्तव\n", + "chapters_utils.py word_cleaned: वास्तव\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: विशाल\n", + "chapters_utils.py word_cleaned: विशाल\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: है!\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: न\n", + "chapters_utils.py word_cleaned: न\n", + "chapters_utils.py word: सिर्फ़\n", + "chapters_utils.py word_cleaned: सिर्फ़\n", + "chapters_utils.py word: इसका\n", + "chapters_utils.py word_cleaned: इसका\n", + "chapters_utils.py word: आकार\n", + "chapters_utils.py word_cleaned: आकार\n", + "chapters_utils.py word: पक्षी\n", + "chapters_utils.py word_cleaned: पक्षी\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: है,\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: बल्कि\n", + "chapters_utils.py word_cleaned: बल्कि\n", + "chapters_utils.py word: ये\n", + "chapters_utils.py word_cleaned: ये\n", + "chapters_utils.py word: उड़ते\n", + "chapters_utils.py word_cleaned: उड़ते\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हैं,\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: हालाँकि\n", + "chapters_utils.py word_cleaned: हालाँकि\n", + "chapters_utils.py word: पक्षियों\n", + "chapters_utils.py word_cleaned: पक्षियों\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: नहीं।\n", + "chapters_utils.py word_cleaned: नहीं।\n", + "chapters_utils.py word: सरला\n", + "chapters_utils.py word_cleaned: सरला\n", + "chapters_utils.py word: बड़ी\n", + "chapters_utils.py word_cleaned: बड़ी\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: विमान\n", + "chapters_utils.py word_cleaned: विमान\n", + "chapters_utils.py word: चालक\n", + "chapters_utils.py word_cleaned: चालक\n", + "chapters_utils.py word: बनना\n", + "chapters_utils.py word_cleaned: बनना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: उड़ाना\n", + "chapters_utils.py word_cleaned: उड़ाना\n", + "chapters_utils.py word: चाहती\n", + "chapters_utils.py word_cleaned: चाहती\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 9\n", + "chapters_utils.py paragraph: {'originalText': 'क्या आप जानते हैं?', 'sortOrder': 0, 'id': 1155}\n", + "chapters_utils.py words: ['क्या', 'आप', 'जानते', 'हैं?']\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: आप\n", + "chapters_utils.py word_cleaned: आप\n", + "chapters_utils.py word: जानते\n", + "chapters_utils.py word_cleaned: जानते\n", + "chapters_utils.py word: हैं?\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py chapter[\"sortOrder\"]: 10\n", + "chapters_utils.py paragraph: {'originalText': '...', 'sortOrder': 0, 'id': 1156}\n", + "chapters_utils.py words: ['...']\n", + "chapters_utils.py word: ...\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py chapter[\"sortOrder\"]: 11\n", + "chapters_utils.py paragraph: {'originalText': 'चलो उड़ान भरें!', 'sortOrder': 0, 'id': 1157}\n", + "chapters_utils.py words: ['चलो', 'उड़ान', 'भरें!']\n", + "chapters_utils.py word: चलो\n", + "chapters_utils.py word_cleaned: चलो\n", + "chapters_utils.py word: उड़ान\n", + "chapters_utils.py word_cleaned: उड़ान\n", + "chapters_utils.py word: भरें!\n", + "chapters_utils.py word_cleaned: भरें\n", + "chapters_utils.py paragraph: {'originalText': '1. दोस्तों के साथ इन खेलों के मज़े लें काग़ज़ के हवाई जहाज़ बनाओ और देखो कि किसका जहाज़ सबसे दूर जाता है। ज़रा सोचो, क्यों? क्या यह कमाल काग़ज़ का है या उसके बनाने के तरीक़े का? ग़ौर करो, क्या होता है जब कोई जहाज़ छोड़ा जाता है? जब तुम जहाज़ को छोड़ने के पहले उसके ऊपर फूँक मारते हो या उसके अंदर या कि उसके नीचे, तब क्या वहाँ कोई अंतर दिखता है?', 'sortOrder': 1, 'id': 1158}\n", + "chapters_utils.py words: ['1.', 'दोस्तों', 'के', 'साथ', 'इन', 'खेलों', 'के', 'मज़े', 'लें', 'काग़ज़', 'के', 'हवाई', 'जहाज़', 'बनाओ', 'और', 'देखो', 'कि', 'किसका', 'जहाज़', 'सबसे', 'दूर', 'जाता', 'है।', 'ज़रा', 'सोचो,', 'क्यों?', 'क्या', 'यह', 'कमाल', 'काग़ज़', 'का', 'है', 'या', 'उसके', 'बनाने', 'के', 'तरीक़े', 'का?', 'ग़ौर', 'करो,', 'क्या', 'होता', 'है', 'जब', 'कोई', 'जहाज़', 'छोड़ा', 'जाता', 'है?', 'जब', 'तुम', 'जहाज़', 'को', 'छोड़ने', 'के', 'पहले', 'उसके', 'ऊपर', 'फूँक', 'मारते', 'हो', 'या', 'उसके', 'अंदर', 'या', 'कि', 'उसके', 'नीचे,', 'तब', 'क्या', 'वहाँ', 'कोई', 'अंतर', 'दिखता', 'है?']\n", + "chapters_utils.py word: 1.\n", + "chapters_utils.py word_cleaned: 1\n", + "chapters_utils.py word: दोस्तों\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: साथ\n", + "chapters_utils.py word_cleaned: साथ\n", + "chapters_utils.py word: इन\n", + "chapters_utils.py word_cleaned: इन\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मज़े\n", + "chapters_utils.py word_cleaned: मज़े\n", + "chapters_utils.py word: लें\n", + "chapters_utils.py word_cleaned: लें\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: देखो\n", + "chapters_utils.py word_cleaned: देखो\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: किसका\n", + "chapters_utils.py word_cleaned: किसका\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: सबसे\n", + "chapters_utils.py word_cleaned: सबसे\n", + "chapters_utils.py word: दूर\n", + "chapters_utils.py word_cleaned: दूर\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: ज़रा\n", + "chapters_utils.py word_cleaned: ज़रा\n", + "chapters_utils.py word: सोचो,\n", + "chapters_utils.py word_cleaned: सोचो\n", + "chapters_utils.py word: क्यों?\n", + "chapters_utils.py word_cleaned: क्यों\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: यह\n", + "chapters_utils.py word_cleaned: यह\n", + "chapters_utils.py word: कमाल\n", + "chapters_utils.py word_cleaned: कमाल\n", + "chapters_utils.py word: काग़ज़\n", + "chapters_utils.py word_cleaned: काग़ज़\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: बनाने\n", + "chapters_utils.py word_cleaned: बनाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: तरीक़े\n", + "chapters_utils.py word_cleaned: तरीक़े\n", + "chapters_utils.py word: का?\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: ग़ौर\n", + "chapters_utils.py word_cleaned: ग़ौर\n", + "chapters_utils.py word: करो,\n", + "chapters_utils.py word_cleaned: करो\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: छोड़ा\n", + "chapters_utils.py word_cleaned: छोड़ा\n", + "chapters_utils.py word: जाता\n", + "chapters_utils.py word_cleaned: जाता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: छोड़ने\n", + "chapters_utils.py word_cleaned: छोड़ने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: पहले\n", + "chapters_utils.py word_cleaned: पहले\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: ऊपर\n", + "chapters_utils.py word_cleaned: ऊपर\n", + "chapters_utils.py word: फूँक\n", + "chapters_utils.py word_cleaned: फूँक\n", + "chapters_utils.py word: मारते\n", + "chapters_utils.py word_cleaned: मारते\n", + "chapters_utils.py word: हो\n", + "chapters_utils.py word_cleaned: हो\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: अंदर\n", + "chapters_utils.py word_cleaned: अंदर\n", + "chapters_utils.py word: या\n", + "chapters_utils.py word_cleaned: या\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: उसके\n", + "chapters_utils.py word_cleaned: उसके\n", + "chapters_utils.py word: नीचे,\n", + "chapters_utils.py word_cleaned: नीचे\n", + "chapters_utils.py word: तब\n", + "chapters_utils.py word_cleaned: तब\n", + "chapters_utils.py word: क्या\n", + "chapters_utils.py word_cleaned: क्या\n", + "chapters_utils.py word: वहाँ\n", + "chapters_utils.py word_cleaned: वहाँ\n", + "chapters_utils.py word: कोई\n", + "chapters_utils.py word_cleaned: कोई\n", + "chapters_utils.py word: अंतर\n", + "chapters_utils.py word_cleaned: अंतर\n", + "chapters_utils.py word: दिखता\n", + "chapters_utils.py word_cleaned: दिखता\n", + "chapters_utils.py word: है?\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py paragraph: {'originalText': \"2. 'फ़्लाइ - डोंट फ़्लाइ' गेम: मित्रों का एक समूह बनाओ और एक -दूसरे को बिना छुए कमरे के चारों तरफ़ जहाज़ की तरह उड़ो। डेन (चोर) एक कोने में खड़ा होकर उड़ने वाली और ना उड़ने वाली चीज़ों के नाम कहेगा। जैसे ही वह किसी ना उड़ने वाली चीज़ (जैसे कि मेज़/टेबुल) कहे तो जहाज़ों को ज़मीन पर उतरना (बैठ जाना) होगा। जो ग़लती करेगा, वह अगला डेन होगा।\", 'sortOrder': 2, 'id': 1159}\n", + "chapters_utils.py words: ['2.', \"'फ़्लाइ\", '-', 'डोंट', \"फ़्लाइ'\", 'गेम:', 'मित्रों', 'का', 'एक', 'समूह', 'बनाओ', 'और', 'एक', '-दूसरे', 'को', 'बिना', 'छुए', 'कमरे', 'के', 'चारों', 'तरफ़', 'जहाज़', 'की', 'तरह', 'उड़ो।', 'डेन', '(चोर)', 'एक', 'कोने', 'में', 'खड़ा', 'होकर', 'उड़ने', 'वाली', 'और', 'ना', 'उड़ने', 'वाली', 'चीज़ों', 'के', 'नाम', 'कहेगा।', 'जैसे', 'ही', 'वह', 'किसी', 'ना', 'उड़ने', 'वाली', 'चीज़', '(जैसे', 'कि', 'मेज़/टेबुल)', 'कहे', 'तो', 'जहाज़ों', 'को', 'ज़मीन', 'पर', 'उतरना', '(बैठ', 'जाना)', 'होगा।', 'जो', 'ग़लती', 'करेगा,', 'वह', 'अगला', 'डेन', 'होगा।']\n", + "chapters_utils.py word: 2.\n", + "chapters_utils.py word_cleaned: 2\n", + "chapters_utils.py word: 'फ़्लाइ\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: डोंट\n", + "chapters_utils.py word_cleaned: डोंट\n", + "chapters_utils.py word: फ़्लाइ'\n", + "chapters_utils.py word_cleaned: फ़्लाइ\n", + "chapters_utils.py word: गेम:\n", + "chapters_utils.py word_cleaned: गेम\n", + "chapters_utils.py word: मित्रों\n", + "chapters_utils.py word_cleaned: मित्रों\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: समूह\n", + "chapters_utils.py word_cleaned: समूह\n", + "chapters_utils.py word: बनाओ\n", + "chapters_utils.py word_cleaned: बनाओ\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: -दूसरे\n", + "chapters_utils.py word_cleaned: दूसरे\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: बिना\n", + "chapters_utils.py word_cleaned: बिना\n", + "chapters_utils.py word: छुए\n", + "chapters_utils.py word_cleaned: छुए\n", + "chapters_utils.py word: कमरे\n", + "chapters_utils.py word_cleaned: कमरे\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: चारों\n", + "chapters_utils.py word_cleaned: चारों\n", + "chapters_utils.py word: तरफ़\n", + "chapters_utils.py word_cleaned: तरफ़\n", + "chapters_utils.py word: जहाज़\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: तरह\n", + "chapters_utils.py word_cleaned: तरह\n", + "chapters_utils.py word: उड़ो।\n", + "chapters_utils.py word_cleaned: उड़ो।\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: (चोर)\n", + "chapters_utils.py word_cleaned: चोर\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: कोने\n", + "chapters_utils.py word_cleaned: कोने\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: खड़ा\n", + "chapters_utils.py word_cleaned: खड़ा\n", + "chapters_utils.py word: होकर\n", + "chapters_utils.py word_cleaned: होकर\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़ों\n", + "chapters_utils.py word_cleaned: चीज़ों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: नाम\n", + "chapters_utils.py word_cleaned: नाम\n", + "chapters_utils.py word: कहेगा।\n", + "chapters_utils.py word_cleaned: कहेगा।\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: ही\n", + "chapters_utils.py word_cleaned: ही\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: किसी\n", + "chapters_utils.py word_cleaned: किसी\n", + "chapters_utils.py word: ना\n", + "chapters_utils.py word_cleaned: ना\n", + "chapters_utils.py word: उड़ने\n", + "chapters_utils.py word_cleaned: उड़ने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: चीज़\n", + "chapters_utils.py word_cleaned: चीज़\n", + "chapters_utils.py word: (जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: कि\n", + "chapters_utils.py word_cleaned: कि\n", + "chapters_utils.py word: मेज़/टेबुल)\n", + "chapters_utils.py word_cleaned: मेज़टेबुल\n", + "chapters_utils.py word: कहे\n", + "chapters_utils.py word_cleaned: कहे\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: जहाज़ों\n", + "chapters_utils.py word_cleaned: जहाज़ों\n", + "chapters_utils.py word: को\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: ज़मीन\n", + "chapters_utils.py word_cleaned: ज़मीन\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: उतरना\n", + "chapters_utils.py word_cleaned: उतरना\n", + "chapters_utils.py word: (बैठ\n", + "chapters_utils.py word_cleaned: बैठ\n", + "chapters_utils.py word: जाना)\n", + "chapters_utils.py word_cleaned: जाना\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word: जो\n", + "chapters_utils.py word_cleaned: जो\n", + "chapters_utils.py word: ग़लती\n", + "chapters_utils.py word_cleaned: ग़लती\n", + "chapters_utils.py word: करेगा,\n", + "chapters_utils.py word_cleaned: करेगा\n", + "chapters_utils.py word: वह\n", + "chapters_utils.py word_cleaned: वह\n", + "chapters_utils.py word: अगला\n", + "chapters_utils.py word_cleaned: अगला\n", + "chapters_utils.py word: डेन\n", + "chapters_utils.py word_cleaned: डेन\n", + "chapters_utils.py word: होगा।\n", + "chapters_utils.py word_cleaned: होगा।\n", + "chapters_utils.py word_count: 965\n", + "chapters_utils.py total_word_length: 3451\n", + "step1_2_preprocess_data.py index: 56\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 4\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'नन्हा हाथी भाई पहाड़ सा मोटा।', 'sortOrder': 0, 'id': 1672}\n", + "chapters_utils.py words: ['नन्हा', 'हाथी', 'भाई', 'पहाड़', 'सा', 'मोटा।']\n", + "chapters_utils.py word: नन्हा\n", + "chapters_utils.py word_cleaned: नन्हा\n", + "chapters_utils.py word: हाथी\n", + "chapters_utils.py word_cleaned: हाथी\n", + "chapters_utils.py word: भाई\n", + "chapters_utils.py word_cleaned: भाई\n", + "chapters_utils.py word: पहाड़\n", + "chapters_utils.py word_cleaned: पहाड़\n", + "chapters_utils.py word: सा\n", + "chapters_utils.py word_cleaned: सा\n", + "chapters_utils.py word: मोटा।\n", + "chapters_utils.py word_cleaned: मोटा।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'कान कैसे?\\xa0पंखे जैसे!', 'sortOrder': 0, 'id': 1673}\n", + "chapters_utils.py words: ['कान', 'कैसे?', 'पंखे', 'जैसे!']\n", + "chapters_utils.py word: कान\n", + "chapters_utils.py word_cleaned: कान\n", + "chapters_utils.py word: कैसे?\n", + "chapters_utils.py word_cleaned: कैसे\n", + "chapters_utils.py word: पंखे\n", + "chapters_utils.py word_cleaned: पंखे\n", + "chapters_utils.py word: जैसे!\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'सामने लटकी\\xa0लम्बी सूंड़।', 'sortOrder': 0, 'id': 1674}\n", + "chapters_utils.py words: ['सामने', 'लटकी', 'लम्बी', 'सूंड़।']\n", + "chapters_utils.py word: सामने\n", + "chapters_utils.py word_cleaned: सामने\n", + "chapters_utils.py word: लटकी\n", + "chapters_utils.py word_cleaned: लटकी\n", + "chapters_utils.py word: लम्बी\n", + "chapters_utils.py word_cleaned: लम्बी\n", + "chapters_utils.py word: सूंड़।\n", + "chapters_utils.py word_cleaned: सूंड़।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'दुम का सिरा है\\xa0कितना छोटा!', 'sortOrder': 0, 'id': 1675}\n", + "chapters_utils.py words: ['दुम', 'का', 'सिरा', 'है', 'कितना', 'छोटा!']\n", + "chapters_utils.py word: दुम\n", + "chapters_utils.py word_cleaned: दुम\n", + "chapters_utils.py word: का\n", + "chapters_utils.py word_cleaned: का\n", + "chapters_utils.py word: सिरा\n", + "chapters_utils.py word_cleaned: सिरा\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: कितना\n", + "chapters_utils.py word_cleaned: कितना\n", + "chapters_utils.py word: छोटा!\n", + "chapters_utils.py word_cleaned: छोटा\n", + "chapters_utils.py word_count: 20\n", + "chapters_utils.py total_word_length: 77\n", + "step1_2_preprocess_data.py index: 57\n", + "chapters_utils.py get_chapter_count\n", + "chapters_utils.py chapter_count: 8\n", + "chapters_utils.py get_paragraph_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py get_word_count\n", + "chapters_utils.py chapter[\"sortOrder\"]: 0\n", + "chapters_utils.py paragraph: {'originalText': 'मैं गोलू गोल\\u200d हूँ। सारे लोग मुझे पसंद करते हैं। मुझे तुम कहीं भी ढूंढ सकते हो।', 'sortOrder': 0, 'id': 1923}\n", + "chapters_utils.py words: ['मैं', 'गोलू', 'गोल\\u200d', 'हूँ।', 'सारे', 'लोग', 'मुझे', 'पसंद', 'करते', 'हैं।', 'मुझे', 'तुम', 'कहीं', 'भी', 'ढूंढ', 'सकते', 'हो।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: गोलू\n", + "chapters_utils.py word_cleaned: गोलू\n", + "chapters_utils.py word: गोल‍\n", + "chapters_utils.py word_cleaned: गोल‍\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py word: सारे\n", + "chapters_utils.py word_cleaned: सारे\n", + "chapters_utils.py word: लोग\n", + "chapters_utils.py word_cleaned: लोग\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: पसंद\n", + "chapters_utils.py word_cleaned: पसंद\n", + "chapters_utils.py word: करते\n", + "chapters_utils.py word_cleaned: करते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: तुम\n", + "chapters_utils.py word_cleaned: तुम\n", + "chapters_utils.py word: कहीं\n", + "chapters_utils.py word_cleaned: कहीं\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: ढूंढ\n", + "chapters_utils.py word_cleaned: ढूंढ\n", + "chapters_utils.py word: सकते\n", + "chapters_utils.py word_cleaned: सकते\n", + "chapters_utils.py word: हो।\n", + "chapters_utils.py word_cleaned: हो।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 1\n", + "chapters_utils.py paragraph: {'originalText': 'सूरज मेरे जैसा दहकता है। अग\\u200dर धूप होती है तो आधा अम्ब्रेला भी मेरे जैसा दहकता है।', 'sortOrder': 0, 'id': 1924}\n", + "chapters_utils.py words: ['सूरज', 'मेरे', 'जैसा', 'दहकता', 'है।', 'अग\\u200dर', 'धूप', 'होती', 'है', 'तो', 'आधा', 'अम्ब्रेला', 'भी', 'मेरे', 'जैसा', 'दहकता', 'है।']\n", + "chapters_utils.py word: सूरज\n", + "chapters_utils.py word_cleaned: सूरज\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: अग‍र\n", + "chapters_utils.py word_cleaned: अग‍र\n", + "chapters_utils.py word: धूप\n", + "chapters_utils.py word_cleaned: धूप\n", + "chapters_utils.py word: होती\n", + "chapters_utils.py word_cleaned: होती\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: आधा\n", + "chapters_utils.py word_cleaned: आधा\n", + "chapters_utils.py word: अम्ब्रेला\n", + "chapters_utils.py word_cleaned: अम्ब्रेला\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसा\n", + "chapters_utils.py word_cleaned: जैसा\n", + "chapters_utils.py word: दहकता\n", + "chapters_utils.py word_cleaned: दहकता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 2\n", + "chapters_utils.py paragraph: {'originalText': 'रात को, चाँद मुझे हँसकर देखता है। और मैं उसे उल्लू की गोल आँखों से देखता हूँ।', 'sortOrder': 0, 'id': 1925}\n", + "chapters_utils.py words: ['रात', 'को,', 'चाँद', 'मुझे', 'हँसकर', 'देखता', 'है।', 'और', 'मैं', 'उसे', 'उल्लू', 'की', 'गोल', 'आँखों', 'से', 'देखता', 'हूँ।']\n", + "chapters_utils.py word: रात\n", + "chapters_utils.py word_cleaned: रात\n", + "chapters_utils.py word: को,\n", + "chapters_utils.py word_cleaned: को\n", + "chapters_utils.py word: चाँद\n", + "chapters_utils.py word_cleaned: चाँद\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: हँसकर\n", + "chapters_utils.py word_cleaned: हँसकर\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: उसे\n", + "chapters_utils.py word_cleaned: उसे\n", + "chapters_utils.py word: उल्लू\n", + "chapters_utils.py word_cleaned: उल्लू\n", + "chapters_utils.py word: की\n", + "chapters_utils.py word_cleaned: की\n", + "chapters_utils.py word: गोल\n", + "chapters_utils.py word_cleaned: गोल\n", + "chapters_utils.py word: आँखों\n", + "chapters_utils.py word_cleaned: आँखों\n", + "chapters_utils.py word: से\n", + "chapters_utils.py word_cleaned: से\n", + "chapters_utils.py word: देखता\n", + "chapters_utils.py word_cleaned: देखता\n", + "chapters_utils.py word: हूँ।\n", + "chapters_utils.py word_cleaned: हूँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 3\n", + "chapters_utils.py paragraph: {'originalText': 'बड़े तरबूज़, सेब, नारंगी, टमाटर,', 'sortOrder': 0, 'id': 1926}\n", + "chapters_utils.py words: ['बड़े', 'तरबूज़,', 'सेब,', 'नारंगी,', 'टमाटर,']\n", + "chapters_utils.py word: बड़े\n", + "chapters_utils.py word_cleaned: बड़े\n", + "chapters_utils.py word: तरबूज़,\n", + "chapters_utils.py word_cleaned: तरबूज़\n", + "chapters_utils.py word: सेब,\n", + "chapters_utils.py word_cleaned: सेब\n", + "chapters_utils.py word: नारंगी,\n", + "chapters_utils.py word_cleaned: नारंगी\n", + "chapters_utils.py word: टमाटर,\n", + "chapters_utils.py word_cleaned: टमाटर\n", + "chapters_utils.py paragraph: {'originalText': 'यहां तक \\u200b\\u200bकि छोटे नींबू - मेरे जैसे सभी लग रहे हैं - और मिठाई भी!', 'sortOrder': 1, 'id': 1927}\n", + "chapters_utils.py words: ['यहां', 'तक', '\\u200b\\u200bकि', 'छोटे', 'नींबू', '-', 'मेरे', 'जैसे', 'सभी', 'लग', 'रहे', 'हैं', '-', 'और', 'मिठाई', 'भी!']\n", + "chapters_utils.py word: यहां\n", + "chapters_utils.py word_cleaned: यहां\n", + "chapters_utils.py word: तक\n", + "chapters_utils.py word_cleaned: तक\n", + "chapters_utils.py word: ​​कि\n", + "chapters_utils.py word_cleaned: ​​कि\n", + "chapters_utils.py word: छोटे\n", + "chapters_utils.py word_cleaned: छोटे\n", + "chapters_utils.py word: नींबू\n", + "chapters_utils.py word_cleaned: नींबू\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसे\n", + "chapters_utils.py word_cleaned: जैसे\n", + "chapters_utils.py word: सभी\n", + "chapters_utils.py word_cleaned: सभी\n", + "chapters_utils.py word: लग\n", + "chapters_utils.py word_cleaned: लग\n", + "chapters_utils.py word: रहे\n", + "chapters_utils.py word_cleaned: रहे\n", + "chapters_utils.py word: हैं\n", + "chapters_utils.py word_cleaned: हैं\n", + "chapters_utils.py word: -\n", + "chapters_utils.py word_cleaned: \n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: मिठाई\n", + "chapters_utils.py word_cleaned: मिठाई\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py paragraph: {'originalText': 'रसदार रसगुल्ला, रसदार गुलाबजामुन, प्यारे लड्डू,', 'sortOrder': 2, 'id': 1928}\n", + "chapters_utils.py words: ['रसदार', 'रसगुल्ला,', 'रसदार', 'गुलाबजामुन,', 'प्यारे', 'लड्डू,']\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: रसगुल्ला,\n", + "chapters_utils.py word_cleaned: रसगुल्ला\n", + "chapters_utils.py word: रसदार\n", + "chapters_utils.py word_cleaned: रसदार\n", + "chapters_utils.py word: गुलाबजामुन,\n", + "chapters_utils.py word_cleaned: गुलाबजामुन\n", + "chapters_utils.py word: प्यारे\n", + "chapters_utils.py word_cleaned: प्यारे\n", + "chapters_utils.py word: लड्डू,\n", + "chapters_utils.py word_cleaned: लड्डू\n", + "chapters_utils.py paragraph: {'originalText': 'मेरे जैसी दिखने वाली कई मिठाइयाँ।', 'sortOrder': 3, 'id': 1929}\n", + "chapters_utils.py words: ['मेरे', 'जैसी', 'दिखने', 'वाली', 'कई', 'मिठाइयाँ।']\n", + "chapters_utils.py word: मेरे\n", + "chapters_utils.py word_cleaned: मेरे\n", + "chapters_utils.py word: जैसी\n", + "chapters_utils.py word_cleaned: जैसी\n", + "chapters_utils.py word: दिखने\n", + "chapters_utils.py word_cleaned: दिखने\n", + "chapters_utils.py word: वाली\n", + "chapters_utils.py word_cleaned: वाली\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: मिठाइयाँ।\n", + "chapters_utils.py word_cleaned: मिठाइयाँ।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 4\n", + "chapters_utils.py paragraph: {'originalText': 'पशु मुझे उन्हें सजाने के लिए चाहते हैं।', 'sortOrder': 0, 'id': 1930}\n", + "chapters_utils.py words: ['पशु', 'मुझे', 'उन्हें', 'सजाने', 'के', 'लिए', 'चाहते', 'हैं।']\n", + "chapters_utils.py word: पशु\n", + "chapters_utils.py word_cleaned: पशु\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: उन्हें\n", + "chapters_utils.py word_cleaned: उन्हें\n", + "chapters_utils.py word: सजाने\n", + "chapters_utils.py word_cleaned: सजाने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: चाहते\n", + "chapters_utils.py word_cleaned: चाहते\n", + "chapters_utils.py word: हैं।\n", + "chapters_utils.py word_cleaned: हैं।\n", + "chapters_utils.py paragraph: {'originalText': 'चीता, चीटियल हिरण, मुझे अपनी त्वचा पर सब कुछ है।', 'sortOrder': 1, 'id': 1931}\n", + "chapters_utils.py words: ['चीता,', 'चीटियल', 'हिरण,', 'मुझे', 'अपनी', 'त्वचा', 'पर', 'सब', 'कुछ', 'है।']\n", + "chapters_utils.py word: चीता,\n", + "chapters_utils.py word_cleaned: चीता\n", + "chapters_utils.py word: चीटियल\n", + "chapters_utils.py word_cleaned: चीटियल\n", + "chapters_utils.py word: हिरण,\n", + "chapters_utils.py word_cleaned: हिरण\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: अपनी\n", + "chapters_utils.py word_cleaned: अपनी\n", + "chapters_utils.py word: त्वचा\n", + "chapters_utils.py word_cleaned: त्वचा\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: सब\n", + "chapters_utils.py word_cleaned: सब\n", + "chapters_utils.py word: कुछ\n", + "chapters_utils.py word_cleaned: कुछ\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'मैं लेडीबर्ड्स और तितलियों पर भी हूं।', 'sortOrder': 2, 'id': 1932}\n", + "chapters_utils.py words: ['मैं', 'लेडीबर्ड्स', 'और', 'तितलियों', 'पर', 'भी', 'हूं।']\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: लेडीबर्ड्स\n", + "chapters_utils.py word_cleaned: लेडीबर्ड्स\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: तितलियों\n", + "chapters_utils.py word_cleaned: तितलियों\n", + "chapters_utils.py word: पर\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: हूं।\n", + "chapters_utils.py word_cleaned: हूं।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 5\n", + "chapters_utils.py paragraph: {'originalText': 'खेलों के मैदान में, मैं एक गेंद के रूप में हूं, और कई और खेल मैं भी!', 'sortOrder': 0, 'id': 1933}\n", + "chapters_utils.py words: ['खेलों', 'के', 'मैदान', 'में,', 'मैं', 'एक', 'गेंद', 'के', 'रूप', 'में', 'हूं,', 'और', 'कई', 'और', 'खेल', 'मैं', 'भी!']\n", + "chapters_utils.py word: खेलों\n", + "chapters_utils.py word_cleaned: खेलों\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: मैदान\n", + "chapters_utils.py word_cleaned: मैदान\n", + "chapters_utils.py word: में,\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: गेंद\n", + "chapters_utils.py word_cleaned: गेंद\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: रूप\n", + "chapters_utils.py word_cleaned: रूप\n", + "chapters_utils.py word: में\n", + "chapters_utils.py word_cleaned: में\n", + "chapters_utils.py word: हूं,\n", + "chapters_utils.py word_cleaned: हूं\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: कई\n", + "chapters_utils.py word_cleaned: कई\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: खेल\n", + "chapters_utils.py word_cleaned: खेल\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: भी!\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py chapter[\"sortOrder\"]: 6\n", + "chapters_utils.py paragraph: {'originalText': 'अपने ट्रक, हवाई जहाज़, कार, चक्र, चल नहीं पाएंगे... अगर मैं नहीं होता।', 'sortOrder': 0, 'id': 1934}\n", + "chapters_utils.py words: ['अपने', 'ट्रक,', 'हवाई', 'जहाज़,', 'कार,', 'चक्र,', 'चल', 'नहीं', 'पाएंगे...', 'अगर', 'मैं', 'नहीं', 'होता।']\n", + "chapters_utils.py word: अपने\n", + "chapters_utils.py word_cleaned: अपने\n", + "chapters_utils.py word: ट्रक,\n", + "chapters_utils.py word_cleaned: ट्रक\n", + "chapters_utils.py word: हवाई\n", + "chapters_utils.py word_cleaned: हवाई\n", + "chapters_utils.py word: जहाज़,\n", + "chapters_utils.py word_cleaned: जहाज़\n", + "chapters_utils.py word: कार,\n", + "chapters_utils.py word_cleaned: कार\n", + "chapters_utils.py word: चक्र,\n", + "chapters_utils.py word_cleaned: चक्र\n", + "chapters_utils.py word: चल\n", + "chapters_utils.py word_cleaned: चल\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: पाएंगे...\n", + "chapters_utils.py word_cleaned: पाएंगे\n", + "chapters_utils.py word: अगर\n", + "chapters_utils.py word_cleaned: अगर\n", + "chapters_utils.py word: मैं\n", + "chapters_utils.py word_cleaned: मैं\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: होता।\n", + "chapters_utils.py word_cleaned: होता।\n", + "chapters_utils.py chapter[\"sortOrder\"]: 7\n", + "chapters_utils.py paragraph: {'originalText': 'और फिर भी एक जगह है जहां मुझे स्वागत नहीं है।', 'sortOrder': 0, 'id': 1935}\n", + "chapters_utils.py words: ['और', 'फिर', 'भी', 'एक', 'जगह', 'है', 'जहां', 'मुझे', 'स्वागत', 'नहीं', 'है।']\n", + "chapters_utils.py word: और\n", + "chapters_utils.py word_cleaned: और\n", + "chapters_utils.py word: फिर\n", + "chapters_utils.py word_cleaned: फिर\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: एक\n", + "chapters_utils.py word_cleaned: एक\n", + "chapters_utils.py word: जगह\n", + "chapters_utils.py word_cleaned: जगह\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: जहां\n", + "chapters_utils.py word_cleaned: जहां\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: स्वागत\n", + "chapters_utils.py word_cleaned: स्वागत\n", + "chapters_utils.py word: नहीं\n", + "chapters_utils.py word_cleaned: नहीं\n", + "chapters_utils.py word: है।\n", + "chapters_utils.py word_cleaned: है।\n", + "chapters_utils.py paragraph: {'originalText': 'आपके रिपोर्ट कार्ड पर! क्षमा करें दोस्तों!', 'sortOrder': 1, 'id': 1936}\n", + "chapters_utils.py words: ['आपके', 'रिपोर्ट', 'कार्ड', 'पर!', 'क्षमा', 'करें', 'दोस्तों!']\n", + "chapters_utils.py word: आपके\n", + "chapters_utils.py word_cleaned: आपके\n", + "chapters_utils.py word: रिपोर्ट\n", + "chapters_utils.py word_cleaned: रिपोर्ट\n", + "chapters_utils.py word: कार्ड\n", + "chapters_utils.py word_cleaned: कार्ड\n", + "chapters_utils.py word: पर!\n", + "chapters_utils.py word_cleaned: पर\n", + "chapters_utils.py word: क्षमा\n", + "chapters_utils.py word_cleaned: क्षमा\n", + "chapters_utils.py word: करें\n", + "chapters_utils.py word_cleaned: करें\n", + "chapters_utils.py word: दोस्तों!\n", + "chapters_utils.py word_cleaned: दोस्तों\n", + "chapters_utils.py paragraph: {'originalText': 'जब ऐसा होता है तो मुझे भी दुखी लगता है आपको इसे बदलने के लिए कड़ी मेहनत करनी होगी!', 'sortOrder': 2, 'id': 1937}\n", + "chapters_utils.py words: ['जब', 'ऐसा', 'होता', 'है', 'तो', 'मुझे', 'भी', 'दुखी', 'लगता', 'है', 'आपको', 'इसे', 'बदलने', 'के', 'लिए', 'कड़ी', 'मेहनत', 'करनी', 'होगी!']\n", + "chapters_utils.py word: जब\n", + "chapters_utils.py word_cleaned: जब\n", + "chapters_utils.py word: ऐसा\n", + "chapters_utils.py word_cleaned: ऐसा\n", + "chapters_utils.py word: होता\n", + "chapters_utils.py word_cleaned: होता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: तो\n", + "chapters_utils.py word_cleaned: तो\n", + "chapters_utils.py word: मुझे\n", + "chapters_utils.py word_cleaned: मुझे\n", + "chapters_utils.py word: भी\n", + "chapters_utils.py word_cleaned: भी\n", + "chapters_utils.py word: दुखी\n", + "chapters_utils.py word_cleaned: दुखी\n", + "chapters_utils.py word: लगता\n", + "chapters_utils.py word_cleaned: लगता\n", + "chapters_utils.py word: है\n", + "chapters_utils.py word_cleaned: है\n", + "chapters_utils.py word: आपको\n", + "chapters_utils.py word_cleaned: आपको\n", + "chapters_utils.py word: इसे\n", + "chapters_utils.py word_cleaned: इसे\n", + "chapters_utils.py word: बदलने\n", + "chapters_utils.py word_cleaned: बदलने\n", + "chapters_utils.py word: के\n", + "chapters_utils.py word_cleaned: के\n", + "chapters_utils.py word: लिए\n", + "chapters_utils.py word_cleaned: लिए\n", + "chapters_utils.py word: कड़ी\n", + "chapters_utils.py word_cleaned: कड़ी\n", + "chapters_utils.py word: मेहनत\n", + "chapters_utils.py word_cleaned: मेहनत\n", + "chapters_utils.py word: करनी\n", + "chapters_utils.py word_cleaned: करनी\n", + "chapters_utils.py word: होगी!\n", + "chapters_utils.py word_cleaned: होगी\n", + "chapters_utils.py word_count: 176\n", + "chapters_utils.py total_word_length: 656\n", + "step1_2_preprocess_data.py storybooks_dataframe (after extracting data from `chapters` column): \n", + " id title ... word_count avg_word_length\n", + "0 37 अद्भुत कीड़े ... 26 3.500000\n", + "1 1 अभी नहीं, अभी नहीं! ... 167 3.784431\n", + "2 36 अरे, यह सब कौन खा गया? ... 138 4.115942\n", + "3 59 अरे...नहीं! ... 129 4.100775\n", + "4 25 आओ, बीज बटोरें! ... 1596 3.704261\n", + "5 29 आज, मैं हूँ... ... 110 3.536364\n", + "6 63 आनंद ... 101 3.742574\n", + "7 2 आलू-मालू-कालू ... 123 3.829268\n", + "8 15 उड़ने वाला ऑटो ... 1291 3.571650\n", + "9 6 एक था मोटा राजा ... 78 3.538462\n", + "10 53 एक सौ सैंतीसवाँ पैर ... 486 3.707819\n", + "11 66 एक सफ़र, एक खेल ... 442 4.009050\n", + "12 56 एक, तीन, पाँच, मदद! मदद! ... 398 3.673367\n", + "13 4 कहानी- बादल की सैर ... 117 3.205128\n", + "14 42 कितनी मज़ेदार है बांग्ला संख्याएं ... 264 3.700758\n", + "15 61 कुत्ते के अंडे ... 178 3.741573\n", + "16 50 कोयल का गला हुआ खराब ... 811 3.675709\n", + "17 32 क्या होता अगर? ... 209 3.741627\n", + "18 11 गप्पू नाच नहीं सकती ... 194 3.298969\n", + "19 26 गरजे बादल नाचे मोर ... 393 3.625954\n", + "20 51 घूम-घूम घड़ियाल का अनोखा सफ़र ... 623 3.874799\n", + "21 7 चाँद का तोहफ़ा ... 144 3.555556\n", + "22 64 छुट्टी ... 85 3.847059\n", + "23 55 जादुर्इ गुटका ... 461 3.659436\n", + "24 34 जीव-जन्तुओं के घर ... 148 3.763514\n", + "25 47 टुमी के पार्क का दिन ... 117 3.435897\n", + "26 24 टूथपेस्ट ट्यूब के अंदर कैसे आया? ... 731 3.753762\n", + "27 27 तारा की गगनचुंबी यात्रा ... 211 3.853081\n", + "28 46 तितलियां ... 81 3.691358\n", + "29 65 दीदी का रंग बिरंगा खज़ाना ... 426 3.598592\n", + "30 60 द्रुवी की छतरी ... 427 3.742389\n", + "31 17 पिशि फँसी तूफ़ान में ... 374 3.721925\n", + "32 19 पूरी क्यों फूलती है? ... 1342 3.486587\n", + "33 39 बंटी और उसके गाते हुए पक्षी ... 177 3.627119\n", + "34 5 बनबिलाव! बनबिलाव! ... 116 4.646552\n", + "35 28 बोलो एक साँस में ... 95 4.578947\n", + "36 20 मधुमक्खियाँ क्यों भन-भन करती हैं? ... 672 3.684524\n", + "37 30 मलार का बड़ा सा घर ... 201 3.597015\n", + "38 22 मुत्तज्जी की उम्र क्या है? ... 2057 3.631988\n", + "39 57 मेंढक की तरकीब ... 133 3.563910\n", + "40 33 मेरा प्रथम परिचय - भारतीय डायनोसॉर से ... 23 6.695652\n", + "41 8 मैं और मेरी दोस्त टीना| ... 150 3.293333\n", + "42 9 मैं नहीं डरती ! ... 107 2.915888\n", + "43 16 मैं बहुत कुछ बना सकता हूँ! ... 120 3.641667\n", + "44 41 राजू की पहली हवाई-यात्रा ... 555 3.749550\n", + "45 10 रिमझिम बरसे बादल ... 101 3.188119\n", + "46 58 रोज़ और रॉकी चले कम्पोस्ट बनाने ... 131 4.175573\n", + "47 49 लाल बरसाती ... 258 3.689922\n", + "48 52 सत्यम, ज़रा संभल के! ... 559 3.695886\n", + "49 18 सबसे अच्छा घर ... 564 3.751773\n", + "50 40 सूरज का दोस्त कौन ? ... 89 3.831461\n", + "51 14 सो जाओ टिंकु! ... 488 3.815574\n", + "52 23 स्वतंत्रता की ओर ... 1507 3.727273\n", + "53 38 हमारे मित्र कौन है? ... 140 3.864286\n", + "54 54 हर पेड़ ज़रूरी है! ... 211 3.658768\n", + "55 21 हवाई जहाज़ कैसे उड़ते हैं? ... 965 3.576166\n", + "56 31 हाथी भाई ... 20 3.850000\n", + "57 48 ग़ोलू एक ग़ोल कि कहानी ... 176 3.727273\n", + "\n", + "[58 rows x 12 columns]\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 -0.105263 -0.137931 -0.441989 -0.962592\n", + "1 -0.947368 -0.275862 -0.052486 0.389402\n", + "2 -0.105263 0.275862 -0.132597 1.965181\n", + "3 0.947368 0.275862 -0.157459 1.893088\n", + "4 1.578947 1.425287 3.895028 0.008326\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 -0.315151 -0.447218 -0.830955 -0.543453\n", + "1 -1.240660 -0.645728 -0.499917 0.055601\n", + "2 -0.315151 0.148312 -0.568003 0.753811\n", + "3 0.841734 0.148312 -0.589133 0.721867\n", + "4 1.535865 1.802563 2.855072 -0.113250\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 -0.315151 -0.447218 -0.830955 -0.543453\n", + "1 -1.240660 -0.645728 -0.499917 0.055601\n", + "2 -0.315151 0.148312 -0.568003 0.753811\n", + "3 0.841734 0.148312 -0.589133 0.721867\n", + "4 1.535865 1.802563 2.855072 -0.113250\n", + " chapter_count paragraph_count word_count avg_word_length\n", + "0 0.368421 0.225352 0.002946 0.154537\n", + "1 0.157895 0.183099 0.072165 0.229788\n", + "2 0.368421 0.352113 0.057928 0.317494\n", + "3 0.631579 0.352113 0.053510 0.313482\n", + "4 0.789474 0.704225 0.773687 0.208577\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping unnecessary columns): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after dropping missing values): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 LEVEL1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 LEVEL1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 LEVEL1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 LEVEL2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 LEVEL3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 LEVEL1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 LEVEL1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 LEVEL1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 LEVEL3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 LEVEL1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 LEVEL2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 LEVEL2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 LEVEL2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 LEVEL1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 LEVEL1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 LEVEL2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 LEVEL2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 LEVEL1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 LEVEL1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 LEVEL2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 LEVEL2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 LEVEL1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 LEVEL2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 LEVEL2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 LEVEL1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 LEVEL1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 LEVEL3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 LEVEL2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 LEVEL1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 LEVEL2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 LEVEL2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 LEVEL3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 LEVEL3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 LEVEL1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 LEVEL1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 LEVEL1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 LEVEL3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 LEVEL1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 LEVEL4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 LEVEL2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 LEVEL1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 LEVEL1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 LEVEL1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 LEVEL1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 LEVEL4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 LEVEL1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 LEVEL2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 LEVEL1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 LEVEL2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 LEVEL3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 LEVEL1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 LEVEL2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 LEVEL4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 LEVEL1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 LEVEL2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 LEVEL3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 LEVEL1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 LEVEL1 0.210526 0.154930 0.076583 0.214665\n", + "step1_2_preprocess_data.py storybooks_dataframe (after converting texts to numbers): \n", + " id reading_level chapter_count paragraph_count word_count avg_word_length\n", + "0 37 1 0.368421 0.225352 0.002946 0.154537\n", + "1 1 1 0.157895 0.183099 0.072165 0.229788\n", + "2 36 1 0.368421 0.352113 0.057928 0.317494\n", + "3 59 2 0.631579 0.352113 0.053510 0.313482\n", + "4 25 3 0.789474 0.704225 0.773687 0.208577\n", + "5 29 1 0.368421 0.126761 0.044183 0.164157\n", + "6 63 1 0.578947 0.126761 0.039764 0.218714\n", + "7 2 1 0.157895 0.098592 0.050565 0.241650\n", + "8 15 3 1.000000 0.605634 0.623957 0.173493\n", + "9 6 1 0.157895 0.042254 0.028473 0.164712\n", + "10 53 2 0.578947 0.816901 0.228768 0.209519\n", + "11 66 2 0.578947 0.563380 0.207167 0.289214\n", + "12 56 2 0.368421 0.464789 0.185567 0.200404\n", + "13 4 1 0.421053 0.295775 0.047619 0.076523\n", + "14 42 1 0.578947 0.464789 0.119784 0.207650\n", + "15 61 2 0.684211 0.352113 0.077565 0.218449\n", + "16 50 2 0.736842 0.619718 0.388316 0.201023\n", + "17 32 1 0.315789 0.295775 0.092784 0.218463\n", + "18 11 1 0.421053 0.380282 0.085420 0.101351\n", + "19 26 2 0.157895 0.098592 0.183112 0.187860\n", + "20 51 2 0.789474 0.619718 0.296024 0.253696\n", + "21 7 1 0.368421 0.126761 0.060874 0.169235\n", + "22 64 2 0.000000 0.295775 0.031910 0.246357\n", + "23 55 2 0.736842 0.676056 0.216495 0.196718\n", + "24 34 1 0.368421 0.211268 0.062838 0.224254\n", + "25 47 1 0.631579 0.197183 0.047619 0.137577\n", + "26 24 3 0.526316 0.225352 0.349043 0.221674\n", + "27 27 2 0.368421 0.267606 0.093765 0.247950\n", + "28 46 1 0.052632 0.014085 0.029946 0.205164\n", + "29 65 2 0.421053 0.366197 0.199313 0.180621\n", + "30 60 2 0.368421 0.535211 0.199804 0.218665\n", + "31 17 3 0.263158 0.084507 0.173785 0.213251\n", + "32 19 3 0.578947 0.492958 0.648994 0.150988\n", + "33 39 1 0.473684 0.154930 0.077074 0.188168\n", + "34 5 1 0.368421 0.239437 0.047128 0.457876\n", + "35 28 1 0.315789 0.183099 0.036819 0.439990\n", + "36 20 3 0.473684 0.253521 0.320079 0.203356\n", + "37 30 1 0.473684 0.338028 0.088856 0.180204\n", + "38 22 4 1.000000 1.000000 1.000000 0.189456\n", + "39 57 2 0.631579 0.253521 0.055474 0.171445\n", + "40 33 1 0.526316 0.126761 0.001473 1.000000\n", + "41 8 1 0.368421 0.112676 0.063819 0.099860\n", + "42 9 1 0.368421 0.098592 0.042710 0.000000\n", + "43 16 1 0.368421 0.126761 0.049092 0.192017\n", + "44 41 4 0.315789 0.366197 0.262641 0.220559\n", + "45 10 1 0.105263 0.197183 0.039764 0.072023\n", + "46 58 2 0.368421 0.169014 0.054492 0.333271\n", + "47 49 1 0.263158 0.267606 0.116838 0.204784\n", + "48 52 2 0.842105 0.521127 0.264605 0.206361\n", + "49 18 3 0.684211 0.478873 0.267059 0.221147\n", + "50 40 1 0.000000 0.169014 0.033873 0.242230\n", + "51 14 2 0.526316 0.507042 0.229750 0.238027\n", + "52 23 4 0.631579 0.718310 0.729995 0.214665\n", + "53 38 1 0.526316 0.225352 0.058910 0.250915\n", + "54 54 2 0.368421 0.338028 0.093765 0.196541\n", + "55 21 3 0.421053 0.309859 0.463918 0.174688\n", + "56 31 1 0.000000 0.000000 0.000000 0.247135\n", + "57 48 1 0.210526 0.154930 0.076583 0.214665\n", + "step1_3_split_data.py storybooks_csv_path: step1_2_storybooks.csv\n", + "step1_3_split_data.py train_X: \n", + " id chapter_count paragraph_count word_count\n", + "29 65 0.421053 0.366197 0.199313\n", + "40 33 0.526316 0.126761 0.001473\n", + "32 19 0.578947 0.492958 0.648994\n", + "41 8 0.368421 0.112676 0.063819\n", + "37 30 0.473684 0.338028 0.088856\n", + "7 2 0.157895 0.098592 0.050565\n", + "14 42 0.578947 0.464789 0.119784\n", + "31 17 0.263158 0.084507 0.173785\n", + "28 46 0.052632 0.014085 0.029946\n", + "56 31 0.000000 0.000000 0.000000\n", + "52 23 0.631579 0.718310 0.729995\n", + "18 11 0.421053 0.380282 0.085420\n", + "54 54 0.368421 0.338028 0.093765\n", + "26 24 0.526316 0.225352 0.349043\n", + "15 61 0.684211 0.352113 0.077565\n", + "5 29 0.368421 0.126761 0.044183\n", + "30 60 0.368421 0.535211 0.199804\n", + "16 50 0.736842 0.619718 0.388316\n", + "49 18 0.684211 0.478873 0.267059\n", + "20 51 0.789474 0.619718 0.296024\n", + "50 40 0.000000 0.169014 0.033873\n", + "8 15 1.000000 0.605634 0.623957\n", + "13 4 0.421053 0.295775 0.047619\n", + "25 47 0.631579 0.197183 0.047619\n", + "17 32 0.315789 0.295775 0.092784\n", + "43 16 0.368421 0.126761 0.049092\n", + "46 58 0.368421 0.169014 0.054492\n", + "51 14 0.526316 0.507042 0.229750\n", + "38 22 1.000000 1.000000 1.000000\n", + "1 1 0.157895 0.183099 0.072165\n", + "12 56 0.368421 0.464789 0.185567\n", + "57 48 0.210526 0.154930 0.076583\n", + "24 34 0.368421 0.211268 0.062838\n", + "6 63 0.578947 0.126761 0.039764\n", + "23 55 0.736842 0.676056 0.216495\n", + "36 20 0.473684 0.253521 0.320079\n", + "21 7 0.368421 0.126761 0.060874\n", + "19 26 0.157895 0.098592 0.183112\n", + "9 6 0.157895 0.042254 0.028473\n", + "39 57 0.631579 0.253521 0.055474\n", + "55 21 0.421053 0.309859 0.463918\n", + "3 59 0.631579 0.352113 0.053510\n", + "0 37 0.368421 0.225352 0.002946\n", + "53 38 0.526316 0.225352 0.058910\n", + "47 49 0.263158 0.267606 0.116838\n", + "44 41 0.315789 0.366197 0.262641\n", + "step1_3_split_data.py train_y: \n", + " reading_level\n", + "29 2\n", + "40 1\n", + "32 3\n", + "41 1\n", + "37 1\n", + "7 1\n", + "14 1\n", + "31 3\n", + "28 1\n", + "56 1\n", + "52 4\n", + "18 1\n", + "54 2\n", + "26 3\n", + "15 2\n", + "5 1\n", + "30 2\n", + "16 2\n", + "49 3\n", + "20 2\n", + "50 1\n", + "8 3\n", + "13 1\n", + "25 1\n", + "17 1\n", + "43 1\n", + "46 2\n", + "51 2\n", + "38 4\n", + "1 1\n", + "12 2\n", + "57 1\n", + "24 1\n", + "6 1\n", + "23 2\n", + "36 3\n", + "21 1\n", + "19 2\n", + "9 1\n", + "39 2\n", + "55 3\n", + "3 2\n", + "0 1\n", + "53 1\n", + "47 1\n", + "44 4\n", + "step1_3_split_data.py test_X: \n", + " id chapter_count paragraph_count word_count\n", + "35 28 0.315789 0.183099 0.036819\n", + "34 5 0.368421 0.239437 0.047128\n", + "42 9 0.368421 0.098592 0.042710\n", + "27 27 0.368421 0.267606 0.093765\n", + "11 66 0.578947 0.563380 0.207167\n", + "2 36 0.368421 0.352113 0.057928\n", + "33 39 0.473684 0.154930 0.077074\n", + "45 10 0.105263 0.197183 0.039764\n", + "22 64 0.000000 0.295775 0.031910\n", + "48 52 0.842105 0.521127 0.264605\n", + "4 25 0.789474 0.704225 0.773687\n", + "10 53 0.578947 0.816901 0.228768\n", + "step1_3_split_data.py test_y: \n", + " reading_level\n", + "35 1\n", + "34 1\n", + "42 1\n", + "27 2\n", + "11 2\n", + "2 1\n", + "33 1\n", + "45 1\n", + "22 2\n", + "48 2\n", + "4 3\n", + "10 2\n", + "step1_4_eda.py storybooks_csv_path: step1_2_storybooks.csv\n", + "label: chapter_count\n", + "label: paragraph_count\n", + "label: word_count\n", + "label: avg_word_length\n", + "\n", + "*** Step 2. Train Model ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step2_train\n", + "step2_1_train_model_pkl.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_1_train_model_pkl.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_1_train_model_pkl.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_1_train_model_pkl.py type(y): \n", + "step2_1_train_model_pkl.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_1_train_model_pkl.py type(X): \n", + "step2_1_train_model_pkl.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_1_train_model_pkl.py Defining model...\n", + "step2_1_train_model_pkl.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step2_1_train_model_pkl.py Fitting model...\n", + "step2_1_train_model_pkl.py Saving model...\n", + "step2_2_train_model_pmml.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_train.csv\n", + "step2_2_train_model_pmml.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 65 0.421053 0.366197 0.199313 2\n", + "1 33 0.526316 0.126761 0.001473 1\n", + "2 19 0.578947 0.492958 0.648994 3\n", + "3 8 0.368421 0.112676 0.063819 1\n", + "4 30 0.473684 0.338028 0.088856 1\n", + "5 2 0.157895 0.098592 0.050565 1\n", + "6 42 0.578947 0.464789 0.119784 1\n", + "7 17 0.263158 0.084507 0.173785 3\n", + "8 46 0.052632 0.014085 0.029946 1\n", + "9 31 0.000000 0.000000 0.000000 1\n", + "10 23 0.631579 0.718310 0.729995 4\n", + "11 11 0.421053 0.380282 0.085420 1\n", + "12 54 0.368421 0.338028 0.093765 2\n", + "13 24 0.526316 0.225352 0.349043 3\n", + "14 61 0.684211 0.352113 0.077565 2\n", + "15 29 0.368421 0.126761 0.044183 1\n", + "16 60 0.368421 0.535211 0.199804 2\n", + "17 50 0.736842 0.619718 0.388316 2\n", + "18 18 0.684211 0.478873 0.267059 3\n", + "19 51 0.789474 0.619718 0.296024 2\n", + "20 40 0.000000 0.169014 0.033873 1\n", + "21 15 1.000000 0.605634 0.623957 3\n", + "22 4 0.421053 0.295775 0.047619 1\n", + "23 47 0.631579 0.197183 0.047619 1\n", + "24 32 0.315789 0.295775 0.092784 1\n", + "25 16 0.368421 0.126761 0.049092 1\n", + "26 58 0.368421 0.169014 0.054492 2\n", + "27 14 0.526316 0.507042 0.229750 2\n", + "28 22 1.000000 1.000000 1.000000 4\n", + "29 1 0.157895 0.183099 0.072165 1\n", + "30 56 0.368421 0.464789 0.185567 2\n", + "31 48 0.210526 0.154930 0.076583 1\n", + "32 34 0.368421 0.211268 0.062838 1\n", + "33 63 0.578947 0.126761 0.039764 1\n", + "34 55 0.736842 0.676056 0.216495 2\n", + "35 20 0.473684 0.253521 0.320079 3\n", + "36 7 0.368421 0.126761 0.060874 1\n", + "37 26 0.157895 0.098592 0.183112 2\n", + "38 6 0.157895 0.042254 0.028473 1\n", + "39 57 0.631579 0.253521 0.055474 2\n", + "40 21 0.421053 0.309859 0.463918 3\n", + "41 59 0.631579 0.352113 0.053510 2\n", + "42 37 0.368421 0.225352 0.002946 1\n", + "43 38 0.526316 0.225352 0.058910 1\n", + "44 49 0.263158 0.267606 0.116838 1\n", + "45 41 0.315789 0.366197 0.262641 4\n", + "step2_2_train_model_pmml.py storybooks_dataframe.columns:\n", + "Index(['id', 'chapter_count', 'paragraph_count', 'word_count',\n", + " 'reading_level'],\n", + " dtype='object')\n", + "step2_2_train_model_pmml.py type(y): \n", + "step2_2_train_model_pmml.py y:\n", + " reading_level\n", + "0 2\n", + "1 1\n", + "2 3\n", + "3 1\n", + "4 1\n", + "5 1\n", + "6 1\n", + "7 3\n", + "8 1\n", + "9 1\n", + "10 4\n", + "11 1\n", + "12 2\n", + "13 3\n", + "14 2\n", + "15 1\n", + "16 2\n", + "17 2\n", + "18 3\n", + "19 2\n", + "20 1\n", + "21 3\n", + "22 1\n", + "23 1\n", + "24 1\n", + "25 1\n", + "26 2\n", + "27 2\n", + "28 4\n", + "29 1\n", + "30 2\n", + "31 1\n", + "32 1\n", + "33 1\n", + "34 2\n", + "35 3\n", + "36 1\n", + "37 2\n", + "38 1\n", + "39 2\n", + "40 3\n", + "41 2\n", + "42 1\n", + "43 1\n", + "44 1\n", + "45 4\n", + "step2_2_train_model_pmml.py type(X): \n", + "step2_2_train_model_pmml.py X:\n", + " chapter_count paragraph_count word_count\n", + "0 0.421053 0.366197 0.199313\n", + "1 0.526316 0.126761 0.001473\n", + "2 0.578947 0.492958 0.648994\n", + "3 0.368421 0.112676 0.063819\n", + "4 0.473684 0.338028 0.088856\n", + "5 0.157895 0.098592 0.050565\n", + "6 0.578947 0.464789 0.119784\n", + "7 0.263158 0.084507 0.173785\n", + "8 0.052632 0.014085 0.029946\n", + "9 0.000000 0.000000 0.000000\n", + "10 0.631579 0.718310 0.729995\n", + "11 0.421053 0.380282 0.085420\n", + "12 0.368421 0.338028 0.093765\n", + "13 0.526316 0.225352 0.349043\n", + "14 0.684211 0.352113 0.077565\n", + "15 0.368421 0.126761 0.044183\n", + "16 0.368421 0.535211 0.199804\n", + "17 0.736842 0.619718 0.388316\n", + "18 0.684211 0.478873 0.267059\n", + "19 0.789474 0.619718 0.296024\n", + "20 0.000000 0.169014 0.033873\n", + "21 1.000000 0.605634 0.623957\n", + "22 0.421053 0.295775 0.047619\n", + "23 0.631579 0.197183 0.047619\n", + "24 0.315789 0.295775 0.092784\n", + "25 0.368421 0.126761 0.049092\n", + "26 0.368421 0.169014 0.054492\n", + "27 0.526316 0.507042 0.229750\n", + "28 1.000000 1.000000 1.000000\n", + "29 0.157895 0.183099 0.072165\n", + "30 0.368421 0.464789 0.185567\n", + "31 0.210526 0.154930 0.076583\n", + "32 0.368421 0.211268 0.062838\n", + "33 0.578947 0.126761 0.039764\n", + "34 0.736842 0.676056 0.216495\n", + "35 0.473684 0.253521 0.320079\n", + "36 0.368421 0.126761 0.060874\n", + "37 0.157895 0.098592 0.183112\n", + "38 0.157895 0.042254 0.028473\n", + "39 0.631579 0.253521 0.055474\n", + "40 0.421053 0.309859 0.463918\n", + "41 0.631579 0.352113 0.053510\n", + "42 0.368421 0.225352 0.002946\n", + "43 0.526316 0.225352 0.058910\n", + "44 0.263158 0.267606 0.116838\n", + "45 0.315789 0.366197 0.262641\n", + "step2_2_train_model_pmml.py Defining model...\n", + "step2_2_train_model_pmml.py reading_level_model: PMMLPipeline(steps=[('regressor', DecisionTreeRegressor(random_state=1))])\n", + "step2_2_train_model_pmml.py Fitting model...\n", + "step2_2_train_model_pmml.py Saving model...\n", + "\n", + "*** Step 3. Make Prediction ***\n", + "run_all_steps.py os.getcwd(): /content/ml-storybook-reading-level/pmml/step3_predict\n", + "step3_1_predict.py model_pkl_path: ../step2_train/step2_1_model.pkl\n", + "step3_1_predict.py reading_level_model: DecisionTreeRegressor(random_state=1)\n", + "step3_1_predict.py storybooks_csv_path: ../step1_prepare/step1_3_storybooks_test.csv\n", + "step3_1_predict.py storybooks_dataframe:\n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_1_predict.py predictions_array:\n", + "[1. 1. 1. 2. 2. 1. 1. 1. 1. 4. 4. 2.]\n", + "step3_1_predict.py type(predictions_array):\n", + "\n", + "step3_1_predict.py predictions_dataframe:\n", + " reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_1_predict.py type(predictions_dataframe):\n", + "\n", + "step3_2_validate.py model_pmml_path: ../step2_train/step2_2_model.pmml\n", + "step3_2_validate.py reading_level_model: org.pmml4s.model.TreeModel@626d0559\n", + "step3_2_validate.py storybooks_dataframe: \n", + " id chapter_count paragraph_count word_count reading_level\n", + "0 28 0.315789 0.183099 0.036819 1\n", + "1 5 0.368421 0.239437 0.047128 1\n", + "2 9 0.368421 0.098592 0.042710 1\n", + "3 27 0.368421 0.267606 0.093765 2\n", + "4 66 0.578947 0.563380 0.207167 2\n", + "5 36 0.368421 0.352113 0.057928 1\n", + "6 39 0.473684 0.154930 0.077074 1\n", + "7 10 0.105263 0.197183 0.039764 1\n", + "8 64 0.000000 0.295775 0.031910 2\n", + "9 52 0.842105 0.521127 0.264605 2\n", + "10 25 0.789474 0.704225 0.773687 3\n", + "11 53 0.578947 0.816901 0.228768 2\n", + "step3_2_validate.py predictions: \n", + " predicted_reading_level\n", + "0 1.0\n", + "1 1.0\n", + "2 1.0\n", + "3 2.0\n", + "4 2.0\n", + "5 1.0\n", + "6 1.0\n", + "7 1.0\n", + "8 1.0\n", + "9 4.0\n", + "10 4.0\n", + "11 2.0\n", + "step3_2_validate.py type(predictions): \n", + "\n", + "step3_2_validate.py mean_absolute_error: 0.3333333333333333\n", + "step3_2_validate.py accuracy_score: 0.75\n" + ] + } + ] + } + ] +} \ No newline at end of file From b05debb555588fce7e8b4dd9a6ffb51df0472824 Mon Sep 17 00:00:00 2001 From: eve-b612 <73663546+eve-b612@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:39:20 +0100 Subject: [PATCH 2/2] Update README.md Added description of normalisation experiment, did not improve model accuracy. --- pmml/step1_prepare/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pmml/step1_prepare/README.md b/pmml/step1_prepare/README.md index 0b288b9..4695d77 100644 --- a/pmml/step1_prepare/README.md +++ b/pmml/step1_prepare/README.md @@ -23,3 +23,6 @@ ![](./step1_4_avg_word_length_scatter.png) ![](./step1_4_avg_word_length_hist.png) + +Testing normalising data: +3 variations of training data normalisation were tested to see if model accuracy would improve: min-max scaling, standard scaling (z-score) and robust scaling. Findings showed that the model results did not change with such implementations.