diff --git a/GSoC24_H/models/coref_model/config.toml b/GSoC24_H/models/coref_model/config.toml new file mode 100644 index 0000000..61f2c0e --- /dev/null +++ b/GSoC24_H/models/coref_model/config.toml @@ -0,0 +1,152 @@ +# ============================================================================= +# Before you start changing anything here, read the comments. +# All of them can be found below in the "DEFAULT" section + +[DEFAULT] + +# The directory that contains extracted files of everything you've downloaded. +data_dir = "coref/model" + +# Train, dev and test jsonlines +# train_data = "data/english_train_head.jsonlines" +# dev_data = "data/english_development_head.jsonlines" +# test_data = "data/english_test_head.jsonlines" + +train_data = "data/hindi1/hindi_train_head.jsonlines" +dev_data = "data/hindi1/hindi_development_head.jsonlines" +test_data = "data/hindi1/hindi_test_head.jsonlines" + +# train_data = "data/all_train_head.jsonlines" +# dev_data = "data/all_development_head.jsonlines" +# test_data = "data/all_test_head.jsonlines" + +# The device where everything is to be placed. "cuda:N"/"cpu" are supported. +device = "cpu" + + +# Bert settings ====================== + +# Base bert model architecture and tokenizer +bert_model = "bert-large-cased" + +# Controls max length of sequences passed through bert to obtain its +# contextual embeddings +# Must be less than or equal to 512 +bert_window_size = 512 + + +# General model settings ============= + +# Controls the dimensionality of feature embeddings +embedding_size = 20 + +# Controls the dimensionality of distance embeddings used by SpanPredictor +sp_embedding_size = 64 + +# Controls the number of spans for which anaphoricity can be scores in one +# batch. Only affects final scoring; mention extraction and rough scoring +# are less memory intensive, so they are always done in just one batch. +a_scoring_batch_size = 512 + +# AnaphoricityScorer FFNN parameters +hidden_size = 1024 +n_hidden_layers = 1 + + +# Mention extraction settings ======== + +# Mention extractor will check spans up to max_span_len words +# The default value is chosen to be big enough to hold any dev data span +max_span_len = 64 + + +# Pruning settings =================== + +# Controls how many pairs should be preserved per mention +# after applying rough scoring. +rough_k = 50 + + +# Training settings ================== + +# Controls whether to fine-tune bert_model +bert_finetune = true + +# Controls the dropout rate throughout all models +dropout_rate = 0.3 + +# Bert learning rate (only used if bert_finetune is set) +bert_learning_rate = 1e-5 + +# Task learning rate +learning_rate = 3e-4 +# learning_rate = 1e-5 + +# For how many epochs the training is done +train_epochs = 10 + +# Controls the weight of binary cross entropy loss added to nlml loss +bce_loss_weight = 0.5 + +# The directory that will contain conll prediction files +conll_log_dir = "data/conll_logs" + +# ============================================================================= +# Extra keyword arguments to be passed to bert tokenizers of specified models +[DEFAULT.tokenizer_kwargs] + [DEFAULT.tokenizer_kwargs.roberta-large] + "add_prefix_space" = true + + [DEFAULT.tokenizer_kwargs.spanbert-large-cased] + "do_lower_case" = false + + [DEFAULT.tokenizer_kwargs.bert-large-cased] + "do_lower_case" = false + + [DEFAULT.tokenizer_kwargs.bert-base-multilingual-cased] + "do_lower_case" = false + +# ============================================================================= +# The sections listed here do not need to make use of all config variables +# If a variable is omitted, its default value will be used instead + +# -------------- new ------------ +[mbert_cased] +bert_model = "bert-base-multilingual-cased" + +[xlmr] +bert_model = "xlm-roberta-base" + +[mbert_uncased] +bert_model = "bert-base-multilingual-uncased" +# ------------------------------ + +[roberta] +bert_model = "roberta-large" + +[roberta_no_bce] +bert_model = "roberta-large" +bce_loss_weight = 0.0 + +[spanbert] +bert_model = "SpanBERT/spanbert-large-cased" + +[spanbert_no_bce] +bert_model = "SpanBERT/spanbert-large-cased" +bce_loss_weight = 0.0 + +[bert] +bert_model = "bert-large-cased" + +[longformer] +bert_model = "allenai/longformer-large-4096" +bert_window_size = 2048 + +[debug] +bert_window_size = 384 +bert_finetune = false +device = "cpu:0" + +[debug_gpu] +bert_window_size = 384 +bert_finetune = false diff --git a/GSoC24_H/models/download_models.sh b/GSoC24_H/models/download_models.sh index 2cf36b8..a81166f 100644 --- a/GSoC24_H/models/download_models.sh +++ b/GSoC24_H/models/download_models.sh @@ -13,4 +13,5 @@ wget "https://dl.fbaipublicfiles.com/GENRE/fairseq_multilingual_entity_disambigu tar -xzvf fairseq_multilingual_entity_disambiguation.tar.gz -C ./EL_model wget -P ./EL_model "http://dl.fbaipublicfiles.com/GENRE/titles_lang_all105_marisa_trie_with_redirect.pkl" -# rm fairseq_multilingual_entity_disambiguation.tar.gz # remove the tar.gz file after extraction +# remove the tar.gz files after extraction (run if successful) +# rm wl_coref_transmucores.tar.gz files_indie.tar.gz fairseq_multilingual_entity_disambiguation.tar.gz diff --git a/GSoC24_H/requirements.txt b/GSoC24_H/requirements.txt index 35f4da5..7865473 100644 --- a/GSoC24_H/requirements.txt +++ b/GSoC24_H/requirements.txt @@ -24,6 +24,8 @@ requests nltk graphviz fairseq +genre marisa-trie sklearn-crfsuite gdown # for downloading the models from google drive +sentencepiece diff --git a/GSoC24_H/src/chunking/crf_chunker.py b/GSoC24_H/src/chunking/crf_chunker.py index edcb6c5..c06351f 100644 --- a/GSoC24_H/src/chunking/crf_chunker.py +++ b/GSoC24_H/src/chunking/crf_chunker.py @@ -60,7 +60,7 @@ def predict_with_crf(sent): ) file = open( - "chunking/state_dicts/model/sklearn_crf_model_v2_pos_mapped_2.pkl", "rb" + "../../models/RE_model/files_indie/sklearn_crf_model_v2_pos_mapped_2.pkl", "rb" ) crf = pickle.load(file) file.close() diff --git a/GSoC24_H/src/demo.py b/GSoC24_H/src/demo.py index 93cc3d8..2a958cd 100644 --- a/GSoC24_H/src/demo.py +++ b/GSoC24_H/src/demo.py @@ -18,7 +18,7 @@ def load_coref_model(): coref_model = CorefModel("models/coref_model/config.toml", "xlmr") coref_model.config.device = device coref_model.load_weights( - path="models/coref_model/xlmr_multi_plus_hi2.pt", + path="models/coref_model/model/xlmr_multi_plus_hi2.pt", map_location=device, ignore={ "bert_optimizer", @@ -39,10 +39,17 @@ def load_nlp_model(): @st.cache_resource def load_el_model(): - with open("input/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) + with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: trie = pickle.load(f) el_model = mGENRE.from_pretrained( - "models/fairseq_multilingual_entity_disambiguation" + "models/EL_model/fairseq_multilingual_entity_disambiguation" ).eval() return trie, el_model diff --git a/GSoC24_H/src/entity_linking.py b/GSoC24_H/src/entity_linking.py index 56e0e81..c15725f 100644 --- a/GSoC24_H/src/entity_linking.py +++ b/GSoC24_H/src/entity_linking.py @@ -5,14 +5,21 @@ # with open("input/lang_title2wikidataID-normalized_with_redirect.pkl", "rb") as f: # lang_title2wikidataID = pickle.load(f) -# -with open("input/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) +with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: trie = pickle.load(f) # generate Wikipedia titles and language IDs model = mGENRE.from_pretrained( - "models/fairseq_multilingual_entity_disambiguation" + "models/EL_model/fairseq_multilingual_entity_disambiguation" ).eval() sentences = [ diff --git a/GSoC24_H/src/indIE.py b/GSoC24_H/src/indIE.py index aa3bfd1..7c7a293 100644 --- a/GSoC24_H/src/indIE.py +++ b/GSoC24_H/src/indIE.py @@ -45,7 +45,7 @@ } hyper_params["embedding_size"] = model_embeddings[hyper_params["bert_model_name"]] -my_tagset = torch.load("input/my_tagset_" + hyper_params["notation"] + ".bin") +my_tagset = torch.load("models/RE_model/files_indie/my_tagset_" + hyper_params["notation"] + ".bin") hyper_params["my_tagset"] = my_tagset os.environ["PYTHONHASHSEED"] = str(hyper_params["rseed"]) @@ -80,7 +80,7 @@ print("Creating the XLM chunker model...") model = chunker_class(device, hyper_params).to(device) checkpoint = torch.load( - "models/state_dicts/model/" + str(hyper_params["run_ID"]) + "_epoch_4.pth.tar", + "models/RE_model/files_indie/" + str(hyper_params["run_ID"]) + "_epoch_4.pth.tar", map_location=device, ) checkpoint["state_dict"].pop("model.embeddings.position_ids") diff --git a/GSoC24_H/src/start.py b/GSoC24_H/src/start.py index f6f08f4..fd1be67 100644 --- a/GSoC24_H/src/start.py +++ b/GSoC24_H/src/start.py @@ -46,7 +46,7 @@ def replace_mention(match): coref_model = CorefModel("models/coref_model/config.toml", "xlmr") coref_model.config.device = device coref_model.load_weights( - path="models/coref_model/xlmr_multi_plus_hi2.pt", + path="models/coref_model/model/xlmr_multi_plus_hi2.pt", map_location=device, ignore={ "bert_optimizer", @@ -56,10 +56,18 @@ def replace_mention(match): }, ) coref_model.training = False - with open("input/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) + with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: trie = pickle.load(f) el_model = mGENRE.from_pretrained( - "models/fairseq_multilingual_entity_disambiguation" + "models/EL_model/fairseq_multilingual_entity_disambiguation" ).eval() nlp = stanza.Pipeline(lang="hi", processors="tokenize,pos") # tokenizer = AutoTokenizer.from_pretrained("ai4bharat/IndicNER") diff --git a/GSoC25_H/.gitignore b/GSoC25_H/.gitignore new file mode 100644 index 0000000..42aa43e --- /dev/null +++ b/GSoC25_H/.gitignore @@ -0,0 +1,14 @@ +*.pkl +*.pt +*.model +__pycache__/ +.ipynb_checkpoints/ +.DS_Store +.env +models/EL_model/fairseq_multilingual_entity_disambiguation/ +models/RE_model/files_indie/ +models/state_dicts/model.pt +models/ontology/ +*.tar.gz +llm_IE/finetuning/synthetic_data/ +llm_IE/full_dataset_results/ diff --git a/GSoC25_H/IndIE/.gitignore b/GSoC25_H/IndIE/.gitignore new file mode 100644 index 0000000..513e1ca --- /dev/null +++ b/GSoC25_H/IndIE/.gitignore @@ -0,0 +1,5 @@ +__pycache__/ +venv/ +chunking/data/ +chunking/state_dicts/model/ +.DS_Store \ No newline at end of file diff --git a/GSoC25_H/IndIE/README.md b/GSoC25_H/IndIE/README.md new file mode 100644 index 0000000..87fb682 --- /dev/null +++ b/GSoC25_H/IndIE/README.md @@ -0,0 +1,93 @@ +# IndIE + +This is the code for the paper titled "IndIE: A Multilingual Open Information Extraction Tool For Indic Languages" accepted in the Findings of IJCNLP-AACL 2023. + +You can check out the live deployment of the IndIE [here](http://103.25.231.59:80). + +## Installation + +* Git clone. +* Make a new virtual environment. + * Upgrade pip by ```pip install -U pip``` +* Install the necessary libraries by using the following command: +```pip install -r requirements.txt``` + * If you face any difficulty in installing any library then we recommend to install it without version number. Hence, pip will install from the latest version. + * However, we do not recommend this for stanza library because a different version of stanza library will yield in different dependency parse trees [[source]](https://github.com/stanfordnlp/stanza/issues/990). + +## Download Models + +Download the relevant files from [here](https://drive.google.com/file/d/1UqOUdeK96m6EabI-cg2EeBz6p3IwrPZ6/view?usp=sharing). + +Then place the files in the directories such that your directory structure looks like this: + +``` +. +├── chunking +│   ├── chunking_model.py +│   ├── crf_chunker.py +│   ├── data +│   │   └── my_tagset_BI.bin +│   └── state_dicts +│   └── model +│   ├── 26_epoch_4.pth.tar +│   └── sklearn_crf_model_v2_pos_mapped_2.pkl +``` + +## Memory needed + +The amount of memory needed varies depending upon the number of languages on which you wish to run your triple extraction. + +1) All languages (Hindi/Tamil/Telugu/Urdu) + * GPU present + * ~6GB on CPU/RAM + * ~6GB on GPU + * GPU absent + * ~7GB on CPU/RAM +2) Only one language + * GPU present + * ~3GB on CPU/RAM + * ~4GB on GPU + * GPU absent + * ~3GB on CPU/RAM + + +## Extracting triples + +Specify the language and list of strings in the ```main.py``` file. + +On GPU, make sure you have same device order on nvidia-smi and PCI bus. Command: ```export CUDA_DEVICE_ORDER=PCI_BUS_ID``` + +Run + +```CUDA_VISIBLE_DEVICES=0 python main.py``` + +where ```0``` is your GPU ID. The code also runs in absence of GPU but takes a little longer. In order to run the code only on CPU, simply omit the GPU ID. + +## Citation + +```Will be updated``` + + +## Workflow for GSoC25_H +1. Update hyperparameters in main.py for running the kind of extractions: + +```json +'use_llm': False, # True for running entire MDT output through LLM + 'llm_fallback': True, # set to True for running only on sentences which did not get any output from original rule based extractions + 'llm_enhancement': True, # set to True for running rule based extraction + llm extraction + 'llm_filter_mode': False, # set to True for running llm based filter on the output of all the above strategies + 'llm_model': 'gemma3:12b-it-qat' +``` + + +2. Generate extractions using ```python main.py``` + +3. Convert the *.h5 generated file to tab sepearted extractions using ```python convert.py``` + +4. Copy the file the IndIE/hindi-benchie/extractions folder and update the code.py file with correct file path and run ```python code.py```. + + + + + + diff --git a/GSoC25_H/IndIE/app.py b/GSoC25_H/IndIE/app.py new file mode 100644 index 0000000..5a93ef7 --- /dev/null +++ b/GSoC25_H/IndIE/app.py @@ -0,0 +1,35 @@ +from flask import Flask, render_template, request, flash +from chunck import ChunckProcessor +import os + +app = Flask(__name__) +app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY',"SECRET_KEY") +processor = { + "hi": ChunckProcessor(language="hi"), + "ta": ChunckProcessor(language="ta"), + "te": ChunckProcessor(language="te"), + "ur": ChunckProcessor(language="ur") +} + + +@app.route('/', methods=('GET', 'POST')) +def create(): + if request.method == 'POST': + sentence = request.form['sentence'] + language = request.form['language'] + if not sentence or not language: + flash('Sentence and Language are required!') + else: + lang_processor = processor.get(language) + data = [] + if lang_processor: + result = lang_processor.run(sentence) + for sentence, triple in zip(result[0], result[1]): + obj = { + "sentence": sentence, + "result": triple + } + data.append(obj) + return render_template('index.html', data=data) + + return render_template('index.html', data=[]) \ No newline at end of file diff --git a/GSoC25_H/IndIE/benchie_indie.h5 b/GSoC25_H/IndIE/benchie_indie.h5 new file mode 100644 index 0000000..3648c78 Binary files /dev/null and b/GSoC25_H/IndIE/benchie_indie.h5 differ diff --git a/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt b/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt new file mode 100644 index 0000000..0a4edc2 --- /dev/null +++ b/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt @@ -0,0 +1,712 @@ +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत सििद्ध होती है शक्तिरूपी माया +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों भेजे गए उपक्रमों +3 उपक्रमों property विभागों +3 विभागों property केन्द्रीय सरकार +3 भारत सरकार property केन्द्रीय सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों +3 भारत सरकार भेजे गए विवादित अंगुलि चिह्नों +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों +3 उपक्रमों भेजे गए विवादित अंगुलि चिह्नों +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए केन्द्रीय सरकार +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए भारत सरकार +3 उपक्रमों property विभागों केन्द्रीय सरकार +3 विभागों property केन्द्रीय सरकार भारत सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों भारत सरकार +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम property 007 +4 बारह पुस्तकों property फ़्लेमिंग +4 दो लघुकथाओं property फ़्लेमिंग +4 007 प्रसिद्ध गुप्त नाम +4 यह एजेंट मौजूद फ़्लेमिंग +4 फ़्लेमिंग मौजूद बारह पुस्तकों +4 फ़्लेमिंग मौजूद दो लघुकथाओं +4 बारह पुस्तकों property फ़्लेमिंग दो लघुकथाओं +4 यह एजेंट मौजूद फ़्लेमिंग बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग दो लघुकथाओं +4 बारह पुस्तकों फ़्लेमिंग मौजूद दो लघुकथाओं +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 +6 नवीनतम वेतनमानों लागू किया गया है 01 अप्रैल 2009 +6 कंपनी लागू किया गया है नवीनतम वेतनमानों +6 01 अप्रैल 2009 लागू किया गया है कंपनी +6 01 अप्रैल 2009 नवीनतम वेतनमानों लागू किया गया है कंपनी +6 नवीनतम वेतनमानों कंपनी लागू किया गया है 01 अप्रैल 2009 +6 कंपनी 01 अप्रैल 2009 लागू किया गया है नवीनतम वेतनमानों +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड +7 गोधरा ट्रेन कांड property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद +7 सुनवाई property गोधरा ट्रेन कांड 01 जून : +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई अहमदाबाद +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 हुआ नियुक्त हुई +8 वे नियुक्त हुई सर्वोच्च न्यायालय +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 नियुक्त हुई वे सर्वोच्च न्यायालय +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत property ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 जारी किया गया इम्पीरियल पोस्टल सर्विस +10 1 अक्टूबर 1854 हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस जारी किया गया 1 अक्टूबर 1854 +11 आंध्र ने पाया कर्नूल +11 दर्जा पाया 1 अक्टूबर 1953 +11 दर्जा property राज्य +11 आंध्र ने पाया राज्य का दर्जा +11 कर्नूल पाया राजधानी के साथ +11 आंध्र ने पाया 1 अक्टूबर 1953 +11 कर्नूल आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल राजधानी के साथ +11 कर्नूल आंध्र ने पाया 1 अक्टूबर 1953 +11 दर्जा पाया 1 अक्टूबर 1953 आंध्र ने +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 +12 ऑस्ट्रेलिया ज़ारी किया गया 1 अक्टूबर 2008 +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न न्यूजीलैंड +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 +14 शासन आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन +14 यह देश आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड के शासन +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड +14 शासन आजाद हुआ इंग्लैंड यह देश +14 इंग्लैंड के शासन यह देश आजाद हुआ इंग्लैंड +15 अंग्रेजों भेज दिया गया चन्द्रसिंह +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 हुआ भेज दिया गया +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह भेज दिया गया अंग्रेजों +15 अंग्रेजों भेज दिया गया चन्द्रसिंह फ्रांस +15 अंग्रेजों भेज दिया गया चन्द्रसिंह अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह +16 इसे घोषित किया गया 1 अप्रैल 1946 +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे दिखाई पड़ती थी कर्मा +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा +18 चेहरे दिखाई पड़ती थी कर्मा बाल्यकाल से ही +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब बन चुके हैं अब तक , +19 भारतीय संगीत जगत बन चुके हैं अब तक , +19 सोनू बन चुके हैं भारतीय संगीत जगत +19 एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत +19 तब बन चुके हैं अब तक , भारतीय संगीत जगत +19 अब तक , भारतीय संगीत जगत बन चुके हैं सोनू +21 सोवियत दस्तों ने आज़ाद कराया प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन +21 प्राग property राजधानी +21 राजधानी property चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 चेकोस्लोवाकिया राजधानी प्राग +21 प्राग सोवियत दस्तों ने आज़ाद कराया बर्लिन +21 प्राग सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन सोवियत दस्तों ने +21 प्राग property राजधानी चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग +22 वे प्रथम भारतीय हैं क्षेत्र +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति +22 योग में शिक्षा +22 शिक्षा क्षेत्र में योग +22 राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +22 वे property प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल +23 सभी बच्चों दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान property दर्शनीय केन्द्र +24 लोगों के लिए दर्शनीय केन्द्र property यह स्थान +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +25 वेदाङ्ग प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +25 इस सम्बन्ध पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +25 वेदाङ्ग पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में +27 ऋग्वेद मिलता है उल्लेख +27 हिमाचल प्रदेश बहने वाली पांच नदियों में +27 उल्लेख property चार +27 हिमाचल प्रदेश बहने वाली पांच नदियों +27 पांच नदियों में चार का उल्लेख +27 चार उल्लेख ऋग्वेद +27 पांच नदियों में उल्लेख मिलता है ऋग्वेद +27 पांच नदियों में हिमाचल प्रदेश बहने वाली पांच नदियों +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने +28 उन्होंने इंकार कर दिया बच्चे +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन property शिक्षा +29 शिक्षा जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन जुड़ा है शिक्षा +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों शिक्षा +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल +31 यह शहर property प्रमुख हिल स्टेशन +31 पश्चिम बंगाल प्रमुख हिल स्टेशन property यह शहर +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत +32 पिथोरागढ जिले property कुमाऊँ मण्डल +32 सिलकोट property एक गाँव +32 सिलकोट में है गंगोलीहाट तहसील +32 सिलकोट में है भारत +32 सिलकोट में है उत्तराखण्ड राज्य +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property सिलकोट +32 एक गाँव property पिथोरागढ जिले कुमाऊँ मण्डल +32 पिथोरागढ जिले एक गाँव property सिलकोट +32 गंगोलीहाट तहसील सिलकोट में है भारत +32 गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +32 भारत सिलकोट में है उत्तराखण्ड राज्य +32 भारत सिलकोट में है कुमाऊँ मण्डल +32 भारत सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले +33 तकनीकी केंद्र स्थानापन्न करना है तिरुवनंतपुरम +33 तकनीकी केंद्र property एयर लाइन +33 एयर लाइन तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 चीफ कोर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह +35 28 नवम्बर 1694 हो गई मृत्यु +35 मृत्यु property बाशो +35 किसी बीमारी की वजह हो गई मृत्यु +35 बाशो हो गई मृत्यु +35 मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई बाशो +35 28 नवम्बर 1694 हो गई मृत्यु बाशो +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 मुकाबला हुआ फिर एक बार +37 शाही सेना मुकाबला हुआ फिर पंचायती सेना +37 सन 1696 हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल +38 एक गाँव property अदिलाबादु जिले +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत property भारत +38 मर्लगोंड , property एक गाँव +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 मर्लगोंड , का है भारत +38 एक गाँव property अदिलाबादु जिले आन्ध्रप्रदेश राज्य के अन्तर्गत +38 अदिलाबादु जिले एक गाँव property मर्लगोंड , +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत भारत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है भारत +38 अदिलाबादु जिले मर्लगोंड , का है भारत +39 अनेक ग्रन्थ लिखे गये बाद +39 दर्शन पक्ष लिखे गये व्याकरण +39 बाद लिखे गये व्याकरण +39 बाद लिखे गये दर्शन पक्ष +39 बाद लिखे गये अनेक ग्रन्थ +39 अनेक ग्रन्थ लिखे गये बाद व्याकरण +39 अनेक ग्रन्थ लिखे गये बाद दर्शन पक्ष +39 दर्शन पक्ष लिखे गये व्याकरण बाद +40 निदेशक बने 1975 +40 इलाहाबाद बने नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद +40 इलाहाबाद हुआ नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद नवनिर्मित मेहता अनुसंधान संस्थान +41 नाम property उनके +41 नाम property इस जगह +41 उनके रखा गया नाम +41 उनके नाम property इस जगह +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप property अमरीका +43 मार्च 2001 हुआ वापसी हुई फिर +43 अमरीका वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप +43 उनकी अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर अमरीका +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 +44 इसकी रचना आधारशिला रखी गयी थी 3 मार्च 1884 +44 सर वाईकर के आधारशिला रखी गयी थी इसकी रचना +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 इसकी रचना +44 3 मार्च 1884 इसकी रचना आधारशिला रखी गयी थी सर वाईकर के +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क property विभिन्न टेलीविजन कंपनियों +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों +45 विभिन्न टेलीविजन कंपनियों के लिए इस तकनीक +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था क्षेत्र +46 सन 1961 सम्मानित किया गया था पद्म भूषण +46 क्षेत्र property चिकित्सा विज्ञान +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 सन 1961 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप property काइटिन +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं काइटिन +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 संयुक्त राजशाही 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा द डार्क नाईट राइसेस +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 संयुक्त राजशाही द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 20 जुलाई 2012 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी +51 यह लगाया जाता है जर्मनी +51 हर साल यह लगाया जाता है जर्मनी +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी यह +52 द्रौपदी ने वरमाला डाल दिया गले +52 गले property अर्जुन +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन +54 भोजन property तटीय कर्नाटक +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल +54 तटीय कर्नाटक में है भोजन +54 भोजन property समुद्री भोजन , +54 भोजन property नारियल +54 भोजन property नारियल तेल +54 समुद्री भोजन , property नारियल +54 समुद्री भोजन , property नारियल तेल +54 नारियल property नारियल तेल +54 व्यापक उपयोग property उल्लेखनीय +54 तटीय कर्नाटक भोजन property समुद्री भोजन , +54 तटीय कर्नाटक भोजन property नारियल +54 तटीय कर्नाटक भोजन property नारियल तेल +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल +54 व्यापक उपयोग property समुद्री भोजन , भोजन +54 समुद्री भोजन , व्यापक उपयोग property उल्लेखनीय +54 नारियल व्यापक उपयोग property नारियल तेल +54 व्यापक उपयोग property नारियल भोजन +54 नारियल व्यापक उपयोग property उल्लेखनीय +54 व्यापक उपयोग property नारियल तेल भोजन +54 नारियल तेल व्यापक उपयोग property उल्लेखनीय +54 समुद्री भोजन , भोजन property नारियल +54 समुद्री भोजन , भोजन property नारियल तेल +54 नारियल भोजन property नारियल तेल +54 नारियल समुद्री भोजन , property नारियल तेल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां +56 तारों कहते हैं श्रेणी +56 श्रेणी property सिफियस चतुर्थ +56 सिफियस चतुर्थ श्रेणी के तारों +56 सिफीड कहते हैं सिफियस चतुर्थ +57 यह प्रसिद्ध है नाम +57 नाम property ' प्राथमिक विधि अध्यारोप ' +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान +58 अधिक संपर्क property इस देश +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों +60 खानों property अभ्रक आदि +60 अभ्रक आदि में खानों +60 खानों प्रयुक्त होती है मोमबत्तियाँ भी +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं उन्होंने उपन्यास +61 कहानियाँ इस शैली लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो property मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 पेश किया उन्होंने +63 वार्षिक बजट property सरकार +63 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 +63 उन्होंने 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह +64 व्यापार निर्भर रहती है चाय +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +64 लगभग पूरी तरह स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम +66 नाम property उत्कल मणि +66 उन्हें जाना जाता है उत्कल मणि +66 नाम उन्हें जाना जाता है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +67 कृपया देखें फ्रेंच फ्लेमिश अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश property इस नदी +68 इस नदी प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान इस नदी +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह हिस्सा है लीबियाई रेगिस्तान +69 लीबियाई रेगिस्तान हिस्सा है मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +69 जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत +70 राज्य राजधानी बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 दो निबंध संग्रह उनका प्रकाशित हुए हैं एक कहानी संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम +74 स्थित property अलबामा +74 स्थित property दक्षिण +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +74 अलबामा स्थित property दक्षिण +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर +75 होबार्ट शहर property ऑस्ट्रेलिया +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +75 होबार्ट शहर यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम property एक सरलीकृत सारांश +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि विभाजित किया है इंडोचायनीज़ +78 दृष्टि property विशेषता +78 दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +78 जंगलों विशेषता की दृष्टि +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों +78 इंडोचायनीज़ दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों दर्शाता है 5364 ईसा पूर्व +80 वर्षों property जन्म से पूर्व +80 जन्म से पूर्व property ईसा मसीह +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों property जन्म से पूर्व ईसा मसीह +81 विश्वामित्र पहनाती हैं जयमाल +81 सीता राम पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 सीता राम पहनाती हैं जयमाल +81 जयमाल विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं जयमाल सीता राम +81 स्वरघोष के मध्य सीता राम पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य +82 इस तथ्य पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पड़ा आखिर नाम +82 इस तथ्य पड़ा आखिर किस वर्ष +82 नाम property स्थान +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर किस वर्ष +82 नाम इस तथ्य पड़ा आखिर किस वर्ष +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम जारी किया गया 2006 के मध्य +84 एकलों के बीच जारी किया गया एल्बम +84 एल्बम जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम +84 2006 के मध्य एल्बम जारी किया गया एकलों के बीच +84 2006 के मध्य एल्बम जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम तीसरा कट +84 एल्बम जारी किया गया तीसरा कट 2006 के मध्य +85 उस दौर कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया +86 1900 के आसपास हुआ विकासों +86 बहुत से विकासों ने बेहतर कर दिया परिणामों +86 निमोनिया पीड़ित लोगों के लिये परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों प्रचार प्रसार +87 प्रचार बहुत योगदान है पिता के समान प्रसार +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह +88 मामले property उत्पन्न होने +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस +89 वास्तव मिलते नहीं है प्राणी +89 इश -- एस सामना होता है , इश -- डू +89 इश -- एस सामना होता है , दो प्राणियों +89 जहां मिलते नहीं है इश -- डू +89 जहां मिलते नहीं है इश -- एस +89 दो प्राणियों मिलते नहीं है प्राणी +89 इश -- एस प्राणी मिलते नहीं है वास्तव +89 प्राणी मिलते नहीं है इश -- एस जहां +89 इश -- एस प्राणी मिलते नहीं है दो प्राणियों +89 वास्तव मिलते नहीं है प्राणी दो प्राणियों +89 इश -- डू इश -- एस सामना होता है , दो प्राणियों +89 इश -- डू जहां मिलते नहीं है इश -- एस +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस बदल रहे हैं तेजी +91 पुराने तरीके property दूध विपणन +91 विकासशील देशों में किसानों +91 विकासशील देशों में दूध विपणन +91 किसानों के दूध विपणन +91 पुराने तरीके बदल रहे हैं विकासशील देशों +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं विकासशील देशों +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 तेजी अपने ही पड़ोस बदल रहे हैं पुराने तरीके +91 किसानों विकासशील देशों में दूध विपणन +91 विकासशील देशों पुराने तरीके बदल रहे हैं अपने ही पड़ोस +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +92 उन्होंने शुरुआत एक दीवाना था +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +93 बचाना property अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो बचाना मक्खियों +93 इस रोग प्रतिषेधात्मक उपचार में भी है +93 मक्खियों property खाद्य एवं पेय पदार्थो +93 खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +93 मक्खियों खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता +94 राष्ट्रीयता संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता property प्रतिस्पर्धी टीम +94 राष्ट्रीयता संदर्भित करता है , चालक +94 यह संदर्भित करता है राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता चालक +94 गाड़ी निर्माता राष्ट्रीयता संदर्भित करता है , चालक +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई +95 सड़क मार्ग property सीधी बस सेवा +95 मुंबई सीधी बस सेवा property सड़क मार्ग +96 छपाई प्रयोग होता था , ब्लाकों +96 ब्लाकों जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई प्रयोग होता था लकड़ी के ब्लाकों +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग +98 यह स्थित है बलिया जिले +98 बलिया जिले property उत्तर प्रदेश +98 बलिया शहर स्थित है पश्चिम +98 यह स्थित है उत्तर प्रदेश के बलिया जिले +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 बलिया जिले यह स्थित है उत्तर प्रदेश के बलिया जिले +98 बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 उत्तर प्रदेश के बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध property यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे property सिरमोर राज्य +103 इसका उदगम स्थान सिरमोर राज्य +103 उदगम स्थान property ढलुवा भाग +103 सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे +103 ढलुवा भाग property अंतगर्त हिमालय पर्वत के नीचे +103 इसका उदगम स्थान property ढलुवा भाग +103 सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे property ढलुवा भाग +103 उदगम स्थान property ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे +104 दक्षिण भारत प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत था प्राधान्य उन दिनों +104 दक्षिण भारत था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय +105 किसी देश ये कहानियाँ हो सकती हैं समय +106 प्रकृति आधारित निर्माण प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण +107 2010 को ' ' दर्शन -- परिषद् ' ' सम्पन्न हुआ नाम +108 यहीं देहांत हो गया सन 1533 +108 अल्पायु देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु property 47 वर्ष +108 दिन property रथयात्रा +108 यहीं हुआ देहांत हो गया +108 सन 1533 हुआ देहांत हो गया +108 47 वर्ष था देहांत हो गया +108 अल्पायु हुआ देहांत हो गया +108 रथयात्रा था दिन +108 उनका था देहांत हो गया +108 अल्पायु देहांत हो गया दिन उनका +108 यहीं हुआ देहांत हो गया सन 1533 +108 यहीं हुआ देहांत हो गया अल्पायु +108 सन 1533 हुआ देहांत हो गया अल्पायु +108 47 वर्ष था देहांत हो गया उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 2008 बने तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप +110 एकाधिक अवसर जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने जीता यूरोपियन कप तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप एकाधिक अवसर +111 मॉस जल रोक रखा जाता है मिट्टी +111 मॉस रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप property महाभारत +112 महाभारत property भण्डार +112 वर्तमान रूप property भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि property भण्डार +112 वर्तमान रूप property महाभारत भण्डार +112 महाभारत property भण्डार वर्तमान रूप +112 महाभारत property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि diff --git a/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt b/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt new file mode 100644 index 0000000..d31c302 --- /dev/null +++ b/GSoC25_H/IndIE/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt @@ -0,0 +1,683 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का +3 भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 विवादित अंगुलि चिह्नों का परीक्षण करना केन्द्रीय सरकार के विभागों एवं +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के विभागों एवं +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +3 केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के उपक्रमों द्वारा +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के गुप्त नाम से प्रसिद्ध +4 यह एजेंट मौजूद फ़्लेमिंग की +4 फ़्लेमिंग की मौजूद बारह पुस्तकों +4 फ़्लेमिंग की मौजूद दो लघुकथाओं में +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +4 यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +4 बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 को शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से लागू किया गया कंपनी में +6 कंपनी में लागू किया गया नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 01 अप्रैल 2009 से लागू किया गया कंपनी में नवीनतम वेतनमानों को +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत थे ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को हुआ राज्य का दर्जा +11 आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल +11 कर्नूल को पाया राजधानी के साथ +11 कर्नूल को पाया आंध्र +11 कर्नूल को आंध्र ने पाया राज्य का दर्जा +11 कर्नूल को आंध्र ने पाया कर्नूल +11 आंध्र ने पाया कर्नूल को राजधानी के साथ +11 आंध्र ने पाया कर्नूल को आंध्र +11 राज्य का दर्जा आंध्र ने पाया कर्नूल +11 राजधानी के साथ कर्नूल को पाया आंध्र +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को जारी किया गया न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 रॉबर्ट आइगर ने लिया सीईओ के रूप में +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +13 स्थान रॉबर्ट आइगर ने लिया सीईओ के रूप में +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने सीईओ के रूप में +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में हुआ चन्द्रसिंह को +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे पर +18 कर्मा के चेहरे पर दिखाई पड़ती थी एक अनूठी आभा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा के चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 चेकोस्लोवाकिया की है राजधानी प्राग +21 प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग एवं शिक्षा के में क्षेत्र +22 योग एवं शिक्षा +22 राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 आज भी है दर्शनीय केन्द्र +24 यह स्थान है दर्शनीय केन्द्र +24 क्षेत्र के है दर्शनीय केन्द्र +24 लोगों के लिए है दर्शनीय केन्द्र +24 आज भी है दर्शनीय केन्द्र यह स्थान +24 आज भी है दर्शनीय केन्द्र क्षेत्र के +24 आज भी है दर्शनीय केन्द्र लोगों के लिए +24 यह स्थान है दर्शनीय केन्द्र क्षेत्र के +24 यह स्थान है दर्शनीय केन्द्र लोगों के लिए +24 क्षेत्र के है दर्शनीय केन्द्र लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही है वेदाङ्ग का प्रतिनिधित्व +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +26 शब्द की आत्मा समझकर ही +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं मैं +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में बहती है नदियाँ +27 पांच नदियों में से है चार +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने इकार कर दिया बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का जुड़ा है तुलनात्मक अध्ययन +29 सभी सामाजिक विज्ञानों से तुलनात्मक अध्ययन जुड़ा है शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 वर्तमान में है यह शहर +31 यह शहर है पश्चिम बंगाल का +31 वर्तमान में है यह शहर पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट है गाँव +32 सिलकोट गंगोलीहाट तहसील में है +32 सिलकोट भारत के उत्तराखण्ड राज्य के अन्तर्गत +32 सिलकोट कुमाऊँ मण्डल के पिथोरागढ जिले का +32 सिलकोट उत्तराखण्ड राज्य के अन्तर्गत है +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के के सामने विशेष न्यायाधीश मोहम्मद रजा +34 दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से हो गई मृत्यु +35 बाशो की हो गई मृत्यु +35 बाशो की हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई बाशो की +35 28 नवम्बर 1694 को हो गई मृत्यु बाशो की +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +37 शाही सेना से मुकाबला हुआ पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड है गाँव +38 मर्लगोंड में कुभीर मण्डल +38 कुभीर मण्डल में भारत +38 भारत के आन्ध्रप्रदेश राज्य +38 आन्ध्रप्रदेश राज्य के अदिलाबादु जिले +38 अदिलाबादु जिले का एक गाँव +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +38 मर्लगोंड में कुभीर मण्डल भारत +38 भारत के आन्ध्रप्रदेश राज्य अदिलाबादु जिले +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 बाद में हुआ लिखे गये +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में +40 Mehta अनुसंधान संस्थान में बना निदेशक +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 उनके नाम पर इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में हुआ वापसी +43 अमरीका के रक्षा सचिव अट्ठाइसवें +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा रखी गयी थी आधारशिला +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क में विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के +46 क्षेत्र में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं और मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 20 जुलाई 2012 को द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह लगाया जाता है जर्मनी के +51 यह लगाया जाता है फ्रैंकफर्ट शहर मे +51 हर साल यह लगाया जाता है जर्मनी के +51 हर साल यह लगाया जाता है फ्रैंकफर्ट शहर मे +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +53 पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है यह त्यौहार +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में भोजन +54 भोजन में समुद्री भोजन , नारियल +54 भोजन में नारियल तेल का नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने सुधारा वहां के +55 उपेक्षित जीवविज्ञान उद्यान को भी कार्ल ने सुधारा वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों को +56 सिफियस चतुर्थ की कहते हैं सिफीड +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने पता लगाया कि +59 राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया कि +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की में खानों +60 मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +60 खानों में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +61 उन्होंने इस शैली में लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास इस शैली में +61 कहानियाँ इस शैली में लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है दलित +62 वो है मलयाली +62 वो मुख्य न्यायाधीश है +62 दलित वो है मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को हुआ पेश किया +63 उन्होंने पेश किया सरकार का +63 सरकार का पेश किया वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +63 वार्षिक बजट उन्होंने पेश किया सरकार का +63 6 जुलाई 2009 को पेश किया उन्होंने सरकार का +63 सरकार का पेश किया वार्षिक बजट उन्होंने +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +69 लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का +69 जिसमें सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर है भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 सुपद्य व्याकरण लिखा है पद्मनाभ दत्त ने +73 पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी +73 सुपद्य व्याकरण पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 इसके पश्चिम में अलबामा +74 अलबामा स्थित है पश्चिम में +74 दक्षिण में स्थित है फ्लोरिडा राज्य +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +76 पूरी प्रतिलिपि नहीं है है एक सरलीकृत सारांश +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा किया वैदिक मन्त्रों के +81 सीता राम को पहनाती हैं जयमाल +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +81 स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 इस तथ्य पर बटे हुए हैं कि +82 किस वर्ष में बटे हुए हैं स्थान का +82 स्थान का बटे हुए हैं नाम +82 नाम बटे हुए हैं एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर बटे हुए हैं पड़ा आखिर +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर कि +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +82 किस वर्ष में बटे हुए हैं स्थान का नाम +82 स्थान का बटे हुए हैं नाम एजिंकोर्ट स्क्वायर +82 नाम बटे हुए हैं एजिंकोर्ट स्क्वायर पड़ा आखिर +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 विभिन्न विभाग होते हैं विभिन्न विभाग +83 जिनके अलगअलग अध्यक्ष होते हैं अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एकलों के बीच जारी किया गया एल्बम से +84 एल्बम से जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम से +84 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +84 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम से तीसरा कट +84 एल्बम से जारी किया गया तीसरा कट 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि mark कोई और मानक नहीं थे , +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास हुआ विकास +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को +86 निमोनिया से बेहतर कर दिया परिणामों को +86 पीड़ित लोगों के लिये बेहतर कर दिया परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को निमोनिया से +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये +86 निमोनिया से बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों +87 सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों +87 आपका भी बहुत योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां में इश -- डू +89 इश -- डू में में दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +90 उस तल में ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 विकासशील देशों में में किसानों के +91 किसानों के दूध विपणन के पुराने तरीके +91 पुराने तरीके बदल रहे हैं तेजी से +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं तेजी से +91 अपने ही पड़ोस में बदल रहे हैं तेजी से पुराने तरीके +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने की शुरुआत +92 एक दीवाना था से की शुरुआत +92 उन्होंने की बोलीवुड करियर +92 बोलीवुड करियर की शुरुआत +92 17 फ़रवरी 2012 को हुआ रिलीज़ किया गया +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने की शुरुआत एक दीवाना था से +92 शुरुआत उन्होंने की बोलीवुड करियर +92 एक दीवाना था से की शुरुआत बोलीवुड करियर +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के प्रतिषेधात्मक उपचार में भी है +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग है मुंबई से सीधी बस सेवा +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +96 शिल्पी -- सुथार करते थे जिसका निर्माण +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध है यही कारण +102 यही कारण है कि +102 विश्व भर में प्रसिद्ध केरल +102 केरल अपनी आयुर्वेदिक चिकित्सा शैली +102 प्रसिद्ध है यही कारण कि +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका है उदगम स्थान +103 उदगम स्थान है सिरमोर राज्य के +103 सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का +103 अंतगर्त हिमालय पर्वत के नीचे का है ढलुवा भाग +103 इसका है उदगम स्थान सिरमोर राज्य के +103 उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +103 सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत में था प्राधान्य उन दिनों +104 दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 उनका देहांत हो गया 47 वर्ष की +108 उनका देहांत हो गया अल्पायु में +108 उनका देहांत हो गया रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +108 दिन उनका देहांत हो गया 47 वर्ष की +108 दिन उनका देहांत हो गया रथयात्रा के +108 47 वर्ष की उनका देहांत हो गया अल्पायु में +108 47 वर्ष की उनका देहांत हो गया रथयात्रा के +108 उनका देहांत हो गया अल्पायु में दिन +108 अल्पायु में उनका देहांत हो गया रथयात्रा के +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है तालाब में +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 एकाधिक अवसर पर तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से से मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का है वर्तमान रूप +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 महाभारत का है वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार diff --git a/GSoC25_H/IndIE/benchie_indie_new.csv b/GSoC25_H/IndIE/benchie_indie_new.csv new file mode 100644 index 0000000..d4c138c --- /dev/null +++ b/GSoC25_H/IndIE/benchie_indie_new.csv @@ -0,0 +1,113 @@ +,sentence,all_sents,extractions,augmented_exts,ctime,etime +0,कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .,['कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .'],"[[['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही']]]",[[]],[0.143],[0.0] +1,अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना .,['अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना .'],"[[['अंगुलि चिह्न विज्ञान प्रतियोगिता', 'आयोजित करना', 'अखिल भारतीय पुलिस डयूटी मीट'], ['अखिल भारतीय पुलिस डयूटी मीट', 'property', '( 1958 से )']]]",[[]],[0.074],[0.0] +2,केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना .,['केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना .'],"[[['विवादित अंगुलि चिह्नों का', 'भेजे गए', 'उपक्रमों द्वारा'], ['उपक्रमों द्वारा', 'property', 'विभागों'], ['विभागों', 'property', 'केन्द्रीय सरकार के'], ['भारत सरकार के', 'property', 'केन्द्रीय सरकार के']]]","[[['उपक्रमों द्वारा', 'property विभागों', 'केन्द्रीय सरकार के'], ['विभागों', 'property केन्द्रीय सरकार के', 'भारत सरकार के']]]",[0.07],[0.0] +3,007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है .,['007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है .'],"[[['यह एजेंट', 'मौजूद है', 'बारह पुस्तकों'], ['गुप्त नाम से', 'property', '007 के'], ['बारह पुस्तकों', 'property', 'फ़्लेमिंग की'], ['दो लघुकथाओं में', 'property', 'फ़्लेमिंग की']]]","[[['बारह पुस्तकों', 'property फ़्लेमिंग की', 'दो लघुकथाओं में']]]",[0.073],[0.001] +4,01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की .,"[""01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की .""]","[[['उन्होंने', 'की', ""एक पत्रिका ' साधु ' शुरू""], ['01 अगस्त 1907 को', 'की', 'उन्होंने'], [""एक पत्रिका ' साधु ' शुरू"", 'property', 'अपनी']]]","[[[""एक पत्रिका ' साधु ' शुरू"", 'उन्होंने की', '01 अगस्त 1907 को']]]",[0.073],[0.0] +5,01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है .,['01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है .'],"[[['नवीनतम वेतनमानों को', 'लागू किया गया है', '01 अप्रैल 2009 से'], ['कंपनी में', 'लागू किया गया है', 'नवीनतम वेतनमानों को']]]","[[['01 अप्रैल 2009 से', 'नवीनतम वेतनमानों को लागू किया गया है', 'कंपनी में']]]",[0.073],[0.0] +6,01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई .,['01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई .'],"[[['सुनवाई', 'शुरू हुई', 'साबरमती केंद्रीय जेल के अंदर'], ['सुनवाई', 'property', 'गोधरा ट्रेन कांड की'], ['गोधरा ट्रेन कांड की', 'property', '01 जून :'], ['साबरमती केंद्रीय जेल के अंदर', 'property', 'अहमदाबाद के']]]","[[['सुनवाई', 'property गोधरा ट्रेन कांड की', '01 जून :']]]",[0.071],[0.0] +7,06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई .,['06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई .'],"[[['वे', 'नियुक्त हुई', 'न्यायाधीश'], ['06 अक्टूबर 1989 को', 'नियुक्त हुई', 'वे'], ['न्यायाधीश', 'property', 'सर्वोच्च न्यायालय की']]]","[[['न्यायाधीश', 'वे नियुक्त हुई', '06 अक्टूबर 1989 को']]]",[0.075],[0.0] +8,06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था .,['06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था .'],"[[['06 प्रतिशत', 'ऐसे लोग थे', 'जिनका कोई विशेष धर्म नहीं था']]]",[[]],[0.071],[0.0] +9,1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया .,['1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया .'],"[[['इम्पीरियल पोस्टल सर्विस द्वारा', 'जारी किया गया', 'पहला डाक टिकट'], ['1 अक्टूबर 1854 को', 'जारी किया गया', 'इम्पीरियल पोस्टल सर्विस द्वारा']]]","[[['पहला डाक टिकट', 'इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया', '1 अक्टूबर 1854 को']]]",[0.076],[0.0] +10,1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया .,['1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया .'],"[[['आंध्र ने', 'पाया', 'कर्नूल को'], ['दर्जा', 'पाया', '1 अक्टूबर 1953 को'], ['दर्जा', 'property', 'राज्य का']]]",[[]],[0.071],[0.0] +11,1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया .,['1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया .'],"[[['दूसरा सीज़न', 'ज़ारी किया गया', '1 अक्टूबर 2008 को'], ['न्यूजीलैंड', 'ज़ारी किया गया', '1 अक्टूबर 2008 को'], ['ऑस्ट्रेलिया में', 'ज़ारी किया गया', '1 अक्टूबर 2008 को']]]","[[['दूसरा सीज़न', 'ज़ारी किया गया 1 अक्टूबर 2008 को', 'न्यूजीलैंड'], ['दूसरा सीज़न', 'ज़ारी किया गया 1 अक्टूबर 2008 को', 'ऑस्ट्रेलिया में'], ['न्यूजीलैंड', 'ज़ारी किया गया 1 अक्टूबर 2008 को', 'ऑस्ट्रेलिया में']]]",[0.069],[0.0] +12,"1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया .","['1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया .']","[[['रॉबर्ट आइगर ने', 'लिया', 'स्थान'], ['1 अक्टूबर को ,', 'लिया', 'रॉबर्ट आइगर ने'], ['स्थान', 'property', 'माइकल आइजनर का']]]","[[['स्थान', 'रॉबर्ट आइगर ने लिया', '1 अक्टूबर को ,']]]",[0.065],[0.0] +13,"1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ .","['1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ .']","[[['यह देश', 'आजाद हुआ', '1 अक्टूबर , 1960 को'], ['शासन से', 'आजाद हुआ', 'इंग्लैंड के']]]",[[]],[0.065],[0.0] +14,1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया .,['1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया .'],"[[['अंग्रेजों द्वारा', 'भेज दिया गया', 'चन्द्रसिंह को'], ['1 अगस्त 1915 में', 'भेज दिया गया', 'अन्य गढ़वाली सैनिकों के साथ'], ['फ्रांस', 'भेज दिया गया', 'अन्य गढ़वाली सैनिकों के साथ']]]","[[['1 अगस्त 1915 में', 'भेज दिया गया अन्य गढ़वाली सैनिकों के साथ', 'फ्रांस']]]",[0.067],[0.0] +15,1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने .,['1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने .'],"[[['इसे', 'घोषित किया गया', '1 अप्रैल 1946 को'], ['गोविन्द बल्लभ पन्त', 'बने', 'मुख्य मन्त्री'], ['इसके पहले', 'बने', 'घोषित किया गया']]]",[[]],[0.069],[0.0] +16,हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई .,['हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई .'],"[[['हिन्दी प्रचार सभा', 'एक आन्दोलन थी', 'जो आरम्भ हुई'], ['एक आन्दोलन', 'आरम्भ हुई', 'स्वतन्त्रता आन्दोलन के साथ ही'], ['स्वतन्त्रता आन्दोलन के साथ ही', 'property', 'भारत के']]]",[[]],[0.07],[0.0] +17,बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी .,['बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी .'],"[[['एक अनूठी आभा', 'दिखाई पड़ती थी', 'बाल्यकाल से ही'], ['चेहरे पर', 'दिखाई पड़ती थी', 'कर्मा के']]]",[[]],[0.069],[0.0] +18,"तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं .","['तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं .']","[[['सोनू', 'बन चुके हैं', 'एक प्रमुख हस्ती'], ['तब से', 'बन चुके हैं', 'अब तक ,'], ['भारतीय संगीत जगत में', 'बन चुके हैं', 'अब तक ,']]]","[[['तब से', 'बन चुके हैं अब तक ,', 'भारतीय संगीत जगत में']]]",[0.072],[0.0] +19,कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है .,['कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है .'],[[]],[[]],[0],[0] +20,बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया .,['बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया .'],"[[['सोवियत दस्तों ने', 'आज़ाद कराया', 'प्राग को'], ['क़ब्ज़ा करने के बाद', 'आज़ाद कराया', 'बर्लिन पर'], ['प्राग को', 'property', 'राजधानी'], ['राजधानी', 'property', 'चेकोस्लोवाकिया की']]]","[[['प्राग को', 'property राजधानी', 'चेकोस्लोवाकिया की']]]",[0.068],[0.001] +21,योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं .,['योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं .'],"[[['वे', 'प्रथम भारतीय हैं', 'क्षेत्र में'], ['पद्म श्री सम्मान', 'प्राप्त करने वाले', 'राष्ट्रपति से']]]",[[]],[0.074],[0.0] +22,सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है .,['सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है .'],"[[['वित्तीय सहायता भी', 'दी जाती है', 'पूरी करने तक'], ['सभी बच्चों को', 'पूरी करने तक', 'दी जाती है'], ['पूरी करने तक दी जाती है', 'पढ़ाई', 'स्कूल की']]]",[[]],[0.075],[0.0] +23,आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है .,['आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है .'],"[[['यह स्थान', 'दर्शनीय केन्द्र है', 'आज भी'], ['दर्शनीय केन्द्र', 'property', 'लोगों के लिए']]]",[[]],[0.069],[0.0] +24,इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है .,['इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है .'],"[[['पाणिनीय व्याकरण ही', 'प्रतिनिधित्व करता है', 'इस सम्बन्ध में'], ['वेदाङ्ग का', 'प्रतिनिधित्व करता है', 'पाणिनीय व्याकरण ही']]]","[[['इस सम्बन्ध में', 'पाणिनीय व्याकरण ही प्रतिनिधित्व करता है', 'वेदाङ्ग का']]]",[0.076],[0.0] +25,मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं .,['मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं .'],"[[['मैं', 'उपासना करता हूं', 'इस श्रेष्ठ तत्त्व की'], ['इस श्रेष्ठ तत्त्व की उपासना करता हूं', 'समझकर ही', 'आत्मा'], ['आत्मा', 'property', 'शब्द की']]]",[[]],[0.076],[0.0] +26,हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है .,['हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है .'],"[[['उल्लेख', 'मिलता है', 'पांच नदियों में से'], ['ऋग्वेद में', 'मिलता है', 'उल्लेख'], ['हिमाचल प्रदेश में', 'बहने वाली', 'पांच नदियों में से'], ['उल्लेख', 'property', 'चार का']]]","[[['पांच नदियों में से', 'उल्लेख मिलता है', 'ऋग्वेद में']]]",[0.067],[0.001] +27,उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया .,['उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया .'],"[[['उन्होंने', 'स्पष्ट इंकार कर दिया', 'बच्चे को देने से']]]",[[]],[0.069],[0.0] +28,शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है .,['शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है .'],"[[['तुलनात्मक अध्ययन', 'जुड़ा है', 'सभी सामाजिक विज्ञानों से'], ['तुलनात्मक अध्ययन', 'property', 'शिक्षा का']]]",[[]],[0.074],[0.0] +29,गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है .,['गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है .'],"[[['9110', 'भारतीय रेल द्वारा', 'संचालित']]]",[[]],[0.07],[0.0] +30,वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है .,['वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है .'],"[[['यह शहर', 'प्रमुख हिल स्टेशन है', 'वर्तमान में'], ['प्रमुख हिल स्टेशन', 'property', 'पश्चिम बंगाल का']]]",[[]],[0.07],[0.0] +31,"सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है .","['सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है .']","[[['सिलकोट ,', 'एक गाँव है', 'गंगोलीहाट तहसील में'], ['एक गाँव', 'property', 'उत्तराखण्ड राज्य के अन्तर्गत'], ['एक गाँव', 'property', 'पिथोरागढ जिले का'], ['उत्तराखण्ड राज्य के अन्तर्गत', 'property', 'भारत के'], ['पिथोरागढ जिले का', 'property', 'कुमाऊँ मण्डल के']]]","[[['उत्तराखण्ड राज्य के अन्तर्गत', 'एक गाँव property', 'पिथोरागढ जिले का'], ['एक गाँव', 'property उत्तराखण्ड राज्य के अन्तर्गत', 'भारत के'], ['एक गाँव', 'property पिथोरागढ जिले का', 'कुमाऊँ मण्डल के']]]",[0.069],[0.001] +32,एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है .,['एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है .'],"[[['तकनीकी केंद्र को', 'स्थानापन्न करना है', 'तिरुवनंतपुरम में'], ['तकनीकी केंद्र को', 'property', 'एयर लाइन के']]]",[[]],[0.07],[0.0] +33,चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए .,['चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए .'],"[[['दोनों मामले', 'पेश हुए', 'सर लुइस शर्ट'], ['सर लुइस शर्ट', 'property', 'मुख्य न्यायाधीश'], ['विशेष न्यायाधीश मोहम्मद रजा के सामने', 'property', 'मुख्य न्यायाधीश']]]","[[['सर लुइस शर्ट', 'property मुख्य न्यायाधीश', 'विशेष न्यायाधीश मोहम्मद रजा के सामने']]]",[0.069],[0.0] +34,किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई .,['किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई .'],"[[['मृत्यु', 'हो गई', 'किसी बीमारी की वजह से'], ['28 नवम्बर 1694 को', 'हो गई', 'मृत्यु'], ['मृत्यु', 'property', 'बाशो की']]]","[[['किसी बीमारी की वजह से', 'मृत्यु हो गई', '28 नवम्बर 1694 को']]]",[0.066],[0.0] +35,जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा .,['जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा .'],"[[['विक्रम ने', 'सोचा', 'एक हल'], ['तो', 'नहीं हुआ', 'कोई मतैक्य']]]",[[]],[0.066],[0.0] +36,सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ .,['सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ .'],"[[['सन 1696 में', 'मुकाबला हुआ फिर', 'एक बार'], ['शाही सेना से', 'मुकाबला हुआ फिर', 'पंचायती सेना का']]]",[[]],[0.069],[0.0] +37,"मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है .","['मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है .']","[[['मर्लगोंड ,', 'एक गाँव है', 'कुभीर मण्डल में'], ['एक गाँव', 'property', 'अदिलाबादु जिले का'], ['अदिलाबादु जिले का', 'property', 'आन्ध्रप्रदेश राज्य के अन्तर्गत के'], ['आन्ध्रप्रदेश राज्य के अन्तर्गत के', 'property', 'भारत के']]]","[[['एक गाँव', 'property अदिलाबादु जिले का', 'आन्ध्रप्रदेश राज्य के अन्तर्गत के'], ['अदिलाबादु जिले का', 'property आन्ध्रप्रदेश राज्य के अन्तर्गत के', 'भारत के']]]",[0.079],[0.001] +38,बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये .,['बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये .'],"[[['अनेक ग्रन्थ', 'लिखे गये', 'बाद में'], ['दर्शन पक्ष पर', 'लिखे गये', 'व्याकरण के']]]",[[]],[0.076],[0.0] +39,1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने .,['1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने .'],"[[['निदेशक', 'बने', '1975 में'], ['इलाहाबाद में', 'बने', 'नवनिर्मित मेहता अनुसंधान संस्थान में']]]",[[]],[0.067],[0.0] +40,उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया .,['उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया .'],"[[['नाम', 'रखा गया', 'नाम पर'], ['नाम पर', 'property', 'उनके'], ['नाम', 'property', 'इस जगह का']]]",[[]],[0.08],[0.0] +41,कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं .,['कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं .'],"[[['कुछ लोग', 'पसंद करते हैं', 'रहना'], ['इस आपाधापी से दूर', 'रहना', 'घर पर ही'], ['घर पर ही', 'property', 'अपने']]]",[[]],[0.067],[0.0] +42,मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई .,['मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई .'],"[[['मार्च 2001 में', 'वापसी हुई फिर', 'एक बार'], ['अट्ठाइसवें रक्षा सचिव के रूप में', 'वापसी हुई फिर', 'उनकी'], ['अट्ठाइसवें रक्षा सचिव के रूप में', 'property', 'अमरीका के']]]",[[]],[0.066],[0.0] +43,इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी .,['इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी .'],"[[['सर वाईकर के द्वारा', 'आधारशिला रखी गयी थी', '3 मार्च 1884 को'], ['इसकी रचना की', 'आधारशिला रखी गयी थी', '3 मार्च 1884 को']]]","[[['सर वाईकर के द्वारा', 'आधारशिला रखी गयी थी 3 मार्च 1884 को', 'इसकी रचना की']]]",[0.07],[0.0] +44,इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है .,['इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है .'],"[[['वह', 'संपर्क में है', 'इस तकनीक के लिए'], ['संपर्क में', 'property', 'विभिन्न टेलीविजन कंपनियों से']]]",[[]],[0.079],[0.0] +45,त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था .,['त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था .'],"[[['त्रिदेवनाथ बैनर्जी को', 'सम्मानित किया गया था', 'क्षेत्र में'], ['सन 1961 में', 'सम्मानित किया गया था', 'पद्म भूषण से'], ['क्षेत्र में', 'property', 'चिकित्सा विज्ञान के']]]",[[]],[0.077],[0.0] +46,मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की .,['मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की .'],"[[['उन्होने', 'संगीत रचना की', 'मराठी के अतिरिक्त'], ['हिन्दी फिल्मों के लिए भी', 'संगीत रचना की', 'उन्होने']]]","[[['मराठी के अतिरिक्त', 'उन्होने संगीत रचना की', 'हिन्दी फिल्मों के लिए भी']]]",[0.068],[0.0] +47,काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है .,['काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है .'],"[[['औद्योगिक रूप से', 'उपयोग किया जाता है', 'अनेक प्रक्रियाओं में'], ['औद्योगिक रूप से', 'property', 'काइटिन का']]]",[[]],[0.067],[0.0] +48,हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं .,['हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं .'],"[[['सभी पर्व', 'property', 'हिंदूओं'], ['सभी पर्व', 'property', 'मुस्लिमों के']]]","[[['हिंदूओं', 'सभी पर्व property', 'मुस्लिमों के']]]",[0.065],[0.0] +49,"द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया .","['द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया .']","[[['द डार्क नाईट राइसेस को', 'रिलीज़ किया गया', 'अमेरिका ,'], ['20 जुलाई 2012 को', 'रिलीज़ किया गया', 'अमेरिका ,'], ['20 जुलाई 2012 को', 'रिलीज़ किया गया', 'संयुक्त राजशाही'], ['20 जुलाई 2012 को', 'रिलीज़ किया गया', 'कनाडा में']]]","[[['द डार्क नाईट राइसेस को', 'रिलीज़ किया गया अमेरिका ,', '20 जुलाई 2012 को'], ['अमेरिका ,', '20 जुलाई 2012 को रिलीज़ किया गया', 'संयुक्त राजशाही'], ['अमेरिका ,', '20 जुलाई 2012 को रिलीज़ किया गया', 'कनाडा में'], ['संयुक्त राजशाही', '20 जुलाई 2012 को रिलीज़ किया गया', 'कनाडा में']]]",[0.072],[0.001] +50,यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है .,['यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है .'],"[[['यह', 'लगाया जाता है', 'हर साल'], ['फ्रैंकफर्ट शहर मे', 'लगाया जाता है', 'जर्मनी के']]]",[[]],[0.069],[0.0] +51,द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया .,['द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया .'],"[[['द्रौपदी ने', 'वरमाला डाल दिया', 'गले में'], ['गले में', 'property', 'अर्जुन के']]]",[[]],[0.07],[0.0] +52,यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है .,['यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है .'],"[[['यह त्यौहार', 'मनाया जाता है', 'पूरे उत्तर भारत में'], ['राम नवमी के दौरान', 'मनाया जाता है', 'पूरे उत्तर भारत में']]]","[[['यह त्यौहार', 'मनाया जाता है पूरे उत्तर भारत में', 'राम नवमी के दौरान']]]",[0.072],[0.0] +53,"तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है .","['तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है .']","[[['व्यापक उपयोग', 'उल्लेखनीय है', 'भोजन में'], ['भोजन में', 'property', 'तटीय कर्नाटक के'], ['व्यापक उपयोग', 'property', 'समुद्री भोजन ,'], ['व्यापक उपयोग', 'property', 'नारियल'], ['व्यापक उपयोग', 'property', 'नारियल तेल का']]]","[[['समुद्री भोजन ,', 'व्यापक उपयोग property', 'नारियल'], ['समुद्री भोजन ,', 'व्यापक उपयोग property', 'नारियल तेल का'], ['नारियल', 'व्यापक उपयोग property', 'नारियल तेल का']]]",[0.074],[0.0] +54,कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा .,['कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा .'],"[[['कार्ल ने', 'सुधारा', 'उपेक्षित जीवविज्ञान उद्यान को भी'], ['उपेक्षित जीवविज्ञान उद्यान को भी', 'property', 'वहां के']]]",[[]],[0.069],[0.0] +55,सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं .,['सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं .'],"[[['तारों को', 'कहते हैं', 'श्रेणी के'], ['श्रेणी के', 'property', 'सिफियस चतुर्थ की']]]",[[]],[0.068],[0.0] +56,यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है .,"[""यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है .""]","[[['यह', 'प्रसिद्ध है', 'नाम से'], ['नाम से', 'property', ""' प्राथमिक विधि अध्यारोप ' के""]]]",[[]],[0.07],[0.0] +57,चीन तथा जापान से इस देश का अधिक संपर्क रहा है .,['चीन तथा जापान से इस देश का अधिक संपर्क रहा है .'],"[[['अधिक संपर्क', 'रहा है', 'चीन'], ['अधिक संपर्क', 'रहा है', 'जापान से'], ['अधिक संपर्क', 'property', 'इस देश का']]]","[[['चीन', 'अधिक संपर्क रहा है', 'जापान से']]]",[0.066],[0.0] +58,कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं .,['कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं .'],"[[['कश्यप ने', 'पता लगाया', 'शेष'], ['कुछ घड़ी', 'शेष हैं', 'आयु में']]]",[[]],[0.066],[0.0] +59,अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है .,['अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है .'],"[[['मोमबत्तियाँ भी', 'प्रयुक्त होती है', 'खानों में'], ['खानों में', 'property', 'अभ्रक आदि की']]]",[[]],[0.067],[0.0] +60,इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं .,['इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं .'],"[[['उन्होंने', 'लिखे हैं', 'कहानियाँ'], ['इस शैली में', 'लिखे हैं', 'उन्होंने'], ['उन्होंने', 'लिखे हैं', 'उपन्यास']]]","[[['कहानियाँ', 'उन्होंने लिखे हैं', 'इस शैली में'], ['कहानियाँ', 'उन्होंने लिखे हैं', 'उपन्यास'], ['इस शैली में', 'लिखे हैं उन्होंने', 'उपन्यास']]]",[0.065],[0.0] +61,वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं .,['वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं .'],"[[['वो', 'मुख्य न्यायाधीश हैं', 'पहले दलित']]]",[[]],[0.069],[0.0] +62,6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया .,['6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया .'],"[[['उन्होंने', 'पेश किया', 'वार्षिक बजट'], ['6 जुलाई 2009 को', 'पेश किया', 'उन्होंने'], ['वार्षिक बजट', 'property', 'सरकार का']]]","[[['वार्षिक बजट', 'उन्होंने पेश किया', '6 जुलाई 2009 को']]]",[0.079],[0.0] +63,स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है .,['स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है .'],"[[['स्थानीय आबादी', 'निर्भर रहती है', 'लगभग पूरी तरह से'], ['व्यापार पर', 'निर्भर रहती है', 'चाय के']]]",[[]],[0.071],[0.0] +64,इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है .,['इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है .'],"[[['इसे साथ ही', 'लागू किया जाता है', 'आधारभूत प्रोफ़ाइल में भी']]]",[[]],[0.069],[0.0] +65,उन्हें उत्कल मणि के नाम से जाना जाता है .,['उन्हें उत्कल मणि के नाम से जाना जाता है .'],"[[['उन्हें', 'जाना जाता है', 'नाम से'], ['नाम से', 'property', 'उत्कल मणि के']]]",[[]],[0.076],[0.0] +66,"अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें .","['अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें .']","[[['कृपया', 'देखें', 'फ्रेंच फ्लेमिश को']]]",[[]],[0.07],[0.0] +67,इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है .,['इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है .'],"[[['ज्यादातर अंश', 'प्रवाहित होता है', 'पाकिस्तान में'], ['ज्यादातर अंश', 'property', 'इस नदी का']]]",[[]],[0.075],[0.0] +68,"मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है .","['मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है .']","[[['अंदरूनी भाग', 'हिस्सा है ,', 'लीबियाई रेगिस्तान का'], ['अंदरूनी भाग', 'property', 'मत्रूह मुहाफ़ज़ाह का'], ['सीवा नख़लिस्तान', 'स्थित है', 'जिसमें'], ['सीवा नख़लिस्तान', 'property', '( ओएसिस )']]]",[[]],[0.075],[0.0] +69,"राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है .","['राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है .']","[[['राजधानी', 'बंगलुरु शहर है ,', 'जो अग्रणी योगदानकर्त्ता'], ['त्वरित आर्थिक', 'हो रही', 'भारत में']]]",[[]],[0.081],[0.001] +70,ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं .,['ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं .'],"[[['ये', 'प्रसिद्ध हैं', 'कहानियों के लिए']]]",[[]],[0.081],[0.0] +71,उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं .,['उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं .'],"[[['एक कहानी संग्रह', 'प्रकाशित हुए हैं', 'उनका'], ['दो निबंध संग्रह', 'प्रकाशित हुए हैं', 'उनका']]]","[[['एक कहानी संग्रह', 'प्रकाशित हुए हैं उनका', 'दो निबंध संग्रह']]]",[0.074],[0.0] +72,पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है .,['पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है .'],"[[['पद्मनाभ दत्त ने', 'लिखा है', 'सुपद्य व्याकरण'], ['सुपद्य व्याकरण', 'property', '15 वीं शताब्दी )']]]",[[]],[0.069],[0.0] +73,इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं .,['इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं .'],"[[['फ्लोरिडा राज्य', 'स्थित हैं', 'पश्चिम में'], ['स्थित', 'property', 'अलबामा'], ['स्थित', 'property', 'दक्षिण में']]]","[[['अलबामा', 'स्थित property', 'दक्षिण में']]]",[0.065],[0.001] +74,यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है .,['यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है .'],"[[['यह क्रिकेट मैदान', 'स्थित है', 'होबार्ट शहर में'], ['होबार्ट शहर में', 'property', 'ऑस्ट्रेलिया के']]]",[[]],[0.068],[0.0] +75,"निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है .","['निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है .']","[[['निम्नलिखित सूचना नियम का', 'एक सरलीकृत सारांश है ,', 'पूरी प्रतिलिपि नहीं है']]]",[[]],[0.065],[0.0] +76,आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं .,['आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं .'],[[]],[[]],[0],[0] +77,जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है .,['जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है .'],"[[['कुछ लोगों ने', 'विभाजित किया है', 'इसे'], ['दृष्टि से', 'विभाजित किया है', 'इंडोचायनीज़'], ['दृष्टि से', 'property', 'विशेषता की'], ['दृष्टि से', 'विभाजित किया है', 'इंडोमलायन उपक्षेत्रों में']]]","[[['इंडोचायनीज़', 'दृष्टि से विभाजित किया है', 'इंडोमलायन उपक्षेत्रों में']]]",[0.075],[0.001] +78,"पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी !","['पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी !']","[[['प्रयोगशील प्रवृत्तियाँ', 'प्रश्रय देने लगी होंगी', 'उनको']]]",[[]],[0.065],[0.0] +79,5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है .,['5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है .'],"[[['वर्षों को', 'दर्शाता है', '5364 ईसा पूर्व'], ['वर्षों को', 'property', 'जन्म से पूर्व के'], ['जन्म से पूर्व के', 'property', 'ईसा मसीह के']]]","[[['वर्षों को', 'property जन्म से पूर्व के', 'ईसा मसीह के']]]",[0.065],[0.0] +80,विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं .,['विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं .'],"[[['विश्वामित्र द्वारा', 'पहनाती हैं', 'जयमाल'], ['सीता राम को', 'पहनाती हैं', 'स्वरघोष के मध्य'], ['स्वरघोष के मध्य', 'property', 'वैदिक मन्त्रों के']]]",[[]],[0.122],[0.0] +81,विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा .,['विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा .'],"[[['विभिन्न स्रोत', 'बटे हुए हैं', 'इस तथ्य पर'], ['इस तथ्य पर', 'पड़ा आखिर', 'एजिंकोर्ट स्क्वायर'], ['इस तथ्य पर', 'पड़ा आखिर', 'नाम'], ['इस तथ्य पर', 'पड़ा आखिर', 'किस वर्ष में'], ['नाम', 'property', 'स्थान का']]]","[[['एजिंकोर्ट स्क्वायर', 'इस तथ्य पर पड़ा आखिर', 'नाम'], ['एजिंकोर्ट स्क्वायर', 'इस तथ्य पर पड़ा आखिर', 'किस वर्ष में'], ['नाम', 'इस तथ्य पर पड़ा आखिर', 'किस वर्ष में']]]",[0.068],[0.001] +82,प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं .,['प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं .'],"[[['विभिन्न विभाग', 'होते हैं', 'प्रत्येक भाग के अंतर्गत'], ['विभिन्न विभाग', 'होते हैं', 'जिनके अलगअलग अध्यक्ष']]]","[[['प्रत्येक भाग के अंतर्गत', 'विभिन्न विभाग होते हैं', 'जिनके अलगअलग अध्यक्ष']]]",[0.071],[0.0] +83,"एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया .","['एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया .']","[[['एकलों के बीच', 'जारी किया गया', 'एक लंबे अंतराल के बाद ,'], ['एल्बम से', 'जारी किया गया', '2006 के मध्य में']]]",[[]],[0.071],[0.0] +84,"चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी .","['चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी .']","[[['उस दौर में', 'कोई और मानक नहीं थे ,', 'उनके सामने'], ['सब कामचलाऊ व्यवस्था', 'स्वयं करनी पड़ी', 'उन्हें']]]",[[]],[0.074],[0.0] +85,1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था .,['1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था .'],"[[['बहुत से विकासों ने', 'बेहतर कर दिया था', 'परिणामों को'], ['1900 के आसपास', 'बेहतर कर दिया था', 'निमोनिया से'], ['पीड़ित लोगों के लिये', 'बेहतर कर दिया था', 'निमोनिया से']]]","[[['1900 के आसपास', 'बेहतर कर दिया था निमोनिया से', 'पीड़ित लोगों के लिये']]]",[0.073],[0.0] +86,सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है .,['सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है .'],"[[['प्रचार', 'बहुत योगदान है', 'पिता के समान'], ['बहुत योगदान', 'property', 'आपका भी'], ['प्रसार में', 'बहुत योगदान है', 'पिता के समान']]]","[[['प्रचार', 'बहुत योगदान है पिता के समान', 'प्रसार में']]]",[0.067],[0.001] +87,"उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं .","['उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं .']","[[['मामले', 'लेखबद्ध किये गये हैं', 'उदाहरणार्थ ,'], ['संपर्क में भी', 'लेखबद्ध किये गये हैं', 'केवल 1 -- 3 माह के'], ['मामले', 'property', 'उत्पन्न होने के'], ['मेसोथेलियोमा', 'उत्पन्न होने के', 'मामले']]]",[[]],[0.07],[0.001] +88,"जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है .","['जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है .']","[[['प्राणी', 'मिलते नहीं है', 'इश -- एस में'], ['वास्तव में', 'मिलते नहीं है', 'प्राणी'], ['इश -- एस में', 'सामना होता है ,', 'इश -- डू में'], ['इश -- एस में', 'सामना होता है ,', 'दो प्राणियों का']]]","[[['इश -- एस में', 'प्राणी मिलते नहीं है', 'वास्तव में'], ['इश -- डू में', 'इश -- एस में सामना होता है ,', 'दो प्राणियों का']]]",[0.075],[0.001] +89,ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये .,['ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये .'],"[[['ये तीनों अक्ष', 'होने चाहिये', 'एकबिन्दुगामी भी'], ['उस तल में', 'होने चाहिये', 'ये तीनों अक्ष']]]","[[['एकबिन्दुगामी भी', 'ये तीनों अक्ष होने चाहिये', 'उस तल में']]]",[0.075],[0.0] +90,"विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं .","['विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं .']","[[['पुराने तरीके', 'बदल रहे हैं', 'विकासशील देशों में ,'], ['अपने ही पड़ोस में', 'बदल रहे हैं', 'तेजी से'], ['पुराने तरीके', 'property', 'दूध विपणन के']]]",[[]],[0.071],[0.0] +91,उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया .,['उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया .'],"[[['उन्होंने', 'एक दीवाना था से', 'शुरुआत'], ['शुरुआत', 'property', 'बोलीवुड करियर की'], ['शुरुआत', 'रिलीज़ किया गया', 'जिसे'], ['शुरुआत', 'रिलीज़ किया गया', '17 फ़रवरी 2012 को']]]","[[['जिसे', 'शुरुआत रिलीज़ किया गया', '17 फ़रवरी 2012 को']]]",[0.075],[0.0] +92,इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है .,['इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है .'],"[[['बचाना', 'है', 'अत्यंत आवश्यक'], ['खाद्य एवं पेय पदार्थो को', 'बचाना', 'मक्खियों से']]]",[[]],[0.069],[0.0] +93,"यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को .","['यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को .']","[[['यह ,', 'संदर्भित करता है ,', 'राष्ट्रीयता को'], ['राष्ट्रीयता को', 'संदर्भित करता है ,', 'गाड़ी निर्माता'], ['राष्ट्रीयता को', 'property', 'प्रतिस्पर्धी टीम की'], ['राष्ट्रीयता को', 'संदर्भित करता है ,', 'चालक की']]]","[[['यह ,', 'संदर्भित करता है , राष्ट्रीयता को', 'गाड़ी निर्माता'], ['यह ,', 'संदर्भित करता है , राष्ट्रीयता को', 'चालक की'], ['गाड़ी निर्माता', 'राष्ट्रीयता को संदर्भित करता है ,', 'चालक की']]]",[0.068],[0.001] +94,सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है .,['सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है .'],"[[['सड़क मार्ग', 'सीधी बस सेवा है', 'रत्नागिरी के लिए'], ['सीधी बस सेवा', 'property', 'मुंबई से']]]",[[]],[0.071],[0.0] +95,"छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे .","['छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे .']","[[['छपाई में', 'प्रयोग होता था ,', 'ब्लाकों का'], ['ब्लाकों का', 'जिसका निर्माण करते थे', 'शिल्पी -- सुथार']]]",[[]],[0.076],[0.0] +96,यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है .,['यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है .'],"[[['यह शब्द', 'आता है', 'सरकारी इकाई के लिये'], ['प्रयोग में', 'आता है', 'सरकारी इकाई के लिये'], ['विधि', 'बनाने वाली', 'सरकारी इकाई के लिये']]]","[[['यह शब्द', 'आता है सरकारी इकाई के लिये', 'प्रयोग में']]]",[0.086],[0.001] +97,यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है .,['यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है .'],"[[['यह', 'स्थित है', 'बलिया जिले में'], ['बलिया जिले में', 'property', 'उत्तर प्रदेश के'], ['बलिया शहर से', 'स्थित है', 'पश्चिम में']]]",[[]],[0.07],[0.0] +98,उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे .,['उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे .'],"[[['उन्होने', 'हत्या नहीं करवाई', 'उसेक बाद'], ['हत्या नहीं करवाई', 'property', 'पिता की']]]",[[]],[0.068],[0.0] +99,सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है .,['सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है .'],"[[['सर्वप्रथम', 'किया जाता है', 'प्रत्येक खिलाड़ी के लिये'], ['प्रत्येक खिलाड़ी के लिये किया जाता है', 'फेंककर', 'निर्धारण'], ['प्रत्येक खिलाड़ी के लिये किया जाता है', 'फेंककर', 'पासा'], ['निर्धारण', 'property', 'स्थिति का']]]","[[['निर्धारण', 'प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर', 'पासा']]]",[0.067],[0.0] +100,"हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है .","['हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है .']","[[['हाइपरयूरीसेमिया ,', 'होता है', 'मूल कारण']]]",[[]],[0.069],[0.0] +101,यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है .,['यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है .'],"[[['प्रसिद्ध', 'है', 'यही कारण']]]",[[]],[0.075],[0.0] +102,इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है .,['इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है .'],"[[['उदगम स्थान', 'ढलुवा भाग है', 'अंतगर्त हिमालय पर्वत के नीचे का'], ['उदगम स्थान', 'property', 'इसका'], ['अंतगर्त हिमालय पर्वत के नीचे का', 'property', 'सिरमोर राज्य के']]]",[[]],[0.071],[0.0] +103,दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था .,['दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था .'],"[[['दक्षिण भारत में', 'प्राधान्य था', 'उन दिनों'], ['प्राधान्य', 'property', 'परम्परागत चित्रकला का ही']]]",[[]],[0.07],[0.0] +104,ये कहानियाँ किसी देश या समय की हो सकती हैं .,['ये कहानियाँ किसी देश या समय की हो सकती हैं .'],"[[['ये कहानियाँ', 'हो सकती हैं', 'किसी देश'], ['ये कहानियाँ', 'हो सकती हैं', 'समय की']]]","[[['किसी देश', 'ये कहानियाँ हो सकती हैं', 'समय की']]]",[0.072],[0.0] +105,और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं .,['और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं .'],"[[['प्रकृति आधारित निर्माण को', 'प्रोत्साहित करते हैं', 'और भी कुछ निम्नलिखित कारण']]]",[[]],[0.071],[0.0] +106,2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ .,"[""2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ .""]","[[[""2010 को ' ' दर्शन -- परिषद् ' ' के"", 'सम्पन्न हुआ', 'नाम से']]]",[[]],[0.07],[0.0] +107,यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया .,['यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया .'],"[[['यहीं पर', 'देहांत हो गया', 'सन 1533 में'], ['अल्पायु में', 'देहांत हो गया', 'दिन'], ['उनका', 'देहांत हो गया', 'दिन'], ['अल्पायु में', 'property', '47 वर्ष की'], ['दिन', 'property', 'रथयात्रा के']]]","[[['अल्पायु में', 'देहांत हो गया दिन', 'उनका']]]",[0.076],[0.001] +108,इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है .,['इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है .'],"[[['इसे', 'कहा जाता है', 'यह देखा जाता है अक्सर'], ['तालाब में', 'देखा जाता है अक्सर', 'कहा जाता है']]]",[[]],[0.071],[0.0] +109,2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता .,['2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता .'],"[[['वे', 'बने', 'तीसरे ब्रिटिश प्रबंधक'], ['2008 में', 'बने', 'वे'], ['तीसरे ब्रिटिश प्रबंधक', 'जीता', 'यूरोपियन कप'], ['तीसरे ब्रिटिश प्रबंधक', 'जीता', 'जिन्होंने'], ['तीसरे ब्रिटिश प्रबंधक', 'जीता', 'एकाधिक अवसर पर']]]","[[['तीसरे ब्रिटिश प्रबंधक', 'वे बने', '2008 में'], ['यूरोपियन कप', 'तीसरे ब्रिटिश प्रबंधक जीता', 'जिन्होंने'], ['यूरोपियन कप', 'तीसरे ब्रिटिश प्रबंधक जीता', 'एकाधिक अवसर पर'], ['जिन्होंने', 'तीसरे ब्रिटिश प्रबंधक जीता', 'एकाधिक अवसर पर']]]",[0.083],[0.001] +110,मॉस से मिट्टी में जल रोक रखा जाता है .,['मॉस से मिट्टी में जल रोक रखा जाता है .'],"[[['मॉस से', 'जल रोक रखा जाता है', 'मिट्टी में']]]",[[]],[0.086],[0.0] +111,महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है .,['महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है .'],"[[['वर्तमान रूप', 'भण्डार है', 'प्राचीन इतिहास कथाओं उपदेशों आदि का'], ['वर्तमान रूप', 'property', 'महाभारत का']]]",[[]],[0.075],[0.0] diff --git a/GSoC25_H/IndIE/benchie_indie_new.h5 b/GSoC25_H/IndIE/benchie_indie_new.h5 new file mode 100644 index 0000000..dcbf594 Binary files /dev/null and b/GSoC25_H/IndIE/benchie_indie_new.h5 differ diff --git a/GSoC25_H/IndIE/chunck.py b/GSoC25_H/IndIE/chunck.py new file mode 100644 index 0000000..e2cc68a --- /dev/null +++ b/GSoC25_H/IndIE/chunck.py @@ -0,0 +1,118 @@ +from chunking.chunking_model import * +from chunking.crf_chunker import * +from utils import * + + + +class ChunckProcessor: + use_gpu = False + + hyper_params = { + 'run_ID': 26, + 'createData': True, + 'bs': 8, + 'bert_model_name': 'xlm-roberta-base', + 'available_models': "'ai4bharat/indic-bert' 'bert-base-multilingual-cased' 'xlm-roberta-base' 'bert-base-multilingual-uncased' 'xlm-mlm-100-1280' 'xlm-mlm-tlm-xnli15-1024' 'xlm-mlm-xnli15-1024'", + 'alpha' : 0.00001, + 'epochs': 3, + 'rseed': 123, + 'nw': 4, + 'train_ratio' : 0.7, + 'val_ratio' : 0.1, + 'max_len' : 275, + 'which_way' : 3, + 'which_way_gloss': "1= take first wordpiece token id | 2= take last wordpiece token id | 3= average out the wordpiece embeddings during the forward pass", + 'embedding_way' : 'last_hidden_state', + 'embedding_way_gloss': 'last_hidden_state, first_two, last_two', + 'notation' : 'BI', + 'platform': 1, + 'available_platforms': "MIDAS server = 1, colab = 2", + 'chunker':'XLM' # CRF or XLM + } + + model_embeddings = { + 'ai4bharat/indic-bert':768, + 'bert-base-multilingual-cased':768, + 'xlm-roberta-base':768, + 'bert-base-multilingual-uncased':768, + 'xlm-mlm-100-1280':1280, + 'xlm-mlm-tlm-xnli15-1024':1024, + 'xlm-mlm-xnli15-1024':1024 + } + + hyper_params['embedding_size'] = model_embeddings[hyper_params['bert_model_name']] + + my_tagset = torch.load('chunking/data/my_tagset_'+hyper_params['notation']+'.bin') + + hyper_params['my_tagset'] = my_tagset + + os.environ['PYTHONHASHSEED'] = str(hyper_params['rseed']) + # Torch RNG + torch.manual_seed(hyper_params['rseed']) + torch.cuda.manual_seed(hyper_params['rseed']) + torch.cuda.manual_seed_all(hyper_params['rseed']) + # Python RNG + np.random.seed(hyper_params['rseed']) + random.seed(hyper_params['rseed']) + + is_cuda = torch.cuda.is_available() + + if is_cuda and use_gpu: + device = torch.device("cuda:0") + t = torch.cuda.get_device_properties(device).total_memory + c = torch.cuda.memory_reserved(device) + a = torch.cuda.memory_allocated(device) + f = t -(c-a) # free inside cache + print("GPU is available", torch.cuda.get_device_name(), round(t/(1024*1024*1024)), "GB") + else: + device = torch.device("cpu") + print("GPU not available, CPU used") + + hyper_params['device'] = str(device) + + if hyper_params['chunker'] == 'XLM': + print('Creating the XLM chunker model...') + model = chunker_class(device, hyper_params).to(device) + checkpoint = torch.load('chunking/state_dicts/model/'+str(hyper_params['run_ID'])+'_epoch_4.pth.tar',map_location=device) + + # Handle version compatibility - ignore unexpected keys + state_dict = checkpoint['state_dict'] + # Remove problematic keys that exist in newer transformers versions + keys_to_remove = [k for k in state_dict.keys() if 'position_ids' in k] + for key in keys_to_remove: + print(f"Removing incompatible key: {key}") + del state_dict[key] + + # Load with strict=False to handle any remaining mismatches + missing_keys, unexpected_keys = model.load_state_dict(state_dict, strict=False) + if missing_keys: + print(f"Missing keys: {missing_keys}") + if unexpected_keys: + print(f"Unexpected keys: {unexpected_keys}") + print("Model loaded successfully!") + + tokenizer = AutoTokenizer.from_pretrained(hyper_params['bert_model_name']) + elif hyper_params['chunker'] == 'CRF': + model, tokenizer = 'CRF', 'CRF' + + def __init__(self, language): + self.language = language + self.nlp = load_stanza_model(self.language, self.use_gpu) + + def run(self, sentence): + start_time = time.time() + all_sents, exts, ctime, etime = perform_extraction(sentence, + self.language, + self.model, + self.tokenizer, + self.nlp, show=False) + ttaken = round(time.time() - start_time, 3) + return all_sents, exts, ctime, etime, ttaken + + +if __name__=="__main__": + sentence = "आदिम युग में सब लोग दिन भर काम से थक जाने के बाद मनोरंजन के लिए कही खुले में एक घेरा बनाकर बैठ जाते थे और उस घेरे के बीचों-बीच ही उनका भोजन पकता रहता , खान-पान होता और वही बाद में नाचना-गाना होता ।" + processor = ChunckProcessor() + data = processor.run(sentence) + print(data) + diff --git a/GSoC25_H/IndIE/chunking/chunking_model.py b/GSoC25_H/IndIE/chunking/chunking_model.py new file mode 100644 index 0000000..29663a7 --- /dev/null +++ b/GSoC25_H/IndIE/chunking/chunking_model.py @@ -0,0 +1,298 @@ +import os, torch, random, pytz, glob, datetime, time, psutil, json, re +import pandas as pd, numpy as np +import matplotlib.pyplot as plt +from torch.utils import data +from transformers import AutoTokenizer, AutoModel +from tqdm import tqdm +import torch.nn.functional as F +import torch.nn as nn +import string +from collections import Counter +from torch.optim import AdamW +from transformers.modeling_outputs import SequenceClassifierOutput +from sklearn.metrics import classification_report, confusion_matrix, ConfusionMatrixDisplay + + +def foreign_characters(s): + # all unicode blocks here https://www.fileformat.info/info/unicode/block/index.htm + ml = [] + s = re.sub(r'\(.*?\)','',s) # foreign characters can come inside round brackets + s = re.sub(r'[A-Z]+','',s) # foreign characters can come as abbreviations + s = re.sub(r'(mg)|(ml)|(khz)|(kg)','',s.lower()) # removing common english terms + + # when i directly modify s, then it means that, these characters will NOT become a reason to drop the sentence in consideration + s = re.sub(r'[\u0080-\u00FF]','',s) # Latin-1 Supplement: degree symbol + s = re.sub(r'[\u02B0-\u02FF]','',s) # Spacing Modifier: ring above, dot above + s = re.sub(r'[\u2000-\u209F]','',s) # General Punctuation: zero-width joiner + superscripts + s = re.sub(r'[\u2200-\u22FF]','',s) # mathematical symbols + s = re.sub(r'[\u0300-\u0362]','',s) # Diacritical Marks + s = re.sub(r'[\u0020-\u0040]|[\u005B-\u0060]|[\u007B-\u007E]','',s) # Punctuations and Digit block: removing those which are common in all languages + s = re.sub(r'[\u0964\u0965]','',s) # hindi single purna viram, double purna viram + s = re.sub(r'[\uFE00-\uFE0F]+','',s) # emoji variations + + # when i make a new variable for s, then it means that, these characters WILL become a reason to drop the sentence in consideration + # some erroneous languages, which were not supposed to be present but yet they are present + s2 = re.sub(r'[\u0100-\u024F]','',s) # Latin extended - A and B + s2 = re.sub(r'[\u1E00-\u1EFF]','',s2) # Latin Extended Additional + s2 = re.sub(r'[\uFFF9-\uFFFF]','',s2) # special characters + s2 = re.sub(r'[\u0300-\u05FF]','',s2) # some middle eastern languages, and russian + s2 = re.sub(r'[\u20A0-\uA8DF]','',s2) # other obscure languages + s2 = re.sub(r'[\uA900-\uFFFFF]','',s2) # other obscure languages + s2 = re.sub(r'[\U0001F004-\U0001FA95]+','',s2) # emojis + + + lang_unicodes = [['English',('\u0021','\u007F')], ['Devnagri',('\u0900','\u097F'),('\uA8E0','\uA8FF')], ['Bangla', ('\u0980','\u09FF')] + ,['Gujarati',('\u0A80','\u0AFF')], ['Urdu/Persian/Arabic', ('\u0600','\u06FF'),('\u08A0','\u08FF')], ['Tamil',('\u0B80','\u0BFF')] + ,['Telegu',('\u0C00','\u0C7F')], ['punjabi/gurumukhi',('\u0A00','\u0A7F')], ['malayalam',('\u0D00','\u0D7F')] + ,['oriya',('\u0B00','\u0B7F')], ['kannada',('\u0C80','\u0CFF')] ,['Sinhala',('\u0D80','\u0DFF')] + ,['Thai',('\u0E00','\u0E7F')], ['Lao',('\u0E80','\u0EFF')], ['Tibetan',('\u0F00','\u0FFF')] ,['Greek',('\u1F00','\u1FFF')] + #,['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')] + ] + + for word in s2.split(): + for ch in word: + found = False + for i,lu in enumerate(lang_unicodes): + for block in lu[1:]: + if ch >= block[0] and ch <= block[1]: + found = True + ml.append(i) + if not found: + pass + # print('Wait!! Some unknown character encountered in character <'+ch+'> in word <'+word+'> in sentence <'+s2+'>') + # print('Its unicode is',ch.encode('unicode_escape')) + # input('Waiting...') + if not ml: + return True + + c = Counter(ml) + base_script = c.most_common()[0][0] + + s = re.sub(r'\s','',s) + base_lang = lang_unicodes[base_script] + foreign_character_found = True + for block in base_lang[1:]: + foreign_character_found = foreign_character_found and bool(re.search(r'[^'+block[0]+r'-'+block[1]+r']+',s)) + # if foreign_character_found: + # print('-'*100,re.search(r'[^'+block[0]+r'-'+block[1]+r']+',s)[0],re.search(r'[^'+block[0]+r'-'+block[1]+r']+',s)[0].encode('unicode_escape')) + s = re.sub(r'['+block[0]+r'-'+block[1]+r']+','',s) + + return foreign_character_found + +class chunker_class(torch.nn.Module): + def __init__(self,d,hyper_params): + super(chunker_class, self).__init__() + self.hyper_params = hyper_params + self.model = AutoModel.from_pretrained(self.hyper_params['bert_model_name'], return_dict=True, output_hidden_states=True) + print('========== Model created ==========') + self.fc1 = nn.Linear(hyper_params['embedding_size'],len(self.hyper_params['my_tagset'])) + self.activation = nn.ReLU() + self.criterion = torch.nn.CrossEntropyLoss() + + # self.optim = AdamW(self.model.parameters(), lr=alpha) + self.device = d + self.best_val_acc = -1 + + + def predict_from_logits(self, logits, attention_mask, error_fixing=False): + if error_fixing: + batch_tags = [] + last_B_tag_index, X_tag_index = 11,24 # checked both of them manually + for sent in logits: + sent_tags, prev_tag = [], '' + for word in sent: + word_tag , mx_idx = '', '' + mx_idx = word[:last_B_tag_index+1].argmax() + if word[mx_idx] <= word[X_tag_index]: + mx_idx = X_tag_index + if prev_tag!='': + next_possible_tag = 'I_'+prev_tag[2:] + if word[mx_idx] <= word[self.hyper_params['my_tagset'].index(next_possible_tag)]: + mx_idx = self.hyper_params['my_tagset'].index(next_possible_tag) + word_tag = self.hyper_params['my_tagset'][mx_idx] + prev_tag = word_tag if word_tag!='X' else prev_tag # such that prev_tag is always = last non-X predicted tag + sent_tags.append(word_tag) + batch_tags.append(sent_tags) + else: + a = torch.argmax(logits, dim=2) # logits-->[batches,max_len,tag_len] now a-->[batches, max_len] + batch_tags = [] + for b in a: + t = [self.hyper_params['my_tagset'][c] for c in b] + batch_tags.append(t) + # batch_tags are like [ ['B_NP','I_NP',...,'X'], ['B_NP','B_NP',...,'X'] ] + batch_tags_flat = [item for sublist in batch_tags for item in sublist] + # batch_tags_flat are like ['B_NP','I_NP',...,'X','B_NP','B_NP',...,'X'] + batch_tags_pruned = [a2 for b,a2 in zip(attention_mask.view(-1)==1,batch_tags_flat) if b] + # batch_tags_pruned are like ['B_NP','I_NP',...,'B_NP','B_NP',...] + return batch_tags_pruned + + def take_mean(self,tensorlist): + out = 0 + for t in tensorlist: + out += t + out /= len(tensorlist) + return out + + def forward(self, input_ids, attention_mask, y, wordpiece_indices, save_embeddings=False, numpy_containers=[]): + if self.hyper_params['embedding_way'] == 'last_hidden_state': + out = self.model(input_ids, attention_mask=attention_mask).last_hidden_state # [batches, max_len, 768] + elif self.hyper_params['embedding_way'] == 'first_two': + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([ out.hidden_states[0], out.hidden_states[1] ]) # [batches, max_len, 768] + elif self.hyper_params['embedding_way'] == 'last_two': + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([ out.hidden_states[-2], out.hidden_states[-3] ]) # [batches, max_len, 768] + else: + raise "Unknown embedding_way specified" + # out dimensions = [batches, max_len, 768] + # y dimensions = [batches, max_len, len(tag_set)] + # wordpiece_indices dimensions = [batches, max_len, 2] + # print(out.shape, y.shape, wordpiece_indices.shape) + # input('wait') + + if self.hyper_params['which_way'] == 3: + c = torch.zeros(out.shape).to(self.device) + for i in range(out.shape[0]): + out_sent_i = out[i] + wpi_sent_i = wordpiece_indices[i] + wpi_sent_i = (wpi_sent_i[wpi_sent_i!=0]).tolist() # this step flattens the list of pairs to a single list + # print('$$',wpi_sent_i) + j, k = 0, 0 + while j < out_sent_i.shape[0]: + if j not in wpi_sent_i[::2]: # that is why we are hopping with 2 steps + c[i,k] += out[i,j] + j+=1 + else: + start = j + end = wpi_sent_i[2*wpi_sent_i[::2].index(j)+1] + c[i,k] += torch.mean(out[i][start:end], 0) + j = end + k+=1 + out = c + + if save_embeddings and (numpy_containers[0].shape[0] < 5000 or numpy_containers[1].shape[0] < 5000): + subwords = numpy_containers[0] + nonsubwords = numpy_containers[1] + for batch_i in range(out.shape[0]): + sent_i = out[batch_i] # [max_len, 768] + sent_i_b_nps = (y[batch_i][:,5] == 1).nonzero(as_tuple=True)[0] # indices of all B_NPs contained in a single vector 1xn + wordpiece_absolute_indices = [wordpiece_indices[batch_i][0][0]] + + reduce_offset = wordpiece_indices[batch_i][0][1] - wordpiece_indices[batch_i][0][0] - 1 + for i1 in range(1,wordpiece_indices.shape[1]): + if wordpiece_indices[batch_i][i1][0] == 0 and wordpiece_indices[batch_i][i1][1] == 0: + break + wordpiece_absolute_indices.append(wordpiece_indices[batch_i][i1][0]-reduce_offset) + reduce_offset += (wordpiece_indices[batch_i][i1][1] - wordpiece_indices[batch_i][i1][0] - 1) + + for i1 in sent_i_b_nps: + res = ''.join(random.choices(string.ascii_uppercase +string.digits, k = 25)) + if i1 in wordpiece_absolute_indices: + if subwords.shape[0] == 0: + subwords = sent_i[i1].cpu().numpy() + else: + subwords = np.vstack((subwords, sent_i[i1].cpu().numpy())) + # print('subwords',subwords) + # input() + # torch.save(sent_i[i1].cpu().numpy(),'data/tsne/B_NP/'+str(self.hyper_params['which_way'])+'/subwords/'+res+'.bin') + else: + if nonsubwords.shape[0] == 0: + nonsubwords = sent_i[i1].cpu().numpy() + else: + nonsubwords = np.vstack((nonsubwords, sent_i[i1].cpu().numpy())) + # print('nonsubwords',nonsubwords) + # input() + # torch.save(sent_i[i1].cpu().numpy(),'data/tsne/B_NP/'+str(self.hyper_params['which_way'])+'/nonsubwords/'+res+'.bin') + numpy_containers[0] = subwords + numpy_containers[1] = nonsubwords + + out = self.fc1(out) # [batches, max_len, len(tag_set)] + logits = self.activation(out) # [batches, max_len, len(tag_set)] + y = y.float().view(-1,out.shape[2]) + y = torch.argmax(y, dim=1) + active_y = torch.where(attention_mask.view(-1) == 1, y.view(-1), torch.tensor(self.criterion.ignore_index).type_as(y)) + loss = self.criterion(logits.view(-1,out.shape[2]), active_y) + return SequenceClassifierOutput(loss=loss, logits=logits) + + def forward_for_prediction(self, input_ids, attention_mask, wordpiece_indices): + if self.hyper_params['embedding_way'] == 'last_hidden_state': + out = self.model(input_ids, attention_mask=attention_mask).last_hidden_state # [batches, max_len, 768] + elif self.hyper_params['embedding_way'] == 'first_two': + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([ out.hidden_states[0], out.hidden_states[1] ]) + elif self.hyper_params['embedding_way'] == 'last_two': + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([ out.hidden_states[-2], out.hidden_states[-3] ]) + else: + raise "Unknown embedding_way specified" + if self.hyper_params['which_way'] == 3: + c = torch.zeros(out.shape).to(self.device) + for i in range(out.shape[0]): + out_sent_i = out[i] + wpi_sent_i = wordpiece_indices[i] + wpi_sent_i = (wpi_sent_i[wpi_sent_i!=0]).tolist() + # print('$$',wpi_sent_i) + j, k = 0, 0 + while j < out_sent_i.shape[0]: + if j not in wpi_sent_i[::2]: + c[i,k] += out[i,j] + j+=1 + else: + start = j + end = wpi_sent_i[2*wpi_sent_i[::2].index(j)+1] + c[i,k] += torch.mean(out[i][start:end], 0) + j = end + k+=1 + out = c + # out, _ = self.rnn1(out) # [batches, max_len, len(tag_set)] + out = self.fc1(out) # [batches, max_len, len(tag_set)] + logits = self.activation(out) # [batches, max_len, len(tag_set)] + return SequenceClassifierOutput(logits=logits) + +def predict_with_model(model, sent, tokenizer): + model.eval() + a = tokenizer("i", return_tensors="pt", max_length=4, padding='max_length')['input_ids'][0] + cls_id, sep_id, pad_id = a[0], a[2], a[3] + + input_ids = [] + attention_mask = [] + tag_mask = [] + wordpiece_indices = [] + max_len = model.hyper_params['max_len'] + + tii, wi = [cls_id], [] + for i,(word) in enumerate( sent.split('\t') ): + tids = tokenizer.convert_tokens_to_ids(tokenizer.tokenize(word)) + if len(tids) > 1: + if model.hyper_params['which_way'] == 3: #average out the wordpiece embeddings during the forward pass + wi.append([len(tii),len(tii)+len(tids)]) + elif model.hyper_params['which_way'] == 2: # take last wordpiece token id + tids = [tids[-1]] + elif model.hyper_params['which_way'] == 1: # take first wordpiece token id + tids = [tids[0]] + tii += tids + + tii.append(sep_id) + tam= [1]*len(tii) + [0]*(max_len - len(tii)) + tm = [0] + [1]*(len(sent.split('\t'))) + [0]*(max_len-len(sent.split('\t'))-1) + if len(tii) > 511: + return ['Size exceeded'] + tii = tii + [pad_id]*(max_len-len(tii)) + input_ids.append(tii) + attention_mask.append(tam) + tag_mask.append(tm) + wi = wi + [[0,0]]*(max_len-len(wi)) # putting max_len is a bit of overkill here I know. Length of wi represents the number of words in the sentence that can be splitted into multiple wordpieces. I wrote max_len here just for consistency. + wordpiece_indices.append(wi) + + input_ids = torch.tensor(input_ids).to(model.device) + attention_mask = torch.tensor(attention_mask).to(model.device) + tag_mask = torch.tensor(tag_mask).to(model.device) + wordpiece_indices = torch.tensor(wordpiece_indices).to(model.device) + + with torch.no_grad(): + out = model.forward_for_prediction(input_ids, attention_mask, wordpiece_indices).logits + + y_pred = model.predict_from_logits(out, tag_mask) + return y_pred + + diff --git a/GSoC25_H/IndIE/chunking/crf_chunker.py b/GSoC25_H/IndIE/chunking/crf_chunker.py new file mode 100644 index 0000000..1780bba --- /dev/null +++ b/GSoC25_H/IndIE/chunking/crf_chunker.py @@ -0,0 +1,99 @@ +import subprocess +import time +import os +import sklearn_crfsuite, pickle + +def word2features(sent, i): + word = sent[i][0] + postag = sent[i][1] + + features = { + 'bias': 1.0, + 'word':word, + 'postag': postag, + '-2:postag': sent[i-2][1] if i-2 >= 0 else 'X', + '-1:postag': sent[i-1][1] if i-1 >= 0 else 'X', + '+1:postag': sent[i+1][1] if i+1 < len(sent) else 'X', + '+2:postag': sent[i+2][1] if i+2 < len(sent) else 'X', + } + + return features + + +def sent2features(sent): + return [word2features(sent, i) for i in range(len(sent))] + +def sent2labels(sent): + return [label for token, postag, label in sent] + +def sent2tokens(sent): + return [token for token, postag, label in sent] + +def reduce_one_dim(a): + flat_list = [item for sublist in a for item in sublist] + # b = [] + # for c in tqdm(a, desc='reducing dimension'): + # b = b + c + return flat_list + +def predict_with_crf(sent): + test_sent = [] + + for word in sent.words: + test_sent.append((word.text, word.upos)) + + test_sent = [test_sent] + X_test = [sent2features(s) for s in test_sent] + + crf = sklearn_crfsuite.CRF( + algorithm='lbfgs', + c1=1.3518036184801792, # obtained from grid search + c2=0.04058208879576922, + max_iterations=1000, + all_possible_transitions=True, + verbose=True + ) + + file = open('chunking/state_dicts/model/sklearn_crf_model_v2_pos_mapped_2.pkl', 'rb') + crf = pickle.load(file) + file.close() + + y_pred = reduce_one_dim(crf.predict(X_test)) + return y_pred + + print(y_pred) + + exit() + + + + + # doc = nlp(sent) + wordl = [] + posl = [] + for sentence in doc.sentences: + for word in sentence.words: + wordl.append(word.text) + posl.append(word.upos) + assert len(wordl) == len(posl) + file = open('tempfile.txt','w') + for w,p in zip(wordl, posl): + file.write(w+'\t'+p+'\tX\n') + file.close() + # bashCommand = "/media/data_dump/Ritwik/crf/CRF++-0.58/crf_test -m /media/data_dump/Ritwik/crf/CRF++-0.58/example/chunking/crf_model tempfile.txt > tempfile2.txt" + # process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE) + # output, error = process.communicate() + process = subprocess.Popen('/media/data_dump/Ritwik/crf/CRF++-0.58/crf_test -m /media/data_dump/Ritwik/crf/CRF++-0.58/example/chunking/crf_model tempfile.txt > tempfile2.txt',shell=True) + process.wait() + # time.sleep(5) + os.remove('tempfile.txt') + file = open('tempfile2.txt','r') + content = [x.strip() for x in file.readlines()] + file.close() + ml = [] + for line in content: + if line: + ml.append(line.split('\t')[-1]) + os.remove('tempfile2.txt') + return ml + diff --git a/GSoC25_H/IndIE/convert.py b/GSoC25_H/IndIE/convert.py new file mode 100644 index 0000000..12d1204 --- /dev/null +++ b/GSoC25_H/IndIE/convert.py @@ -0,0 +1,91 @@ +import pandas as pd +import sys +import os + +def convert_hdf5_to_tab_format(hdf5_file='benchie_indie_new.h5', lang='hi', output_file='benchie_indie_converted_llm.txt'): + """ + Convert HDF5 extractions to tab-separated format expected by code.py + + Args: + hdf5_file: Path to the HDF5 file containing extractions + lang: Language key for the HDF5 data + output_file: Output file path for tab-separated data + """ + + print(f"Reading HDF5 file: {hdf5_file}") + + try: + # Read the HDF5 file + df = pd.read_hdf(hdf5_file, key=lang) + print(f"Loaded {len(df)} sentences") + + # Open output file for writing + with open(output_file, 'w', encoding='utf-8') as f: + + # Process each row + for idx, row in df.iterrows(): + sentence_number = str(idx + 1) # 1-indexed sentence numbers + + # Process regular extractions + if isinstance(row['extractions'], list) and len(row['extractions']) > 0: + # extractions is [[extraction1, extraction2, ...]] + for extraction_list in row['extractions']: + if isinstance(extraction_list, list): + for ext in extraction_list: + if isinstance(ext, (list, tuple)) and len(ext) >= 3: + # Each extraction is [arg1, relation, arg2] + arg1 = str(ext[0]).strip() + relation = str(ext[1]).strip() + arg2 = str(ext[2]).strip() + # Format: sentence_number \t arg1 \t relation \t arg2 + line = f"{sentence_number}\t{arg1}\t{relation}\t{arg2}" + f.write(line + '\n') + + # Process augmented extractions + if isinstance(row['augmented_exts'], list) and len(row['augmented_exts']) > 0: + # augmented_exts is [[extraction1, extraction2, ...]] + for extraction_list in row['augmented_exts']: + if isinstance(extraction_list, list): + for ext in extraction_list: + if isinstance(ext, (list, tuple)) and len(ext) >= 3: + # Each extraction is [arg1, relation, arg2] + arg1 = str(ext[0]).strip() + relation = str(ext[1]).strip() + arg2 = str(ext[2]).strip() + # Format: sentence_number \t arg1 \t relation \t arg2 + line = f"{sentence_number}\t{arg1}\t{relation}\t{arg2}" + f.write(line + '\n') + + print(f"Conversion complete! Output written to: {output_file}") + print(f"You can now run code.py with this file") + + except Exception as e: + print(f"Error during conversion: {e}") + return False + + return True + +def main(): + # Default parameters + hdf5_file = 'benchie_indie_new.h5' + lang = 'hi' + output_file = 'benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt' + + # Check if HDF5 file exists + if not os.path.exists(hdf5_file): + print(f"Error: HDF5 file '{hdf5_file}' not found!") + return + + # Convert the file + success = convert_hdf5_to_tab_format(hdf5_file, lang, output_file) + + if success: + print("\nNext steps:") + print(f"1. Check the output file: {output_file}") + print("2. Modify code.py to read from this file instead of the original extractions") + print("3. Run code.py to get your statistics") + else: + print("Conversion failed. Please check the error messages above.") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/README.md b/GSoC25_H/IndIE/hindi-benchie/README.md new file mode 100644 index 0000000..aabbee8 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/README.md @@ -0,0 +1,15 @@ +# hindi-benchie + +📊 Presenting an automated evaluation benchmark 🧮 to calculate precision, recall, and F1 scores for automatically extracted triples from 112 Hindi sentences using diverse Open Information Extraction (OIE) tools. 🌟 This benchmark accompanies the research paper titled "IndIE: A Multilingual Open Information Extraction Tool For Indic Languages," which has been accepted for publication in the Findings of IJCNLP-AACL 2023. 📚🔍 + +## Requirements + +Python 3 + +## Running + +* Sentences are given in sents.txt file. +* Run the desired triple extractor tool on each sentence and save the output in the following format: + * sent-num \ head \ relation \ tail +* Save the output in a .txt file and save it in the ```extractions``` folder. +* Run: ```python code.py``` \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/code.py b/GSoC25_H/IndIE/hindi-benchie/code.py new file mode 100644 index 0000000..50dd8f9 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/code.py @@ -0,0 +1,501 @@ +import re +import json +import copy +import string +import numpy as np + +def compare_clean_golden_ext_with_oie_ext(ext_g,ext_oie): + ext_oie = ext_oie.split('\t') + # print('here '*50) + # print(ext_g, len(ext_g)) + # print(ext_oie, len(ext_oie)) + assert len(ext_g) == len(ext_oie) + # sl = [] + bw = [] + for g,o in zip(ext_g,ext_oie): + ol = o.split() + gl = g.split() + tbw = [] + i,j = 0,0 + # print(g) + # print(o) + while i < len(ol) and j < len(gl): + # print(i,len(ol),j,len(gl)) + if ol[i]!=re.sub(r'\]|\[|\{[a-z]+\}','',gl[j]): # match failed + # print('not matched') + # print(ol[i],'vs',gl[j]) + if '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: + bracket_end+=1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}',gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start]+gl[bracket_end+1:] + continue + else: + break + else: + # print('matched') + # print(ol[i]) + i+=1 + j+=1 + if i == len(ol): + while j != len(gl) and '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: + bracket_end+=1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}',gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start]+gl[bracket_end+1:] + if j == len(gl): + bw+=tbw + # sl.append('satisfied') + else: + return 'not satisfied' + else: + return 'not satisfied' + if bw: + # print(bw) + # input('wait') + return 'satisfied but with '+','.join(bw) + else: + return 'satisfied' + +def compare_raw_golden_ext_with_oie_ext(ext_golden, ext_oie, default_passive): + ext_golden = ext_golden.split(' |OR| ') + # print('raw',ext_golden) + # print('raw',ext_oie) + bl = [] + for ext_g in ext_golden: + if ' <--{not allowed in passive}' in ext_g: + passive = False + ext_g = ext_g.replace(' <--{not allowed in passive}','') + elif ' <--{allowed in passive}' in ext_g: + passive = True + ext_g = ext_g.replace(' <--{allowed in passive}','') + elif ' <--{' in ext_g: + print('Unknown command found in "'+ext_g+'"\nExiting') + exit() + else: + passive = default_passive + + ext_g = ext_g.split(' --> ') + b2 = '' + b = compare_clean_golden_ext_with_oie_ext(ext_g, ext_oie) + if b=='satisfied': + return b + if passive and b!='satisfied': + t = ext_g[2] + ext_g[2] = ext_g[0] + ext_g[0] = t + b2 = compare_clean_golden_ext_with_oie_ext(ext_g, ext_oie) + if b2 == 'satisfied': + return b2 + if 'satisfied but' in b: + bl.append(b) + else: + bl.append(b2) + + bl2 = [] + for x in bl: + if 'satisfied but' in x: + bl2.append(x) + if bl2: + b = ' |OR| '.join(bl2) # now that I think hard, I realize that there will never be a situation where one extraction satisfies more than one pattern connected by |OR| + else: + b = 'not satisfied' + return b + +def n_extractions_in_smallest_cluster(golden_dict, n_sent): + ext_g = golden_dict[n_sent] + n = 0 + for cluster_no in ext_g.keys(): + n = max(len(ext_g[cluster_no]['essential']),n) + return n + +def calc_metrics(gold, exts, default_passive = True, show = False): + golden_dict = {} + essential_exts, compensating_dict, cluster_number, cluster_dict, sentence_number = [], {}, '', {}, '' + + for i,line in enumerate(gold): + if 'sent_id:' in line: + if sentence_number: + ext_dict = {'essential':essential_exts, 'compensatory': compensating_dict} + cluster_dict['cluster '+cluster_number] = ext_dict + golden_dict['sent '+sentence_number] = cluster_dict + essential_exts, compensating_dict, cluster_number, cluster_dict = [], {}, '', {} + # print(json.dumps(golden_dict,indent=2,ensure_ascii=False).encode('utf8').decode() ) + # input('wait') + sentence_number = re.search(r'sent_id:\d+',line)[0][8:] + golden_dict['s'+sentence_number+' txt'] = line.split('\t')[1] + elif '------ Cluster' in line: + if cluster_number: + ext_dict = {'essential':essential_exts, 'compensatory': compensating_dict} + cluster_dict['cluster '+cluster_number] = ext_dict + essential_exts, compensating_dict = [], {} + cluster_number = re.search(r'\d+',line)[0] + elif re.search(r'\{[a-z]\}',line[:4]): + compensating_dict[line[1]] = line[4:] + elif '='*20 not in line: + essential_exts.append(line) + + ext_dict = {'essential':essential_exts, 'compensatory': compensating_dict} + cluster_dict['cluster '+cluster_number] = ext_dict + essential_exts, compensating_dict = [], {} + golden_dict['sent '+sentence_number] = cluster_dict + essential_exts, compensating_dict, cluster_number, cluster_dict = [], {}, '', {} + + if show: + pass + # print('Golden dictionary is') + # print(json.dumps(golden_dict,indent=2,ensure_ascii=False).encode('utf8').decode()[:500]+'\n\t... ... ...'*3) + + # --- Gathering extractions --- + ext_oie = {} + for e in exts: + e = e.split('\t') + sno = e[0] + e = re.sub(' +',' ','\t'.join(e[1:])) + e = e.translate(str.maketrans('', '', string.punctuation+'।')) + e = re.sub(' +',' ',e) + try: + if e not in ext_oie[sno]: # removes duplicates + ext_oie[sno].append(e) + except Exception as ex: + ext_oie[sno] = [e] + + # print(ext_oie) + if show: + print('\nExtractions to evaluate are') + print(json.dumps(ext_oie,indent=2,ensure_ascii=False).encode('utf8').decode()[:500]+'\n\t... ... ...'*3 ) + print('Total sents',len(ext_oie.keys())) + + golden_state_dict = copy.deepcopy(golden_dict) + + tpl, fpl, fnl = [], [], [] + + # --- Populating the state dict --- + for k in ext_oie.keys(): + ext_l = ext_oie[k] # ext_l is extractions of one sentence + sno = k + sent_dict = golden_dict['sent '+sno] + state_dict = golden_state_dict['sent '+sno] + tp, fp = 0, len(ext_l) + for e in ext_l: + tp_dict = {e:False} + for cluster_no in sent_dict.keys(): + # print('-'*100) + # print('sent',k,'cluster',cluster_no,'oie',e) + for i,ext_g in enumerate(sent_dict[cluster_no]['essential']): + if 'satisfied' not in state_dict[cluster_no]['essential'][i]: + state_dict[cluster_no]['essential'][i] = 'not satisfied' # filling "not satisfied" by default + elif state_dict[cluster_no]['essential'][i] == 'satisfied': + continue # already satisfied, hence do not check this # it adds one additional feature i.e. if one extraction satisfies a particular pattern, then another cannot do it. Hence repetitive extractions are penalized. + curr_state = compare_raw_golden_ext_with_oie_ext(ext_g, e, default_passive) + if curr_state != 'not satisfied': # i.e. the extraction matched + tp_dict[e] = True + if curr_state == 'satisfied': + state_dict[cluster_no]['essential'][i] = curr_state + elif 'satisfied but' in curr_state: + if 'satisfied but' in state_dict[cluster_no]['essential'][i]: + state_dict[cluster_no]['essential'][i] += '|AND|'+curr_state + else: + state_dict[cluster_no]['essential'][i] = curr_state + # else: + # state_dict[cluster_no]['essential'][i] = curr_state + + for ck in sent_dict[cluster_no]['compensatory'].keys(): + ext_g = sent_dict[cluster_no]['compensatory'][ck] + if 'satisfied' not in state_dict[cluster_no]['compensatory'][ck]: + state_dict[cluster_no]['compensatory'][ck] = 'not satisfied' + elif state_dict[cluster_no]['compensatory'][ck] == 'satisfied': + continue + curr_state = compare_raw_golden_ext_with_oie_ext(ext_g, e, default_passive) + if curr_state != 'not satisfied': # i.e. the extraction matched + tp_dict[e] = True + if curr_state == 'satisfied': + state_dict[cluster_no]['compensatory'][ck] = curr_state + elif 'satisfied but' in curr_state: + if 'satisfied but' in state_dict[cluster_no]['compensatory'][ck]: + state_dict[cluster_no]['compensatory'][ck] += '|AND|'+curr_state + else: + state_dict[cluster_no]['compensatory'][ck] = curr_state + if tp_dict[e]: + tp+=1 + if show: + print('The state of golden dict after processing of this extraction ("'+e+'"): ',sno) + print(json.dumps(state_dict,indent=2,ensure_ascii=False).encode('utf8').decode()) + tpl.append(tp) + fpl.append(fp-tp) + if show: + # print(fpl) + # print(tp,fp) + print('After processing all the extractions') + print(ext_l) + print('The state of golden dict is (of this sentence)') + print(json.dumps(state_dict,indent=2,ensure_ascii=False).encode('utf8').decode()) + + if show: + pass + # print('\nState of golden dictionary after processing extractions is') + # print(json.dumps(golden_state_dict,indent=2,ensure_ascii=False).encode('utf8').decode()[:500]+'\n\t... ... ...'*3 ) + + + def fn_sb(cd,cel,fn=0): + i = 0 + while i < len(cel): + ce = cel[i] + if 'not satisfied' == cd[ce]: + fn+=1 + cd[ce] = 'X' + elif 'satisfied but' in cd[ce]: + cel2 = cd[ce].split()[-1].split(',') + fn = fn_sb(cd,cel2,fn) + i+=1 + return fn + + + for sno in ext_oie.keys(): + # --- Take one cluster at a time, and select the minimum number of FN --- + temp_fn = [] + for cluster_no in golden_state_dict['sent '+sno].keys(): + # print(cluster_no) + # input('wait') + cluster = golden_state_dict['sent '+sno][cluster_no] + fn = 0 + for e in cluster['essential']: + if e == 'not satisfied': + fn+=1 + if 'satisfied but' in e: + tfnl = [] + for e2 in e.split('|AND|'): + cel = e2.split()[-1].split(',') + tfnl.append(fn_sb(cluster['compensatory'].copy(),cel)) + fn += min(tfnl) + + # cel = e.split()[-1].split(',') + # fn += fn_sb(cluster['compensatory'].copy(),cel) + temp_fn.append(fn) + fnl.append(min(temp_fn)) + # if 'sent ' in sno: + # fn = 0 + # cluster_with_most_satisfied = (0,'cluster 1') + # for cluster_no in golden_state_dict[sno].keys(): + # cluster = golden_state_dict[sno][cluster_no] + # satno = 0 + # for e in cluster['essential']: + # if 'satisfied' == e or 'satisfied but' in e: + # satno+=1 + # for k in cluster['compensatory'].keys(): + # if 'satisfied but' in cluster['compensatory'][k] or 'satisfied' == cluster['compensatory'][k]: + # satno+=1 + # if satno > cluster_with_most_satisfied[0]: + # cluster_with_most_satisfied = (satno, cluster_no) + # print('cluster_with_most_satisfied',cluster_with_most_satisfied[1],cluster_with_most_satisfied[0]) + + # cluster = golden_state_dict[sno][cluster_with_most_satisfied[1]] + # for e in cluster['essential']: + # if e == 'not satisfied': + # fn+=1 + # if 'satisfied but' in e: + # cel = e.split()[-1].split(',') + # fn += fn_sb(cluster['compensatory'].copy(),cel) + # fnl.append(fn) + + missing_fn = [] + for sent_n in golden_dict.keys(): + if sent_n.split()[-1] not in ext_oie.keys() and 'txt' not in sent_n: + missing_fn.append(n_extractions_in_smallest_cluster(golden_dict,sent_n)) + + + + # p = [] + # r = [] + # fl = [] + # for tp, fp, fn in zip(tpl,fpl,fnl): + # if tp == 0: + # p.append(0) + # r.append(0) + # fl.append(0) + # else: + # precision = tp/(tp+fp) + # recall = tp/(tp+fn) + # p.append(precision) + # r.append(recall) + # fl.append(2*(precision*recall)/(precision+recall)) + + # print('Recall',sum(r)/len(r)) + # print('Precision',sum(p)/len(p)) + # print('F-score',sum(fl)/len(fl)) + + p = sum(tpl)/(sum(tpl)+sum(fpl)) if (sum(tpl)+sum(fpl)) != 0 else 0 + r = sum(tpl)/(sum(tpl)+sum(fnl)+sum(missing_fn)) if (sum(tpl)+sum(fnl)+sum(missing_fn)) != 0 else 0 + f = 2*p*r/(p+r) if (p+r) != 0 else 0 + + print(' ',[b for a in ([x]*10 for x in range(8)) for b in a][1:]) + print(' ',(list(np.arange(1,10))+[0])*8) + print('TP',tpl,len(tpl)) + print('FP',fpl) + print('FN',fnl) + print('Missing FNs',missing_fn) + + # Calculate and print final totals + total_tp = sum(tpl) + total_fp = sum(fpl) + total_fn = sum(fnl) + sum(missing_fn) + + print(f'\n=== FINAL METRICS ===') + print(f'Total TP (True Positives): {total_tp}') + print(f'Total FP (False Positives): {total_fp}') + print(f'Total FN (False Negatives): {total_fn}') + print(f' - Regular FN: {sum(fnl)}') + print(f' - Missing FN: {sum(missing_fn)}') + print(f'Total Extractions: {total_tp + total_fp}') + print(f'Total Expected: {total_tp + total_fn}') + + print('Recall',r) + print('Precision',p) + print('F-score',f) + + return r,p,f, golden_state_dict, tpl, fpl, fnl, missing_fn, ext_oie, golden_dict + +def write_detailed_analysis(analysis_file_path, golden_dict, ext_oie, golden_state_dict, tpl, fpl, fnl, missing_fn): + sno_list = list(ext_oie.keys()) + with open(analysis_file_path, 'w', encoding='utf-8') as af: + af.write("Detailed Analysis Report\n") + af.write("="*50 + "\n\n") + + # Create a map from sno to its index for tpl, fpl, fnl + sno_to_idx = {sno: i for i, sno in enumerate(sno_list)} + + # All sentences from the gold standard + gold_sents = {k.split(' ')[1] for k in golden_dict.keys() if k.startswith('sent ')} + + for sno in sorted(gold_sents, key=int): + af.write(f"Sentence ID: {sno}\n") + af.write(f"Sentence Text: {golden_dict.get('s' + sno + ' txt', 'N/A')}\n") + + if sno in sno_to_idx: + idx = sno_to_idx[sno] + af.write(f"Metrics: TP={tpl[idx]}, FP={fpl[idx]}, FN={fnl[idx]}\n") + + # Model Extractions Analysis + af.write("\n--- Model Extractions ---\n") + if sno in ext_oie: + # This part needs the per-extraction TP/FP status, which is not directly available. + # For now, just listing them. + for model_ext in ext_oie[sno]: + af.write(f"- {model_ext}\n") + else: + af.write("No extractions from model for this sentence.\n") + + # Gold Standard Analysis + af.write("\n--- Gold Standard Analysis ---\n") + sent_state_dict = golden_state_dict.get('sent '+sno) + if sent_state_dict: + for cluster_no in sorted(sent_state_dict.keys()): + cluster_data = sent_state_dict[cluster_no] + af.write(f"\nCluster: {cluster_no}\n") + af.write(" Essential Extractions:\n") + for i, essential in enumerate(cluster_data['essential']): + gold_pattern = golden_dict['sent ' + sno][cluster_no]['essential'][i] + status = essential if isinstance(essential, str) else "satisfied" # Simplified + af.write(f" - Gold: {gold_pattern}\n") + af.write(f" Status: {status}\n") + + if cluster_data.get('compensatory'): + af.write(" Compensatory Extractions:\n") + for key, compensatory in cluster_data['compensatory'].items(): + gold_pattern = golden_dict['sent ' + sno][cluster_no]['compensatory'][key] + status = compensatory if isinstance(compensatory, str) else "satisfied" # Simplified + af.write(f" - Gold ({key}): {gold_pattern}\n") + af.write(f" Status: {status}\n") + else: + af.write("No state information available for this sentence.\n") + + else: # Sentences missed by model + af.write("This sentence was not present in the model's output.\n") + af.write("\n--- Gold Standard ---\n") + sent_gold_dict = golden_dict.get('sent ' + sno, {}) + for cluster_no, cluster_data in sent_gold_dict.items(): + af.write(f"\nCluster: {cluster_no}\n") + af.write(" Essential Extractions:\n") + for essential in cluster_data.get('essential', []): + af.write(f" - {essential}\n") + if cluster_data.get('compensatory'): + af.write(" Compensatory Extractions:\n") + for key, comp in cluster_data.get('compensatory', {}).items(): + af.write(f" - ({key}) {comp}\n") + + af.write("\n" + "="*50 + "\n\n") + +## ----- a small stub to calculate hindi_benchie scores on the english sample ----- +# file = open('extractions/english_explicit.text','r') +# exts = [x.strip() for x in file.readlines()] +# file.close() +# file = open('english_benchie_gold.txt','r') +# gold = [x.strip() for x in file.readlines()] +# file.close() +# print(calc_metrics(gold, exts)) +# exit() +import os +import glob +ml = glob.glob('extractions/formatted_triplets_6000.txt') +default_passive = True +show = False + +nms, pl, rl, fl = [], [], [], [] + +file = open('hindi_benchie_gold.txt','r') +gold = [x.strip() for x in file.readlines()] +file.close() + +analysis_dir = 'detailed_analysis' +if not os.path.exists(analysis_dir): + os.makedirs(analysis_dir) + +for fname in ml: + # if 'indie' not in fname and 'keshav' not in fname: + # continue + print('-'*100,fname,'-'*100) + nms.append(fname.replace('extractions/','')) + file = open(fname,'r') + exts = [x.strip() for x in file.readlines()] + file.close() + + r, p, f, golden_state_dict, tpl, fpl, fnl, missing_fn, ext_oie, golden_dict = calc_metrics(gold, exts, show=show) + rl.append(r) + pl.append(p) + fl.append(f) + + # After calc_metrics, generate the detailed analysis file + analysis_filename = os.path.join(analysis_dir, os.path.basename(fname).replace('.txt', '_analysis.txt')) + + write_detailed_analysis(analysis_filename, golden_dict, ext_oie, golden_state_dict, tpl, fpl, fnl, missing_fn) + print(f"Detailed analysis report generated at: {analysis_filename}") + + +import matplotlib.pyplot as plt +import numpy as np + +fig = plt.figure() + +x = np.arange(1,2+(len(nms)-1)*5,5) +y = rl +plt.bar(x,y) + +x = np.arange(2,3+(len(nms)-1)*5,5) +y = pl +plt.bar(x,y) + +x = np.arange(3,4+(len(nms)-1)*5,5) +y = fl +plt.bar(x,y) + +x = np.arange(2,3+(len(nms)-1)*5,5) +plt.xticks(x,nms) + +plt.legend(['recall','precision','f-score']) + +# plt.show() + diff --git a/GSoC25_H/IndIE/hindi-benchie/data_prepare.py b/GSoC25_H/IndIE/hindi-benchie/data_prepare.py new file mode 100644 index 0000000..100415e --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/data_prepare.py @@ -0,0 +1,57 @@ +#download from https://www.kaggle.com/datasets/shankkumar/multilingualopenrelations15 + +import pandas as pd +from tqdm import tqdm +import random, os, numpy as np +import copy +# import pickle + +hyper_params = {'rseed':123} + +os.environ['PYTHONHASHSEED'] = str(hyper_params['rseed']) +np.random.seed(hyper_params['rseed']) +random.seed(hyper_params['rseed']) + +for lang in ['hi','ur','ta','te']: + file = open({'hi':'hindi','ur':'urdu','ta':'tamil','te':'telugu'}[lang],'r') + content = file.readlines() + file.close() + + df = pd.DataFrame([],columns=['source','sentence','extractions']) + + d = dict() + d2 = dict() + sset = set() + + for i,line in tqdm(enumerate(content),total=len(content)): + line = line.strip().split(' ||| ') + if len(line) != 9: + pass + print(i+1) + input('wait') + else: + try: + d[line[1]] += [[line[2],line[3],line[4]]] + except Exception as e: + d[line[1]] = [[line[2],line[3],line[4]]] + d2[line[1]] = line[0] + sset.add(line[1]) + + random_sents = copy.deepcopy(list(d.keys())) + random.shuffle(random_sents) + # print(random_sents[:100]) + # input('wait2') + random_sents = random_sents[:500] + i = 0 + for k in tqdm(random_sents, desc='Generating dataframe'): + df.at[i,'source'] = d2[k] + df.at[i,'sentence'] = k + df.at[i,'extractions'] = d[k] + i+=1 + + print(df) + print(df.loc[0]['sentence']) + print(df.loc[0]['extractions']) + + df.to_hdf('munnwar_rand.h5',key=lang,mode='a') + df.to_csv(lang+'_500.csv',index=None) diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm_analysis.txt new file mode 100644 index 0000000..eb0f03b --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm_analysis.txt @@ -0,0 +1,3633 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +- कार्यरूप जगत सििद्ध होती है शक्तिरूपी माया +- कार्यरूप जगत को देखकर ही शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +- अखिल भारतीय पुलिस डयूटी मीट property 1958 से +- अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=13, FN=3 + +--- Model Extractions --- +- विवादित अंगुलि चिह्नों भेजे गए उपक्रमों +- उपक्रमों property विभागों +- विभागों property केन्द्रीय सरकार +- भारत सरकार property केन्द्रीय सरकार +- केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों +- भारत सरकार भेजे गए विवादित अंगुलि चिह्नों +- विभागों परीक्षण करना विवादित अंगुलि चिह्नों +- उपक्रमों भेजे गए विवादित अंगुलि चिह्नों +- उपक्रमों विवादित अंगुलि चिह्नों भेजे गए केन्द्रीय सरकार +- उपक्रमों विवादित अंगुलि चिह्नों भेजे गए भारत सरकार +- उपक्रमों property विभागों केन्द्रीय सरकार +- विभागों property केन्द्रीय सरकार भारत सरकार +- केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों भारत सरकार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=2, FP=10, FN=1 + +--- Model Extractions --- +- यह एजेंट मौजूद है बारह पुस्तकों +- गुप्त नाम property 007 +- बारह पुस्तकों property फ़्लेमिंग +- दो लघुकथाओं property फ़्लेमिंग +- 007 प्रसिद्ध गुप्त नाम +- यह एजेंट मौजूद फ़्लेमिंग +- फ़्लेमिंग मौजूद बारह पुस्तकों +- फ़्लेमिंग मौजूद दो लघुकथाओं +- बारह पुस्तकों property फ़्लेमिंग दो लघुकथाओं +- यह एजेंट मौजूद फ़्लेमिंग बारह पुस्तकों +- यह एजेंट मौजूद फ़्लेमिंग दो लघुकथाओं +- बारह पुस्तकों फ़्लेमिंग मौजूद दो लघुकथाओं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: satisfied but with a + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- उन्होंने की एक पत्रिका साधु शुरू +- 01 अगस्त 1907 की उन्होंने +- एक पत्रिका साधु शुरू property अपनी +- 01 अगस्त 1907 शुरू की पत्रिका +- एक पत्रिका साधु शुरू उन्होंने की 01 अगस्त 1907 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +Metrics: TP=0, FP=6, FN=1 + +--- Model Extractions --- +- नवीनतम वेतनमानों लागू किया गया है 01 अप्रैल 2009 +- कंपनी लागू किया गया है नवीनतम वेतनमानों +- 01 अप्रैल 2009 लागू किया गया है कंपनी +- 01 अप्रैल 2009 नवीनतम वेतनमानों लागू किया गया है कंपनी +- नवीनतम वेतनमानों कंपनी लागू किया गया है 01 अप्रैल 2009 +- कंपनी 01 अप्रैल 2009 लागू किया गया है नवीनतम वेतनमानों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold: कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल --> property --> 2009 से + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +Metrics: TP=1, FP=10, FN=2 + +--- Model Extractions --- +- सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +- सुनवाई property गोधरा ट्रेन कांड +- गोधरा ट्रेन कांड property 01 जून +- साबरमती केंद्रीय जेल के अंदर property अहमदाबाद +- 01 जून हुआ गोधरा ट्रेन कांड की सुनवाई +- गोधरा ट्रेन कांड शुरू हुई सुनवाई +- सुनवाई शुरू हुई अहमदाबाद +- साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड +- साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद +- सुनवाई property गोधरा ट्रेन कांड 01 जून +- गोधरा ट्रेन कांड शुरू हुई सुनवाई अहमदाबाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + Status: satisfied but with b,c + - Gold: 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + Status: not satisfied + - Gold (c): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + Status: not satisfied + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=1, FP=7, FN=2 + +--- Model Extractions --- +- वे नियुक्त हुई न्यायाधीश +- 06 अक्टूबर 1989 नियुक्त हुई वे +- न्यायाधीश property सर्वोच्च न्यायालय +- 06 अक्टूबर 1989 हुआ नियुक्त हुई +- वे नियुक्त हुई सर्वोच्च न्यायालय +- न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 +- न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय +- 06 अक्टूबर 1989 नियुक्त हुई वे सर्वोच्च न्यायालय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +- 06 प्रतिशत property ऐसे लोग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- इम्पीरियल पोस्टल सर्विस जारी किया गया पहला डाक टिकट +- 1 अक्टूबर 1854 जारी किया गया इम्पीरियल पोस्टल सर्विस +- 1 अक्टूबर 1854 हुआ जारी किया गया +- पहला डाक टिकट इम्पीरियल पोस्टल सर्विस जारी किया गया 1 अक्टूबर 1854 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + Status: not satisfied + - Gold (b): पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + Status: not satisfied + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=1, FP=10, FN=2 + +--- Model Extractions --- +- आंध्र ने पाया कर्नूल +- दर्जा पाया 1 अक्टूबर 1953 +- दर्जा property राज्य +- आंध्र ने पाया राज्य का दर्जा +- कर्नूल पाया राजधानी के साथ +- आंध्र ने पाया 1 अक्टूबर 1953 +- कर्नूल आंध्र ने पाया राज्य का दर्जा +- आंध्र ने पाया कर्नूल राजधानी के साथ +- कर्नूल आंध्र ने पाया 1 अक्टूबर 1953 +- दर्जा पाया 1 अक्टूबर 1953 आंध्र ने +- राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: satisfied but with a,c + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +Metrics: TP=0, FP=12, FN=1 + +--- Model Extractions --- +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 +- ऑस्ट्रेलिया ज़ारी किया गया 1 अक्टूबर 2008 +- 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न +- न्यूजीलैंड जारी किया गया दूसरा सीज़न +- ऑस्ट्रेलिया जारी किया गया दूसरा सीज़न +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 न्यूजीलैंड +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +- 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न न्यूजीलैंड +- 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +- न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + Status: not satisfied + - Gold (b): [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + - Gold (c): दूसरा --> property --> सीज़न + Status: not satisfied + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर ने लिया स्थान +- 1 अक्टूबर को लिया रॉबर्ट आइगर ने +- स्थान property माइकल आइजनर +- स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=0, FP=9, FN=1 + +--- Model Extractions --- +- यह देश आजाद हुआ 1 अक्टूबर 1960 +- शासन आजाद हुआ इंग्लैंड +- 1 अक्टूबर 1960 हुआ आजाद हुआ +- यह देश आजाद हुआ इंग्लैंड के शासन +- यह देश आजाद हुआ इंग्लैंड +- 1 अक्टूबर 1960 यह देश आजाद हुआ इंग्लैंड के शासन +- 1 अक्टूबर 1960 यह देश आजाद हुआ इंग्लैंड +- शासन आजाद हुआ इंग्लैंड यह देश +- इंग्लैंड के शासन यह देश आजाद हुआ इंग्लैंड + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=0, FP=12, FN=3 + +--- Model Extractions --- +- अंग्रेजों भेज दिया गया चन्द्रसिंह +- 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 हुआ भेज दिया गया +- चन्द्रसिंह भेज दिया गया फ्रांस +- चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- चन्द्रसिंह भेज दिया गया अंग्रेजों +- अंग्रेजों भेज दिया गया चन्द्रसिंह फ्रांस +- अंग्रेजों भेज दिया गया चन्द्रसिंह अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +- 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह +- अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +Metrics: TP=3, FP=5, FN=1 + +--- Model Extractions --- +- इसे घोषित किया गया 1 अप्रैल 1946 +- गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +- इसके पहले बने घोषित किया गया +- 1 अप्रैल 1946 घोषित किया गया स्वायत्तशासी प्रान्त +- इसे घोषित किया गया स्वायत्तशासी प्रान्त +- गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +- इसे घोषित किया गया 1 अप्रैल 1946 स्वायत्तशासी प्रान्त +- मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + Status: satisfied but with a + - Gold: गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + Status: not satisfied + - Gold (b): स्वायत्तशासी --> property --> प्रान्त + Status: not satisfied + - Gold (c): इसके पहले --> property --> मुख्य मन्त्री + Status: not satisfied + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +- एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही property भारत +- हिन्दी प्रचार सभा थी एक आन्दोलन +- एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: not satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +- चेहरे दिखाई पड़ती थी कर्मा +- बाल्यकाल से ही दिखाई पड़ती थी कर्मा +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा +- चेहरे दिखाई पड़ती थी कर्मा बाल्यकाल से ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Status: not satisfied + Compensatory Extractions: + - Gold (a): बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + Status: satisfied + - Gold (b): कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + Status: not satisfied + - Gold (c): एक अनूठी --> property --> आभा + Status: not satisfied + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- सोनू बन चुके हैं एक प्रमुख हस्ती +- तब बन चुके हैं अब तक +- भारतीय संगीत जगत बन चुके हैं अब तक +- सोनू बन चुके हैं भारतीय संगीत जगत +- एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत +- तब बन चुके हैं अब तक भारतीय संगीत जगत +- अब तक भारतीय संगीत जगत बन चुके हैं सोनू + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + - कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Compensatory Extractions: + - (a) [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + - (b) सबसे अधिक --> property --> प्रयोगनीय + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=1, FP=11, FN=2 + +--- Model Extractions --- +- सोवियत दस्तों ने आज़ाद कराया प्राग +- क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन +- प्राग property राजधानी +- राजधानी property चेकोस्लोवाकिया +- बर्लिन आज़ाद कराया सोवियत दस्तों ने +- सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +- चेकोस्लोवाकिया राजधानी प्राग +- प्राग सोवियत दस्तों ने आज़ाद कराया बर्लिन +- प्राग सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +- क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन सोवियत दस्तों ने +- प्राग property राजधानी चेकोस्लोवाकिया +- बर्लिन आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: satisfied but with b + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: not satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- वे प्रथम भारतीय हैं क्षेत्र +- पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति +- योग में शिक्षा +- शिक्षा क्षेत्र में योग +- राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +- वे property प्रथम भारतीय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=0, FP=5, FN=2 + +--- Model Extractions --- +- वित्तीय सहायता भी दी जाती है पूरी करने तक +- सभी बच्चों पूरी करने तक दी जाती है +- पूरी करने तक दी जाती है पढ़ाई स्कूल +- सभी बच्चों दी जाती है वित्तीय सहायता भी +- पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- यह स्थान दर्शनीय केन्द्र है आज भी +- दर्शनीय केन्द्र property लोगों के लिए +- यह स्थान property दर्शनीय केन्द्र +- लोगों के लिए दर्शनीय केन्द्र property यह स्थान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + Status: not satisfied + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Status: satisfied + Compensatory Extractions: + - Gold (a): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> property --> केन्द्र + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): लोगों के लिए --> property --> क्षेत्र के + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +- वेदाङ्ग प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +- पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +- इस सम्बन्ध पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +- वेदाङ्ग पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: not satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- मैं उपासना करता हूं इस श्रेष्ठ तत्त्व +- इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +- आत्मा property शब्द +- मैं करता हूं उपासना + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + Status: not satisfied + - Gold: [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Status: not satisfied + Compensatory Extractions: + - Gold (a): शब्द की --> property --> आत्मा [समझकर ही] + Status: not satisfied + - Gold (b): इस श्रेष्ठ --> property --> तत्त्व की + Status: not satisfied + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=0, FP=9, FN=1 + +--- Model Extractions --- +- उल्लेख मिलता है पांच नदियों में +- ऋग्वेद मिलता है उल्लेख +- हिमाचल प्रदेश बहने वाली पांच नदियों में +- उल्लेख property चार +- हिमाचल प्रदेश बहने वाली पांच नदियों +- पांच नदियों में चार का उल्लेख +- चार उल्लेख ऋग्वेद +- पांच नदियों में उल्लेख मिलता है ऋग्वेद +- पांच नदियों में हिमाचल प्रदेश बहने वाली पांच नदियों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: not satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने +- उन्होंने इंकार कर दिया बच्चे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: not satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों +- तुलनात्मक अध्ययन property शिक्षा +- शिक्षा जुड़ा है सभी सामाजिक विज्ञानों +- तुलनात्मक अध्ययन जुड़ा है शिक्षा +- तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों शिक्षा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: not satisfied + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: not satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- 9110 भारतीय रेल द्वारा संचालित +- गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- यह शहर प्रमुख हिल स्टेशन है वर्तमान +- प्रमुख हिल स्टेशन property पश्चिम बंगाल +- यह शहर property प्रमुख हिल स्टेशन +- पश्चिम बंगाल प्रमुख हिल स्टेशन property यह शहर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=3, FP=23, FN=1 + +--- Model Extractions --- +- सिलकोट एक गाँव है गंगोलीहाट तहसील +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +- एक गाँव property पिथोरागढ जिले +- उत्तराखण्ड राज्य के अन्तर्गत property भारत +- पिथोरागढ जिले property कुमाऊँ मण्डल +- सिलकोट property एक गाँव +- सिलकोट में है गंगोलीहाट तहसील +- सिलकोट में है भारत +- सिलकोट में है उत्तराखण्ड राज्य +- सिलकोट में है कुमाऊँ मण्डल +- सिलकोट में है पिथोरागढ जिले +- उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत +- उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property सिलकोट +- एक गाँव property पिथोरागढ जिले कुमाऊँ मण्डल +- पिथोरागढ जिले एक गाँव property सिलकोट +- गंगोलीहाट तहसील सिलकोट में है भारत +- गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +- गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +- गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +- भारत सिलकोट में है उत्तराखण्ड राज्य +- भारत सिलकोट में है कुमाऊँ मण्डल +- भारत सिलकोट में है पिथोरागढ जिले +- उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +- उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +- कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: not satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: satisfied but with b + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- तकनीकी केंद्र स्थानापन्न करना है तिरुवनंतपुरम +- तकनीकी केंद्र property एयर लाइन +- एयर लाइन तकनीकी केंद्र को स्थानापन्न करना है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=4, FP=10, FN=1 + +--- Model Extractions --- +- दोनों मामले पेश हुए सर लुइस शर्ट +- सर लुइस शर्ट property मुख्य न्यायाधीश +- विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +- चीफ कोर्ट पेश हुए दोनों मामले +- मुख्य न्यायाधीश पेश हुए दोनों मामले +- सर लुइस शर्ट पेश हुए दोनों मामले +- विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +- सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट +- सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +- सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +- सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +- चीफ कोर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +- चीफ कोर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +- मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: satisfied but with c|AND|satisfied but with c + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: satisfied but with d + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=0, FP=9, FN=2 + +--- Model Extractions --- +- मृत्यु हो गई किसी बीमारी की वजह +- 28 नवम्बर 1694 हो गई मृत्यु +- मृत्यु property बाशो +- किसी बीमारी की वजह हो गई मृत्यु +- बाशो हो गई मृत्यु +- मृत्यु हो गई 28 नवम्बर 1694 +- किसी बीमारी की वजह मृत्यु हो गई 28 नवम्बर 1694 +- किसी बीमारी की वजह मृत्यु हो गई बाशो +- 28 नवम्बर 1694 हो गई मृत्यु बाशो + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: not satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- विक्रम ने सोचा एक हल +- तो नहीं हुआ कोई मतैक्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सन 1696 मुकाबला हुआ फिर एक बार +- शाही सेना मुकाबला हुआ फिर पंचायती सेना +- सन 1696 हुआ मुकाबला + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=1, FP=14, FN=2 + +--- Model Extractions --- +- मर्लगोंड एक गाँव है कुभीर मण्डल +- एक गाँव property अदिलाबादु जिले +- अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत +- आन्ध्रप्रदेश राज्य के अन्तर्गत property भारत +- मर्लगोंड property एक गाँव +- मर्लगोंड में कुभीर मण्डल +- मर्लगोंड का है आन्ध्रप्रदेश राज्य के अन्तर्गत +- मर्लगोंड का है अदिलाबादु जिले +- मर्लगोंड का है भारत +- एक गाँव property अदिलाबादु जिले आन्ध्रप्रदेश राज्य के अन्तर्गत +- अदिलाबादु जिले एक गाँव property मर्लगोंड +- अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत भारत +- आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है अदिलाबादु जिले +- आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है भारत +- अदिलाबादु जिले मर्लगोंड का है भारत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: not satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: not satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- अनेक ग्रन्थ लिखे गये बाद +- दर्शन पक्ष लिखे गये व्याकरण +- बाद लिखे गये व्याकरण +- बाद लिखे गये दर्शन पक्ष +- बाद लिखे गये अनेक ग्रन्थ +- अनेक ग्रन्थ लिखे गये बाद व्याकरण +- अनेक ग्रन्थ लिखे गये बाद दर्शन पक्ष +- दर्शन पक्ष लिखे गये व्याकरण बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: not satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- निदेशक बने 1975 +- इलाहाबाद बने नवनिर्मित मेहता अनुसंधान संस्थान +- 1975 हुआ इलाहाबाद +- इलाहाबाद हुआ नवनिर्मित मेहता अनुसंधान संस्थान +- 1975 हुआ इलाहाबाद नवनिर्मित मेहता अनुसंधान संस्थान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- नाम property उनके +- नाम property इस जगह +- उनके रखा गया नाम +- उनके नाम property इस जगह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: not satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं रहना +- इस आपाधापी से दूर रहना घर पर ही +- घर पर ही property अपने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: satisfied but with a + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied but with b,a + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=0, FP=6, FN=2 + +--- Model Extractions --- +- मार्च 2001 वापसी हुई फिर एक बार +- अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर उनकी +- अट्ठाइसवें रक्षा सचिव के रूप property अमरीका +- मार्च 2001 हुआ वापसी हुई फिर +- अमरीका वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप +- उनकी अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर अमरीका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +Metrics: TP=0, FP=5, FN=2 + +--- Model Extractions --- +- सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 +- इसकी रचना आधारशिला रखी गयी थी 3 मार्च 1884 +- सर वाईकर के आधारशिला रखी गयी थी इसकी रचना +- सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 इसकी रचना +- 3 मार्च 1884 इसकी रचना आधारशिला रखी गयी थी सर वाईकर के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Status: not satisfied + Compensatory Extractions: + - Gold (a): आधारशिला --> property --> इसकी रचना की + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसकी --> property --> रचना की + Status: not satisfied + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- वह संपर्क में है इस तकनीक के लिए +- संपर्क property विभिन्न टेलीविजन कंपनियों +- वह संपर्क में है विभिन्न टेलीविजन कंपनियों +- विभिन्न टेलीविजन कंपनियों के लिए इस तकनीक +- इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + Status: not satisfied + - Gold: इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + Status: satisfied + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=0, FP=9, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया था क्षेत्र +- सन 1961 सम्मानित किया गया था पद्म भूषण +- क्षेत्र property चिकित्सा विज्ञान +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +- चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +- चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +- सन 1961 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=4, FP=1, FN=0 + +--- Model Extractions --- +- उन्होने संगीत रचना की मराठी के अतिरिक्त +- हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +- मराठी के अतिरिक्त संगीत रचना की उन्होने +- उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +- मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं +- औद्योगिक रूप property काइटिन +- काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं +- औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं काइटिन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + Status: not satisfied + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +Metrics: TP=2, FP=5, FN=1 + +--- Model Extractions --- +- सभी पर्व property हिंदूओं +- सभी पर्व property मुस्लिमों +- हिंदूओं मनाए जाते हैं पर्व +- मुस्लिमों मनाए जाते हैं पर्व +- सभी पर्व मनाए जाते हैं मिलजुल कर +- हिंदूओं सभी पर्व property मुस्लिमों +- हिंदूओं मनाए जाते हैं पर्व मुस्लिमों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + Status: satisfied but with b + - Gold (b): [और] मुस्लिमों के --> property --> सभी पर्व + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Status: not satisfied + Compensatory Extractions: + - Gold (a): मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + Status: satisfied + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=22, FN=2 + +--- Model Extractions --- +- द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +- 20 जुलाई 2012 रिलीज़ किया गया कनाडा +- द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +- द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +- द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +- द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +- द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका 20 जुलाई 2012 +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +- अमेरिका 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका 20 जुलाई 2012 रिलीज़ किया गया कनाडा +- संयुक्त राजशाही 20 जुलाई 2012 रिलीज़ किया गया कनाडा +- 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस +- 20 जुलाई 2012 रिलीज़ किया गया कनाडा द डार्क नाईट राइसेस +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +- अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +- संयुक्त राजशाही द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +- 20 जुलाई 2012 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: not satisfied + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: not satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: not satisfied + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: not satisfied + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- यह लगाया जाता है हर साल +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी +- यह लगाया जाता है जर्मनी +- हर साल यह लगाया जाता है जर्मनी +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी यह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- द्रौपदी ने वरमाला डाल दिया गले +- गले property अर्जुन +- द्रौपदी ने डाल दिया वरमाला + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत +- राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत +- यह त्यौहार मनाया जाता है राम नवमी के दौरान +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत राम नवमी के दौरान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +Metrics: TP=0, FP=29, FN=1 + +--- Model Extractions --- +- व्यापक उपयोग उल्लेखनीय है भोजन +- भोजन property तटीय कर्नाटक +- व्यापक उपयोग property समुद्री भोजन +- व्यापक उपयोग property नारियल +- व्यापक उपयोग property नारियल तेल +- तटीय कर्नाटक में है भोजन +- भोजन property समुद्री भोजन +- भोजन property नारियल +- भोजन property नारियल तेल +- समुद्री भोजन property नारियल +- समुद्री भोजन property नारियल तेल +- नारियल property नारियल तेल +- व्यापक उपयोग property उल्लेखनीय +- तटीय कर्नाटक भोजन property समुद्री भोजन +- तटीय कर्नाटक भोजन property नारियल +- तटीय कर्नाटक भोजन property नारियल तेल +- समुद्री भोजन व्यापक उपयोग property नारियल +- समुद्री भोजन व्यापक उपयोग property नारियल तेल +- व्यापक उपयोग property समुद्री भोजन भोजन +- समुद्री भोजन व्यापक उपयोग property उल्लेखनीय +- नारियल व्यापक उपयोग property नारियल तेल +- व्यापक उपयोग property नारियल भोजन +- नारियल व्यापक उपयोग property उल्लेखनीय +- व्यापक उपयोग property नारियल तेल भोजन +- नारियल तेल व्यापक उपयोग property उल्लेखनीय +- समुद्री भोजन भोजन property नारियल +- समुद्री भोजन भोजन property नारियल तेल +- नारियल भोजन property नारियल तेल +- नारियल समुद्री भोजन property नारियल तेल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Status: not satisfied + Compensatory Extractions: + - Gold (a): समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + - Gold (b): तटीय --> property --> कर्नाटक [के] + Status: not satisfied + - Gold (c): भोजन में --> property --> [तटीय]{b} कर्नाटक के + Status: not satisfied + - Gold (d): नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +- उपेक्षित जीवविज्ञान उद्यान को भी property वहां + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: not satisfied + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- तारों कहते हैं श्रेणी +- श्रेणी property सिफियस चतुर्थ +- सिफियस चतुर्थ श्रेणी के तारों +- सिफीड कहते हैं सिफियस चतुर्थ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- यह प्रसिद्ध है नाम +- नाम property प्राथमिक विधि अध्यारोप + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- अधिक संपर्क रहा है चीन +- अधिक संपर्क रहा है जापान +- अधिक संपर्क property इस देश +- चीन से संपर्क रहा जापान +- चीन अधिक संपर्क रहा है जापान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- कश्यप ने पता लगाया शेष +- कुछ घड़ी शेष हैं आयु +- कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +- शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: not satisfied + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- मोमबत्तियाँ भी प्रयुक्त होती है खानों +- खानों property अभ्रक आदि +- अभ्रक आदि में खानों +- खानों प्रयुक्त होती है मोमबत्तियाँ भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: not satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=2, FP=7, FN=1 + +--- Model Extractions --- +- उन्होंने लिखे हैं कहानियाँ +- इस शैली लिखे हैं उन्होंने +- उन्होंने लिखे हैं उपन्यास +- इस शैली लिखे हैं कहानियाँ +- इस शैली लिखे हैं उपन्यास +- कहानियाँ उन्होंने लिखे हैं इस शैली +- कहानियाँ उन्होंने लिखे हैं उपन्यास +- इस शैली लिखे हैं उन्होंने उपन्यास +- कहानियाँ इस शैली लिखे हैं उपन्यास + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied but with a + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: not satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- वो मुख्य न्यायाधीश हैं पहले दलित +- वो property मुख्य न्यायाधीश + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वो --> हैं --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: पहले दलित --> property --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- उन्होंने पेश किया वार्षिक बजट +- 6 जुलाई 2009 पेश किया उन्होंने +- वार्षिक बजट property सरकार +- 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +- वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 +- उन्होंने 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: not satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: not satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with b + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: not satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह +- व्यापार निर्भर रहती है चाय +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार +- लगभग पूरी तरह स्थानीय आबादी निर्भर रहती है चाय के व्यापार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: not satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: not satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- उन्हें जाना जाता है नाम +- नाम property उत्कल मणि +- उन्हें जाना जाता है उत्कल मणि +- नाम उन्हें जाना जाता है उत्कल मणि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- कृपया देखें फ्रेंच फ्लेमिश +- अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +- कृपया देखें फ्रेंच फ्लेमिश अधिक जानकारी के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: not satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: not satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान +- ज्यादातर अंश property इस नदी +- इस नदी प्रवाहित होता है पाकिस्तान +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान इस नदी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: not satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=1, FP=7, FN=2 + +--- Model Extractions --- +- अंदरूनी भाग हिस्सा है लीबियाई रेगिस्तान +- अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह +- सीवा नख़लिस्तान स्थित है जिसमें +- सीवा नख़लिस्तान property ओएसिस +- मत्रूह मुहाफ़ज़ाह हिस्सा है लीबियाई रेगिस्तान +- लीबियाई रेगिस्तान हिस्सा है मत्रूह मुहाफ़ज़ाह +- सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +- जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: not satisfied + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: not satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +- त्वरित आर्थिक हो रही भारत +- राज्य राजधानी बंगलुरु शहर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: not satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- ये प्रसिद्ध हैं कहानियों के लिए +- ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +- कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Status: satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Status: not satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों + Status: not satisfied + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=3, FP=3, FN=0 + +--- Model Extractions --- +- एक कहानी संग्रह प्रकाशित हुए हैं उनका +- दो निबंध संग्रह प्रकाशित हुए हैं उनका +- उनका प्रकाशित हुए हैं एक कहानी संग्रह +- उनका प्रकाशित हुए हैं दो निबंध संग्रह +- एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +- दो निबंध संग्रह उनका प्रकाशित हुए हैं एक कहानी संग्रह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +- सुपद्य व्याकरण property 15 वीं शताब्दी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=6, FN=2 + +--- Model Extractions --- +- फ्लोरिडा राज्य स्थित हैं पश्चिम +- स्थित property अलबामा +- स्थित property दक्षिण +- अलबामा पश्चिम में स्थित है इसके +- फ्लोरिडा राज्य दक्षिण में स्थित है इसके +- अलबामा स्थित property दक्षिण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- यह क्रिकेट मैदान स्थित है होबार्ट शहर +- होबार्ट शहर property ऑस्ट्रेलिया +- यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +- होबार्ट शहर यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: not satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- निम्नलिखित सूचना नियम एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है +- निम्नलिखित सूचना नियम property एक सरलीकृत सारांश +- एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Compensatory Extractions: + - (a) योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- कुछ लोगों ने विभाजित किया है इसे +- दृष्टि विभाजित किया है इंडोचायनीज़ +- दृष्टि property विशेषता +- दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +- जंगलों विशेषता की दृष्टि +- इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों +- इंडोचायनीज़ दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +Metrics: TP=0, FP=6, FN=1 + +--- Model Extractions --- +- वर्षों दर्शाता है 5364 ईसा पूर्व +- वर्षों property जन्म से पूर्व +- जन्म से पूर्व property ईसा मसीह +- 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों property जन्म से पूर्व ईसा मसीह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + - Gold: ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- विश्वामित्र पहनाती हैं जयमाल +- सीता राम पहनाती हैं स्वरघोष के मध्य +- स्वरघोष के मध्य property वैदिक मन्त्रों +- विश्वामित्र पहनाती हैं वैदिक मन्त्रों +- सीता राम पहनाती हैं जयमाल +- जयमाल विश्वामित्र पहनाती हैं वैदिक मन्त्रों +- विश्वामित्र पहनाती हैं जयमाल सीता राम +- स्वरघोष के मध्य सीता राम पहनाती हैं जयमाल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=0, FP=8, FN=1 + +--- Model Extractions --- +- विभिन्न स्रोत बटे हुए हैं इस तथ्य +- इस तथ्य पड़ा आखिर एजिंकोर्ट स्क्वायर +- इस तथ्य पड़ा आखिर नाम +- इस तथ्य पड़ा आखिर किस वर्ष +- नाम property स्थान +- एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर नाम +- एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर किस वर्ष +- नाम इस तथ्य पड़ा आखिर किस वर्ष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: not satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +- विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +- प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +- प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=1, FP=9, FN=2 + +--- Model Extractions --- +- एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद +- एल्बम जारी किया गया 2006 के मध्य +- एकलों के बीच जारी किया गया एल्बम +- एल्बम जारी किया गया तीसरा कट +- तीसरा कट जारी किया गया 2006 के मध्य +- एक लंबे अंतराल के बाद एकलों के बीच जारी किया गया एल्बम +- 2006 के मध्य एल्बम जारी किया गया एकलों के बीच +- 2006 के मध्य एल्बम जारी किया गया तीसरा कट +- एकलों के बीच जारी किया गया एल्बम तीसरा कट +- एल्बम जारी किया गया तीसरा कट 2006 के मध्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- उस दौर कोई और मानक नहीं थे उनके सामने +- सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +- उन्हें करना पड़ी सब कामचलाऊ व्यवस्था + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + - Gold: [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + Status: not satisfied + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=0, FP=7, FN=1 + +--- Model Extractions --- +- बहुत से विकासों ने बेहतर कर दिया था परिणामों +- 1900 के आसपास बेहतर कर दिया था निमोनिया +- पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया +- 1900 के आसपास हुआ विकासों +- बहुत से विकासों ने बेहतर कर दिया परिणामों +- निमोनिया पीड़ित लोगों के लिये परिणामों +- 1900 के आसपास बेहतर कर दिया था निमोनिया पीड़ित लोगों के लिये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=0, FP=5, FN=2 + +--- Model Extractions --- +- प्रचार बहुत योगदान है पिता के समान +- बहुत योगदान property आपका भी +- प्रसार बहुत योगदान है पिता के समान +- सांप्रदायिक सिद्धांतों प्रचार प्रसार +- प्रचार बहुत योगदान है पिता के समान प्रसार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- मामले लेखबद्ध किये गये हैं उदाहरणार्थ +- संपर्क में भी लेखबद्ध किये गये हैं केवल 1 3 माह +- मामले property उत्पन्न होने +- मेसोथेलियोमा उत्पन्न होने के मामले +- उदाहरणार्थ लेखबद्ध किये गये हैं मामले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +Metrics: TP=0, FP=13, FN=2 + +--- Model Extractions --- +- प्राणी मिलते नहीं है इश एस +- वास्तव मिलते नहीं है प्राणी +- इश एस सामना होता है इश डू +- इश एस सामना होता है दो प्राणियों +- जहां मिलते नहीं है इश डू +- जहां मिलते नहीं है इश एस +- दो प्राणियों मिलते नहीं है प्राणी +- इश एस प्राणी मिलते नहीं है वास्तव +- प्राणी मिलते नहीं है इश एस जहां +- इश एस प्राणी मिलते नहीं है दो प्राणियों +- वास्तव मिलते नहीं है प्राणी दो प्राणियों +- इश डू इश एस सामना होता है दो प्राणियों +- इश डू जहां मिलते नहीं है इश एस + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इश -- डू में --> सामना होता है --> दो प्राणियों का + Status: not satisfied + - Gold: इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + Status: not satisfied + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +- उस तल होने चाहिये ये तीनों अक्ष +- ये तीनों अक्ष होने चाहिये उस तल +- एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: satisfied + - Gold: उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +Metrics: TP=1, FP=12, FN=3 + +--- Model Extractions --- +- पुराने तरीके बदल रहे हैं विकासशील देशों में +- अपने ही पड़ोस बदल रहे हैं तेजी +- पुराने तरीके property दूध विपणन +- विकासशील देशों में किसानों +- विकासशील देशों में दूध विपणन +- किसानों के दूध विपणन +- पुराने तरीके बदल रहे हैं विकासशील देशों +- पुराने तरीके बदल रहे हैं अपने ही पड़ोस +- विकासशील देशों में पुराने तरीके बदल रहे हैं विकासशील देशों +- विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस +- तेजी अपने ही पड़ोस बदल रहे हैं पुराने तरीके +- किसानों विकासशील देशों में दूध विपणन +- विकासशील देशों पुराने तरीके बदल रहे हैं अपने ही पड़ोस + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + Status: satisfied but with a,b + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Status: not satisfied + Compensatory Extractions: + - Gold (a): किसानों के --> property --> दूध विपणन के [पुराने] तरीके + Status: not satisfied + - Gold (b): [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + Status: not satisfied + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=6, FN=2 + +--- Model Extractions --- +- उन्होंने एक दीवाना था से शुरुआत +- शुरुआत property बोलीवुड करियर +- शुरुआत रिलीज़ किया गया जिसे +- शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +- उन्होंने शुरुआत एक दीवाना था +- जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + Status: not satisfied + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=0, FP=6, FN=1 + +--- Model Extractions --- +- बचाना property अत्यंत आवश्यक +- खाद्य एवं पेय पदार्थो बचाना मक्खियों +- इस रोग प्रतिषेधात्मक उपचार में भी है +- मक्खियों property खाद्य एवं पेय पदार्थो +- खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +- मक्खियों खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- यह संदर्भित करता है राष्ट्रीयता +- राष्ट्रीयता संदर्भित करता है गाड़ी निर्माता +- राष्ट्रीयता property प्रतिस्पर्धी टीम +- राष्ट्रीयता संदर्भित करता है चालक +- यह संदर्भित करता है राष्ट्रीयता +- यह संदर्भित करता है राष्ट्रीयता गाड़ी निर्माता +- यह संदर्भित करता है राष्ट्रीयता चालक +- गाड़ी निर्माता राष्ट्रीयता संदर्भित करता है चालक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: not satisfied + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: not satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +- सीधी बस सेवा property मुंबई +- सड़क मार्ग property सीधी बस सेवा +- मुंबई सीधी बस सेवा property सड़क मार्ग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- छपाई प्रयोग होता था ब्लाकों +- ब्लाकों जिसका निर्माण करते थे शिल्पी सुथार +- छपाई प्रयोग होता था लकड़ी के ब्लाकों +- शिल्पी सुथार निर्माण करते थे जिसका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: not satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- यह शब्द आता है सरकारी इकाई के लिये +- प्रयोग आता है सरकारी इकाई के लिये +- विधि बनाने वाली सरकारी इकाई के लिये +- यह शब्द प्रयोग में विधि +- यह शब्द आता है सरकारी इकाई के लिये प्रयोग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- यह स्थित है बलिया जिले +- बलिया जिले property उत्तर प्रदेश +- बलिया शहर स्थित है पश्चिम +- यह स्थित है उत्तर प्रदेश के बलिया जिले +- यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +- बलिया जिले यह स्थित है उत्तर प्रदेश के बलिया जिले +- बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +- उत्तर प्रदेश के बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: not satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: not satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: not satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=2, FP=4, FN=2 + +--- Model Extractions --- +- उन्होने हत्या नहीं करवाई उसेक बाद +- हत्या नहीं करवाई property पिता +- उन्होने नहीं करवाई हत्या +- उसेक बाद नहीं करवाई हत्या +- अन्य सम्राट किया करते थे हत्या +- उन्होने नहीं करवाई हत्या उसेक बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=14, FN=3 + +--- Model Extractions --- +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- निर्धारण property स्थिति +- प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं +- प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +- प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +- निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +- हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- स्थिति प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- हाइपरयूरीसेमिया होता है मूल कारण +- हाइपरयूरीसेमिया होता है वात रोग का मूल कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- प्रसिद्ध property यही कारण +- केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + Status: satisfied + - Gold: केरल --> प्रसिद्ध है --> विश्व भर में + Status: not satisfied + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=10, FN=1 + +--- Model Extractions --- +- उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे +- उदगम स्थान property इसका +- अंतगर्त हिमालय पर्वत के नीचे property सिरमोर राज्य +- इसका उदगम स्थान सिरमोर राज्य +- उदगम स्थान property ढलुवा भाग +- सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे +- ढलुवा भाग property अंतगर्त हिमालय पर्वत के नीचे +- इसका उदगम स्थान property ढलुवा भाग +- सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे property ढलुवा भाग +- उदगम स्थान property ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- दक्षिण भारत प्राधान्य था उन दिनों +- प्राधान्य property परम्परागत चित्रकला का ही +- दक्षिण भारत था प्राधान्य +- उन दिनों था प्राधान्य +- परम्परागत चित्रकला का ही था प्राधान्य +- दक्षिण भारत था प्राधान्य उन दिनों +- दक्षिण भारत था प्राधान्य परम्परागत चित्रकला का ही +- उन दिनों था प्राधान्य परम्परागत चित्रकला का ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + Status: not satisfied + - Gold: उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + Status: not satisfied + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- ये कहानियाँ हो सकती हैं किसी देश +- ये कहानियाँ हो सकती हैं समय +- किसी देश ये कहानियाँ हो सकती हैं समय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- प्रकृति आधारित निर्माण प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +- और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + Status: not satisfied + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- 2010 को दर्शन परिषद् सम्पन्न हुआ नाम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +Metrics: TP=1, FP=15, FN=4 + +--- Model Extractions --- +- यहीं देहांत हो गया सन 1533 +- अल्पायु देहांत हो गया दिन +- उनका देहांत हो गया दिन +- अल्पायु property 47 वर्ष +- दिन property रथयात्रा +- यहीं हुआ देहांत हो गया +- सन 1533 हुआ देहांत हो गया +- 47 वर्ष था देहांत हो गया +- अल्पायु हुआ देहांत हो गया +- रथयात्रा था दिन +- उनका था देहांत हो गया +- अल्पायु देहांत हो गया दिन उनका +- यहीं हुआ देहांत हो गया सन 1533 +- यहीं हुआ देहांत हो गया अल्पायु +- सन 1533 हुआ देहांत हो गया अल्पायु +- 47 वर्ष था देहांत हो गया उनका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यहीं पर --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: सन 1533 में --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: रथयात्रा के दिन --> देहांत हो गया --> उनका + Status: not satisfied + Compensatory Extractions: + - Gold (a): अल्पायु [में] --> property --> 47 वर्ष [की] + Status: satisfied + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- इसे कहा जाता है यह देखा जाता है अक्सर +- तालाब देखा जाता है अक्सर कहा जाता है +- इसे कहा जाता है पाण्सिल्क भी +- यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: not satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=2, FP=12, FN=0 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- 2008 बने वे +- तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +- तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +- 2008 बने तीसरे ब्रिटिश प्रबंधक +- जिन्होंने जीता यूरोपियन कप +- एकाधिक अवसर जीता यूरोपियन कप +- तीसरे ब्रिटिश प्रबंधक वे बने 2008 +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +- जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +- जिन्होंने जीता यूरोपियन कप तीसरे ब्रिटिश प्रबंधक +- जिन्होंने जीता यूरोपियन कप एकाधिक अवसर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मॉस जल रोक रखा जाता है मिट्टी +- मॉस रोक रखा जाता है जल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: not satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=0, FP=9, FN=1 + +--- Model Extractions --- +- वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि +- वर्तमान रूप property महाभारत +- महाभारत property भण्डार +- वर्तमान रूप property भण्डार +- प्राचीन इतिहास कथाओं उपदेशों आदि property भण्डार +- वर्तमान रूप property महाभारत भण्डार +- महाभारत property भण्डार वर्तमान रूप +- महाभारत property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि +- वर्तमान रूप property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: not satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_updated_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_updated_analysis.txt new file mode 100644 index 0000000..4eb0979 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_original_updated_analysis.txt @@ -0,0 +1,3616 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +- कार्यरूप जगत को सििद्ध होती है शक्तिरूपी माया की +- कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +- अखिल भारतीय पुलिस डयूटी मीट property 1958 से +- अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=13, FN=3 + +--- Model Extractions --- +- विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +- उपक्रमों द्वारा property विभागों +- विभागों property केन्द्रीय सरकार के +- भारत सरकार के property केन्द्रीय सरकार के +- केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का +- भारत सरकार के भेजे गए विवादित अंगुलि चिह्नों का +- विभागों परीक्षण करना विवादित अंगुलि चिह्नों का +- उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +- उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के +- उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +- उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +- विभागों property केन्द्रीय सरकार के भारत सरकार के +- केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- यह एजेंट मौजूद है बारह पुस्तकों +- गुप्त नाम से property 007 के +- बारह पुस्तकों property फ़्लेमिंग की +- दो लघुकथाओं में property फ़्लेमिंग की +- 007 के प्रसिद्ध गुप्त नाम से +- यह एजेंट मौजूद फ़्लेमिंग की +- फ़्लेमिंग की मौजूद बारह पुस्तकों +- फ़्लेमिंग की मौजूद दो लघुकथाओं में +- बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +- यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +- यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +- बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: satisfied but with a + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- उन्होंने की एक पत्रिका साधु शुरू +- 01 अगस्त 1907 को की उन्होंने +- एक पत्रिका साधु शुरू property अपनी +- एक पत्रिका साधु शुरू उन्होंने की 01 अगस्त 1907 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +Metrics: TP=3, FP=2, FN=0 + +--- Model Extractions --- +- नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +- कंपनी में लागू किया गया है नवीनतम वेतनमानों को +- 01 अप्रैल 2009 से लागू किया गया है कंपनी में +- नवीनतम वेतनमानों को लागू किया गया है कंपनी में +- 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + - Gold: कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल --> property --> 2009 से + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +Metrics: TP=4, FP=7, FN=1 + +--- Model Extractions --- +- सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +- सुनवाई property गोधरा ट्रेन कांड की +- गोधरा ट्रेन कांड की property 01 जून +- साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +- 01 जून हुआ गोधरा ट्रेन कांड की सुनवाई +- गोधरा ट्रेन कांड की शुरू हुई सुनवाई +- सुनवाई शुरू हुई अहमदाबाद के +- साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड की +- साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद के +- सुनवाई property गोधरा ट्रेन कांड की 01 जून +- गोधरा ट्रेन कांड की शुरू हुई सुनवाई अहमदाबाद के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + Status: satisfied but with b,c + - Gold: 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + Status: satisfied + - Gold (c): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + Status: satisfied but with b + - Gold: 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + Status: not satisfied + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=3, FP=5, FN=0 + +--- Model Extractions --- +- वे नियुक्त हुई न्यायाधीश +- 06 अक्टूबर 1989 को नियुक्त हुई वे +- न्यायाधीश property सर्वोच्च न्यायालय की +- 06 अक्टूबर 1989 को हुआ नियुक्त हुई +- वे नियुक्त हुई सर्वोच्च न्यायालय की +- न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +- न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय की +- 06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +- 06 प्रतिशत थे ऐसे लोग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +- 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +- 1 अक्टूबर 1854 को हुआ जारी किया गया +- पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + Status: satisfied + - Gold (b): पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + Status: not satisfied + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=2, FP=9, FN=2 + +--- Model Extractions --- +- आंध्र ने पाया कर्नूल को +- दर्जा पाया 1 अक्टूबर 1953 को +- दर्जा property राज्य का +- आंध्र ने पाया राज्य का दर्जा +- कर्नूल को पाया राजधानी के साथ +- आंध्र ने पाया 1 अक्टूबर 1953 को +- कर्नूल को आंध्र ने पाया राज्य का दर्जा +- आंध्र ने पाया कर्नूल को राजधानी के साथ +- कर्नूल को आंध्र ने पाया 1 अक्टूबर 1953 को +- दर्जा पाया 1 अक्टूबर 1953 को आंध्र ने +- राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: satisfied but with a,c + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +Metrics: TP=1, FP=11, FN=1 + +--- Model Extractions --- +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +- ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +- 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न +- न्यूजीलैंड जारी किया गया दूसरा सीज़न +- ऑस्ट्रेलिया में जारी किया गया दूसरा सीज़न +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +- 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न न्यूजीलैंड +- 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +- न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + Status: satisfied + - Gold (b): [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + - Gold (c): दूसरा --> property --> सीज़न + Status: not satisfied + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर ने लिया स्थान +- 1 अक्टूबर को लिया रॉबर्ट आइगर ने +- स्थान property माइकल आइजनर का +- स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=1, FP=7, FN=1 + +--- Model Extractions --- +- यह देश आजाद हुआ 1 अक्टूबर 1960 को +- शासन से आजाद हुआ इंग्लैंड के +- 1 अक्टूबर 1960 को हुआ आजाद हुआ +- यह देश आजाद हुआ इंग्लैंड के शासन से +- यह देश आजाद हुआ इंग्लैंड से +- 1 अक्टूबर 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +- 1 अक्टूबर 1960 को यह देश आजाद हुआ इंग्लैंड से +- इंग्लैंड के शासन से यह देश आजाद हुआ इंग्लैंड से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 में हुआ भेज दिया गया +- चन्द्रसिंह को भेज दिया गया फ्रांस +- चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +- अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: satisfied but with a + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: satisfied but with a|AND|satisfied but with a + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +Metrics: TP=4, FP=4, FN=0 + +--- Model Extractions --- +- इसे घोषित किया गया 1 अप्रैल 1946 को +- गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +- इसके पहले बने घोषित किया गया +- 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +- इसे घोषित किया गया स्वायत्तशासी प्रान्त +- गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +- इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +- मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + Status: satisfied but with a + - Gold: गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + Status: satisfied + - Gold (b): स्वायत्तशासी --> property --> प्रान्त + Status: not satisfied + - Gold (c): इसके पहले --> property --> मुख्य मन्त्री + Status: not satisfied + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +- एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही property भारत के +- हिन्दी प्रचार सभा थी एक आन्दोलन +- एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +- चेहरे पर दिखाई पड़ती थी कर्मा के +- बाल्यकाल से ही दिखाई पड़ती थी कर्मा +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Status: not satisfied + Compensatory Extractions: + - Gold (a): बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + Status: satisfied + - Gold (b): कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + Status: satisfied + - Gold (c): एक अनूठी --> property --> आभा + Status: not satisfied + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- सोनू बन चुके हैं एक प्रमुख हस्ती +- तब से बन चुके हैं अब तक +- भारतीय संगीत जगत में बन चुके हैं अब तक +- सोनू बन चुके हैं भारतीय संगीत जगत में +- एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत में +- तब से बन चुके हैं अब तक भारतीय संगीत जगत में +- अब तक भारतीय संगीत जगत में बन चुके हैं सोनू + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + - कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Compensatory Extractions: + - (a) [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + - (b) सबसे अधिक --> property --> प्रयोगनीय + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- सोवियत दस्तों ने आज़ाद कराया प्राग को +- क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +- प्राग को property राजधानी +- राजधानी property चेकोस्लोवाकिया की +- बर्लिन पर आज़ाद कराया सोवियत दस्तों ने +- सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +- चेकोस्लोवाकिया की राजधानी प्राग को +- प्राग को सोवियत दस्तों ने आज़ाद कराया बर्लिन पर +- प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +- क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर सोवियत दस्तों ने +- प्राग को property राजधानी चेकोस्लोवाकिया की +- बर्लिन पर आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: satisfied + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: satisfied but with b + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- वे प्रथम भारतीय हैं क्षेत्र में +- पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +- योग में शिक्षा के +- शिक्षा के क्षेत्र में योग +- राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान +- वे है प्रथम भारतीय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- वित्तीय सहायता भी दी जाती है पूरी करने तक +- सभी बच्चों को पूरी करने तक दी जाती है +- पूरी करने तक दी जाती है पढ़ाई स्कूल की +- सभी बच्चों को दी जाती है वित्तीय सहायता भी +- पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +Metrics: TP=2, FP=1, FN=1 + +--- Model Extractions --- +- यह स्थान दर्शनीय केन्द्र है आज भी +- दर्शनीय केन्द्र property लोगों के लिए +- यह स्थान है दर्शनीय केन्द्र + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + Status: not satisfied + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Status: satisfied + Compensatory Extractions: + - Gold (a): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + Status: satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> property --> केन्द्र + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): लोगों के लिए --> property --> क्षेत्र के + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +- वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +- पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +- इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +- इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +- आत्मा property शब्द की +- मैं करता हूं उपासना + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + Status: satisfied + - Gold: [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Status: not satisfied + Compensatory Extractions: + - Gold (a): शब्द की --> property --> आत्मा [समझकर ही] + Status: satisfied + - Gold (b): इस श्रेष्ठ --> property --> तत्त्व की + Status: not satisfied + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=1, FP=8, FN=1 + +--- Model Extractions --- +- उल्लेख मिलता है पांच नदियों में से +- ऋग्वेद में मिलता है उल्लेख +- हिमाचल प्रदेश में बहने वाली पांच नदियों में से +- उल्लेख property चार का +- हिमाचल प्रदेश में बहने वाली पांच नदियों +- पांच नदियों में से चार का +- चार का उल्लेख ऋग्वेद में +- पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +- पांच नदियों में से हिमाचल प्रदेश में बहने वाली पांच नदियों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +- उन्होंने इंकार कर दिया बच्चे को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=2, FP=3, FN=0 + +--- Model Extractions --- +- तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +- तुलनात्मक अध्ययन property शिक्षा का +- शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से +- तुलनात्मक अध्ययन जुड़ा है शिक्षा का +- तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से शिक्षा का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- 9110 भारतीय रेल द्वारा संचालित +- गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- यह शहर प्रमुख हिल स्टेशन है वर्तमान में +- प्रमुख हिल स्टेशन property पश्चिम बंगाल का +- यह शहर है प्रमुख हिल स्टेशन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: satisfied but with a + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: satisfied but with b,a + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=6, FP=18, FN=0 + +--- Model Extractions --- +- सिलकोट एक गाँव है गंगोलीहाट तहसील में +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +- एक गाँव property पिथोरागढ जिले का +- उत्तराखण्ड राज्य के अन्तर्गत property भारत के +- पिथोरागढ जिले का property कुमाऊँ मण्डल के +- सिलकोट है एक गाँव +- सिलकोट में गंगोलीहाट तहसील +- सिलकोट में भारत +- सिलकोट में उत्तराखण्ड राज्य +- सिलकोट में कुमाऊँ मण्डल +- सिलकोट में पिथोरागढ जिले +- उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +- एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +- गंगोलीहाट तहसील सिलकोट में भारत +- गंगोलीहाट तहसील सिलकोट में उत्तराखण्ड राज्य +- गंगोलीहाट तहसील सिलकोट में कुमाऊँ मण्डल +- गंगोलीहाट तहसील सिलकोट में पिथोरागढ जिले +- भारत सिलकोट में उत्तराखण्ड राज्य +- भारत सिलकोट में कुमाऊँ मण्डल +- भारत सिलकोट में पिथोरागढ जिले +- उत्तराखण्ड राज्य सिलकोट में कुमाऊँ मण्डल +- उत्तराखण्ड राज्य सिलकोट में पिथोरागढ जिले +- कुमाऊँ मण्डल सिलकोट में पिथोरागढ जिले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: satisfied but with a + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: satisfied but with b + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +- तकनीकी केंद्र को property एयर लाइन के +- एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=4, FP=13, FN=1 + +--- Model Extractions --- +- दोनों मामले पेश हुए सर लुइस शर्ट +- सर लुइस शर्ट property मुख्य न्यायाधीश +- विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +- चीफ कोर्ट के पेश हुए दोनों मामले +- मुख्य न्यायाधीश पेश हुए दोनों मामले +- सर लुइस शर्ट पेश हुए दोनों मामले +- विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +- सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +- सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +- सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +- सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +- चीफ कोर्ट के पेश हुए दोनों मामले मुख्य न्यायाधीश +- चीफ कोर्ट के पेश हुए दोनों मामले सर लुइस शर्ट +- चीफ कोर्ट के पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +- मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +- सर लुइस शर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +- सर लुइस शर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: satisfied but with c|AND|satisfied but with c + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: satisfied but with d + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=1, FP=8, FN=1 + +--- Model Extractions --- +- मृत्यु हो गई किसी बीमारी की वजह से +- 28 नवम्बर 1694 को हो गई मृत्यु +- मृत्यु property बाशो की +- किसी बीमारी की वजह से हो गई मृत्यु +- बाशो की हो गई मृत्यु +- मृत्यु हो गई 28 नवम्बर 1694 को +- किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +- किसी बीमारी की वजह से मृत्यु हो गई बाशो की +- 28 नवम्बर 1694 को हो गई मृत्यु बाशो की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- विक्रम ने सोचा एक हल +- तो नहीं हुआ कोई मतैक्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- सन 1696 में मुकाबला हुआ फिर एक बार +- शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +- सन 1696 में हुआ मुकाबला + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=3, FP=11, FN=1 + +--- Model Extractions --- +- मर्लगोंड एक गाँव है कुभीर मण्डल में +- एक गाँव property अदिलाबादु जिले का +- अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +- आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +- मर्लगोंड है एक गाँव +- मर्लगोंड में कुभीर मण्डल +- मर्लगोंड का है आन्ध्रप्रदेश राज्य के अन्तर्गत +- मर्लगोंड का है अदिलाबादु जिले +- मर्लगोंड का है भारत के +- एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +- अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +- आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है अदिलाबादु जिले +- आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है भारत के +- अदिलाबादु जिले मर्लगोंड का है भारत के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=2, FP=6, FN=1 + +--- Model Extractions --- +- अनेक ग्रन्थ लिखे गये बाद में +- दर्शन पक्ष पर लिखे गये व्याकरण के +- बाद में लिखे गये व्याकरण के +- बाद में लिखे गये दर्शन पक्ष पर +- बाद में लिखे गये अनेक ग्रन्थ +- अनेक ग्रन्थ लिखे गये बाद में व्याकरण के +- अनेक ग्रन्थ लिखे गये बाद में दर्शन पक्ष पर +- दर्शन पक्ष पर लिखे गये व्याकरण के बाद में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- निदेशक बने 1975 में +- इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +- 1975 में हुआ इलाहाबाद में +- इलाहाबाद में हुआ नवनिर्मित मेहता अनुसंधान संस्थान में +- 1975 में हुआ इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- नाम रखा गया नाम पर +- नाम पर property उनके +- नाम property इस जगह का +- उनके रखा गया नाम पर +- नाम रखा गया नाम पर उनके + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: not satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं रहना +- इस आपाधापी से दूर रहना घर पर ही +- घर पर ही property अपने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: satisfied but with a + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied but with b,a + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- मार्च 2001 में वापसी हुई फिर एक बार +- अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +- अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +- मार्च 2001 में हुआ वापसी हुई फिर +- अमरीका के वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप में +- उनकी अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर अमरीका के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: satisfied but with a + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +- इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +- सर वाईकर के द्वारा आधारशिला रखी गयी थी इसकी रचना की +- सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Status: not satisfied + Compensatory Extractions: + - Gold (a): आधारशिला --> property --> इसकी रचना की + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: satisfied + - Gold: [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: satisfied + Compensatory Extractions: + - Gold (a): इसकी --> property --> रचना की + Status: not satisfied + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +Metrics: TP=2, FP=3, FN=0 + +--- Model Extractions --- +- वह संपर्क में है इस तकनीक के लिए +- संपर्क में property विभिन्न टेलीविजन कंपनियों से +- वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +- विभिन्न टेलीविजन कंपनियों से के लिए इस तकनीक +- इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + Status: satisfied + - Gold: इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + Status: satisfied + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +- सन 1961 में सम्मानित किया गया था पद्म भूषण से +- क्षेत्र में property चिकित्सा विज्ञान के +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +- त्रिदेवनाथ बैनर्जी को सम्मानित किया गया सन 1961 में +- त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +- सन 1961 में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=4, FP=2, FN=0 + +--- Model Extractions --- +- उन्होने संगीत रचना की मराठी के अतिरिक्त +- हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +- मराठी के अतिरिक्त संगीत रचना की उन्होने +- उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +- मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +- हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने मराठी के अतिरिक्त + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +- औद्योगिक रूप से property काइटिन का +- काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +- औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + Status: satisfied + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +Metrics: TP=3, FP=4, FN=0 + +--- Model Extractions --- +- सभी पर्व property हिंदूओं +- सभी पर्व property मुस्लिमों के +- हिंदूओं मनाए जाते हैं पर्व +- मुस्लिमों के मनाए जाते हैं पर्व +- सभी पर्व मनाए जाते हैं मिलजुल कर +- हिंदूओं सभी पर्व property मुस्लिमों के +- हिंदूओं मनाए जाते हैं पर्व मुस्लिमों के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + Status: satisfied but with b + - Gold (b): [और] मुस्लिमों के --> property --> सभी पर्व + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Status: not satisfied + Compensatory Extractions: + - Gold (a): मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + Status: satisfied + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=8, FP=15, FN=0 + +--- Model Extractions --- +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +- 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका 20 जुलाई 2012 को +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +- संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +- 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +- संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को कनाडा में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: satisfied but with a|AND|satisfied but with a + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: satisfied but with c + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: satisfied but with d + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- यह लगाया जाता है हर साल +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +- यह लगाया जाता है जर्मनी के +- हर साल यह लगाया जाता है जर्मनी के +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +Metrics: TP=3, FP=0, FN=0 + +--- Model Extractions --- +- द्रौपदी ने वरमाला डाल दिया गले में +- गले में property अर्जुन के +- द्रौपदी ने डाल दिया वरमाला + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +- राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +- यह त्यौहार मनाया जाता है राम नवमी के दौरान +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +Metrics: TP=1, FP=22, FN=1 + +--- Model Extractions --- +- व्यापक उपयोग उल्लेखनीय है भोजन में +- भोजन में property तटीय कर्नाटक के +- व्यापक उपयोग property समुद्री भोजन +- व्यापक उपयोग property नारियल +- व्यापक उपयोग property नारियल तेल का +- तटीय कर्नाटक के में है भोजन +- भोजन में है समुद्री भोजन +- भोजन में है नारियल +- भोजन में है नारियल तेल का +- समुद्री भोजन है नारियल +- समुद्री भोजन है नारियल तेल का +- नारियल है नारियल तेल का +- व्यापक उपयोग है उल्लेखनीय +- समुद्री भोजन व्यापक उपयोग property नारियल +- समुद्री भोजन व्यापक उपयोग property नारियल तेल का +- नारियल व्यापक उपयोग property नारियल तेल का +- समुद्री भोजन भोजन में है नारियल +- समुद्री भोजन भोजन में है नारियल तेल का +- नारियल भोजन में है नारियल तेल का +- भोजन में है नारियल समुद्री भोजन +- नारियल समुद्री भोजन है भोजन में +- नारियल समुद्री भोजन है नारियल तेल का +- नारियल तेल का नारियल है भोजन में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Status: not satisfied + Compensatory Extractions: + - Gold (a): समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + - Gold (b): तटीय --> property --> कर्नाटक [के] + Status: not satisfied + - Gold (c): भोजन में --> property --> [तटीय]{b} कर्नाटक के + Status: satisfied + - Gold (d): नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +- उपेक्षित जीवविज्ञान उद्यान को भी property वहां के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- तारों को कहते हैं श्रेणी के +- श्रेणी के property सिफियस चतुर्थ की +- सिफियस चतुर्थ की श्रेणी के तारों को +- सिफीड कहते हैं सिफियस चतुर्थ की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- यह प्रसिद्ध है नाम से +- नाम से property प्राथमिक विधि अध्यारोप के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- अधिक संपर्क रहा है चीन +- अधिक संपर्क रहा है जापान से +- अधिक संपर्क property इस देश का +- चीन से संपर्क रहा जापान +- चीन अधिक संपर्क रहा है जापान से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=1, FP=3, FN=2 + +--- Model Extractions --- +- कश्यप ने पता लगाया शेष +- कुछ घड़ी शेष हैं आयु में +- कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +- शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: satisfied but with b + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- मोमबत्तियाँ भी प्रयुक्त होती है खानों में +- खानों में property अभ्रक आदि की +- खानों में में मोमबत्तियाँ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: satisfied but with a |OR| satisfied but with a + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=5, FP=4, FN=0 + +--- Model Extractions --- +- उन्होंने लिखे हैं कहानियाँ +- इस शैली में लिखे हैं उन्होंने +- उन्होंने लिखे हैं उपन्यास +- इस शैली में लिखे हैं कहानियाँ +- इस शैली में लिखे हैं उपन्यास +- कहानियाँ उन्होंने लिखे हैं इस शैली में +- कहानियाँ उन्होंने लिखे हैं उपन्यास +- इस शैली में लिखे हैं उन्होंने उपन्यास +- कहानियाँ इस शैली में लिखे हैं उपन्यास + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied but with a + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied but with a + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- वो मुख्य न्यायाधीश हैं पहले दलित +- वो है मुख्य न्यायाधीश + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वो --> हैं --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: पहले दलित --> property --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=3, FP=3, FN=0 + +--- Model Extractions --- +- उन्होंने पेश किया वार्षिक बजट +- 6 जुलाई 2009 को पेश किया उन्होंने +- वार्षिक बजट property सरकार का +- 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +- वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +- उन्होंने 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with b + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=3, FP=1, FN=0 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +- व्यापार पर निर्भर रहती है चाय के +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +- लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- उन्हें जाना जाता है नाम से +- नाम से property उत्कल मणि के +- उन्हें जाना जाता है उत्कल मणि के +- नाम से उन्हें जाना जाता है उत्कल मणि के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- कृपया देखें फ्रेंच फ्लेमिश को +- अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +- कृपया देखें फ्रेंच फ्लेमिश को अधिक जानकारी के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +- ज्यादातर अंश property इस नदी का +- इस नदी का प्रवाहित होता है पाकिस्तान में +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=3, FP=5, FN=1 + +--- Model Extractions --- +- अंदरूनी भाग हिस्सा है लीबियाई रेगिस्तान का +- अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +- सीवा नख़लिस्तान स्थित है जिसमें +- सीवा नख़लिस्तान property ओएसिस +- मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +- लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +- सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का +- जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: satisfied but with a + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +- त्वरित आर्थिक हो रही भारत में +- राज्य की राजधानी बंगलुरु शहर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: not satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- ये प्रसिद्ध हैं कहानियों के लिए +- ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +- कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Status: satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Status: not satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों + Status: not satisfied + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=3, FP=2, FN=0 + +--- Model Extractions --- +- एक कहानी संग्रह प्रकाशित हुए हैं उनका +- दो निबंध संग्रह प्रकाशित हुए हैं उनका +- उनका प्रकाशित हुए हैं एक कहानी संग्रह +- उनका प्रकाशित हुए हैं दो निबंध संग्रह +- एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +- सुपद्य व्याकरण property 15 वीं शताब्दी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=6, FN=2 + +--- Model Extractions --- +- फ्लोरिडा राज्य स्थित हैं पश्चिम में +- स्थित property अलबामा +- स्थित property दक्षिण में +- अलबामा पश्चिम में स्थित है इसके +- फ्लोरिडा राज्य दक्षिण में स्थित है इसके +- अलबामा स्थित property दक्षिण में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- यह क्रिकेट मैदान स्थित है होबार्ट शहर में +- होबार्ट शहर में property ऑस्ट्रेलिया के +- यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +- होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है +- निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +- एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Status: satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Compensatory Extractions: + - (a) योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- कुछ लोगों ने विभाजित किया है इसे +- दृष्टि से विभाजित किया है इंडोचायनीज़ +- दृष्टि से property विशेषता की +- दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +- जंगलों की विशेषता की दृष्टि से +- इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +- इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- वर्षों को दर्शाता है 5364 ईसा पूर्व +- वर्षों को property जन्म से पूर्व के +- जन्म से पूर्व के property ईसा मसीह के +- 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों को property जन्म से पूर्व के ईसा मसीह के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + - Gold: ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: satisfied + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- विश्वामित्र द्वारा पहनाती हैं जयमाल +- सीता राम को पहनाती हैं स्वरघोष के मध्य +- स्वरघोष के मध्य property वैदिक मन्त्रों के +- विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +- सीता राम को पहनाती हैं जयमाल +- जयमाल विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +- विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +- स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=1, FP=7, FN=1 + +--- Model Extractions --- +- विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +- इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +- इस तथ्य पर पड़ा आखिर नाम +- इस तथ्य पर पड़ा आखिर किस वर्ष में +- नाम property स्थान का +- एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +- एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +- नाम इस तथ्य पर पड़ा आखिर किस वर्ष में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +- विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +- प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +- प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=2, FP=7, FN=2 + +--- Model Extractions --- +- एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद +- एल्बम से जारी किया गया 2006 के मध्य में +- एकलों के बीच जारी किया गया एल्बम से +- एल्बम से जारी किया गया तीसरा कट +- तीसरा कट जारी किया गया 2006 के मध्य में +- एक लंबे अंतराल के बाद एकलों के बीच जारी किया गया एल्बम से +- 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +- 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +- एकलों के बीच जारी किया गया एल्बम से तीसरा कट + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: satisfied but with a + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- उस दौर में कोई और मानक नहीं थे उनके सामने +- सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +- उन्हें करना पड़ी सब कामचलाऊ व्यवस्था + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + - Gold: [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + Status: satisfied + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- बहुत से विकासों ने बेहतर कर दिया था परिणामों को +- 1900 के आसपास बेहतर कर दिया था निमोनिया से +- पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +- 1900 के आसपास हुआ विकासों +- बहुत से विकासों ने बेहतर कर दिया परिणामों को +- निमोनिया से पीड़ित लोगों के लिये परिणामों को +- 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- प्रचार बहुत योगदान है पिता के समान +- बहुत योगदान property आपका भी +- प्रसार में बहुत योगदान है पिता के समान +- सांप्रदायिक सिद्धांतों के प्रचार प्रसार में +- सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों के +- सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों के +- प्रचार बहुत योगदान है पिता के समान प्रसार में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- मामले लेखबद्ध किये गये हैं उदाहरणार्थ +- संपर्क में भी लेखबद्ध किये गये हैं केवल 1 3 माह के +- मामले property उत्पन्न होने के +- मेसोथेलियोमा उत्पन्न होने के मामले +- उदाहरणार्थ लेखबद्ध किये गये हैं मामले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +Metrics: TP=0, FP=13, FN=2 + +--- Model Extractions --- +- प्राणी मिलते नहीं है इश एस में +- वास्तव में मिलते नहीं है प्राणी +- इश एस में सामना होता है इश डू में +- इश एस में सामना होता है दो प्राणियों का +- जहां मिलते नहीं है इश डू में +- जहां मिलते नहीं है इश एस में +- दो प्राणियों का मिलते नहीं है प्राणी +- इश एस में प्राणी मिलते नहीं है वास्तव में +- प्राणी मिलते नहीं है इश एस में जहां +- इश एस में प्राणी मिलते नहीं है दो प्राणियों का +- वास्तव में मिलते नहीं है प्राणी दो प्राणियों का +- इश डू में इश एस में सामना होता है दो प्राणियों का +- इश डू में जहां मिलते नहीं है इश एस में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इश -- डू में --> सामना होता है --> दो प्राणियों का + Status: not satisfied + - Gold: इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + Status: not satisfied + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +- उस तल में होने चाहिये ये तीनों अक्ष +- ये तीनों अक्ष होने चाहिये उस तल में +- एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: satisfied + - Gold: उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +Metrics: TP=4, FP=9, FN=2 + +--- Model Extractions --- +- पुराने तरीके बदल रहे हैं विकासशील देशों में +- अपने ही पड़ोस में बदल रहे हैं तेजी से +- पुराने तरीके property दूध विपणन के +- विकासशील देशों में में किसानों के +- विकासशील देशों में में दूध विपणन के +- किसानों के के दूध विपणन के +- पुराने तरीके बदल रहे हैं विकासशील देशों में +- पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +- विकासशील देशों में पुराने तरीके बदल रहे हैं विकासशील देशों में +- विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +- तेजी से अपने ही पड़ोस में बदल रहे हैं पुराने तरीके +- किसानों के विकासशील देशों में में दूध विपणन के +- विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + Status: satisfied but with a,b|AND|satisfied but with a,b + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): किसानों के --> property --> दूध विपणन के [पुराने] तरीके + Status: not satisfied + - Gold (b): [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + Status: satisfied + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=6, FN=2 + +--- Model Extractions --- +- उन्होंने एक दीवाना था से शुरुआत +- शुरुआत property बोलीवुड करियर की +- शुरुआत रिलीज़ किया गया जिसे +- शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +- उन्होंने शुरुआत एक दीवाना था से +- जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + Status: not satisfied + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- बचाना है अत्यंत आवश्यक +- खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +- इस रोग के प्रतिषेधात्मक उपचार में भी है +- मक्खियों से है खाद्य एवं पेय पदार्थो को +- खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=3, FP=5, FN=1 + +--- Model Extractions --- +- यह संदर्भित करता है राष्ट्रीयता को +- राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +- राष्ट्रीयता को property प्रतिस्पर्धी टीम की +- राष्ट्रीयता को संदर्भित करता है चालक की +- यह संदर्भित करता है राष्ट्रीयता को +- यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +- यह संदर्भित करता है राष्ट्रीयता को चालक की +- गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: satisfied but with a|AND|satisfied but with a + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +- सीधी बस सेवा property मुंबई से +- सड़क मार्ग है सीधी बस सेवा +- सीधी बस सेवा है मुंबई से +- सड़क मार्ग है सीधी बस सेवा मुंबई से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- छपाई में प्रयोग होता था ब्लाकों का +- ब्लाकों का जिसका निर्माण करते थे शिल्पी सुथार +- छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +- शिल्पी सुथार निर्माण करते थे जिसका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- यह शब्द आता है सरकारी इकाई के लिये +- प्रयोग में आता है सरकारी इकाई के लिये +- विधि बनाने वाली सरकारी इकाई के लिये +- यह शब्द प्रयोग में विधि +- यह शब्द आता है सरकारी इकाई के लिये प्रयोग में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=5, FP=3, FN=0 + +--- Model Extractions --- +- यह स्थित है बलिया जिले में +- बलिया जिले में property उत्तर प्रदेश के +- बलिया शहर से स्थित है पश्चिम में +- यह स्थित है उत्तर प्रदेश के बलिया जिले में +- यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +- बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=2, FP=4, FN=2 + +--- Model Extractions --- +- उन्होने हत्या नहीं करवाई उसेक बाद +- हत्या नहीं करवाई property पिता की +- उन्होने नहीं करवाई हत्या +- उसेक बाद नहीं करवाई हत्या +- अन्य सम्राट किया करते थे हत्या +- उन्होने नहीं करवाई हत्या उसेक बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=14, FN=3 + +--- Model Extractions --- +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- निर्धारण property स्थिति का +- प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +- प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +- प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +- निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +- हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- हाइपरयूरीसेमिया होता है मूल कारण +- हाइपरयूरीसेमिया होता है वात रोग का मूल कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- प्रसिद्ध है यही कारण +- केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + Status: satisfied + - Gold: केरल --> प्रसिद्ध है --> विश्व भर में + Status: not satisfied + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=8, FN=1 + +--- Model Extractions --- +- उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +- उदगम स्थान property इसका +- अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +- इसका उदगम स्थान सिरमोर राज्य के +- उदगम स्थान है ढलुवा भाग +- सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +- ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +- उदगम स्थान है ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +Metrics: TP=1, FP=7, FN=1 + +--- Model Extractions --- +- दक्षिण भारत में प्राधान्य था उन दिनों +- प्राधान्य property परम्परागत चित्रकला का ही +- दक्षिण भारत में था प्राधान्य +- उन दिनों था प्राधान्य +- परम्परागत चित्रकला का ही था प्राधान्य +- दक्षिण भारत में था प्राधान्य उन दिनों +- दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +- उन दिनों था प्राधान्य परम्परागत चित्रकला का ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + Status: not satisfied + - Gold: उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + Status: satisfied + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- ये कहानियाँ हो सकती हैं किसी देश +- ये कहानियाँ हो सकती हैं समय की +- किसी देश ये कहानियाँ हो सकती हैं समय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +- और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + Status: satisfied + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- 2010 को दर्शन परिषद् के सम्पन्न हुआ नाम से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +Metrics: TP=1, FP=15, FN=4 + +--- Model Extractions --- +- यहीं पर देहांत हो गया सन 1533 में +- अल्पायु में देहांत हो गया दिन +- उनका देहांत हो गया दिन +- अल्पायु में property 47 वर्ष की +- दिन property रथयात्रा के +- यहीं पर हुआ देहांत हो गया +- सन 1533 में हुआ देहांत हो गया +- 47 वर्ष की था देहांत हो गया +- अल्पायु में हुआ देहांत हो गया +- रथयात्रा के था दिन +- उनका था देहांत हो गया +- अल्पायु में देहांत हो गया दिन उनका +- यहीं पर हुआ देहांत हो गया सन 1533 में +- यहीं पर हुआ देहांत हो गया अल्पायु में +- सन 1533 में हुआ देहांत हो गया अल्पायु में +- 47 वर्ष की था देहांत हो गया उनका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यहीं पर --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: सन 1533 में --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: रथयात्रा के दिन --> देहांत हो गया --> उनका + Status: not satisfied + Compensatory Extractions: + - Gold (a): अल्पायु [में] --> property --> 47 वर्ष [की] + Status: satisfied + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- इसे कहा जाता है यह देखा जाता है अक्सर +- तालाब में देखा जाता है अक्सर कहा जाता है +- इसे कहा जाता है पाण्सिल्क भी +- यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: not satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=2, FP=11, FN=0 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- 2008 में बने वे +- तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +- तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- 2008 में बने तीसरे ब्रिटिश प्रबंधक +- जिन्होंने जीता यूरोपियन कप +- एकाधिक अवसर पर जीता यूरोपियन कप +- तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- जिन्होंने जीता यूरोपियन कप एकाधिक अवसर पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- मॉस से जल रोक रखा जाता है मिट्टी में +- मॉस से रोक रखा जाता है जल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=1, FP=7, FN=1 + +--- Model Extractions --- +- वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +- वर्तमान रूप property महाभारत का +- महाभारत का है भण्डार +- वर्तमान रूप है भण्डार +- प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +- महाभारत का है भण्डार वर्तमान रूप +- महाभारत का है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का +- वर्तमान रूप है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info_analysis.txt new file mode 100644 index 0000000..d817d60 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info_analysis.txt @@ -0,0 +1,3604 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=1, FP=3, FN=0 + +--- Model Extractions --- +- शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +- कार्यरूप जगत को देखकर ही शक्तिरूपी माया की +- शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +- कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +- अखिल भारतीय पुलिस डयूटी मीट property 1958 से +- अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=12, FN=3 + +--- Model Extractions --- +- विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +- उपक्रमों द्वारा property विभागों +- विभागों property केन्द्रीय सरकार के +- भारत सरकार के property केन्द्रीय सरकार के +- केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का +- भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +- विवादित अंगुलि चिह्नों का परीक्षण करना केन्द्रीय सरकार के विभागों एवं +- उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के विभागों एवं +- उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के उपक्रमों द्वारा +- उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +- विभागों property केन्द्रीय सरकार के भारत सरकार के +- केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के उपक्रमों द्वारा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- यह एजेंट मौजूद है बारह पुस्तकों +- गुप्त नाम से property 007 के +- बारह पुस्तकों property फ़्लेमिंग की +- दो लघुकथाओं में property फ़्लेमिंग की +- 007 के गुप्त नाम से प्रसिद्ध +- यह एजेंट मौजूद फ़्लेमिंग की +- फ़्लेमिंग की मौजूद बारह पुस्तकों +- फ़्लेमिंग की मौजूद दो लघुकथाओं में +- बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +- यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +- यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +- बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: satisfied but with a + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- उन्होंने की एक पत्रिका साधु शुरू +- 01 अगस्त 1907 को की उन्होंने +- एक पत्रिका साधु शुरू property अपनी +- 01 अगस्त 1907 को शुरू की पत्रिका +- एक पत्रिका साधु शुरू उन्होंने की 01 अगस्त 1907 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +Metrics: TP=2, FP=4, FN=0 + +--- Model Extractions --- +- नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +- कंपनी में लागू किया गया है नवीनतम वेतनमानों को +- 01 अप्रैल 2009 से लागू किया गया कंपनी में +- कंपनी में लागू किया गया नवीनतम वेतनमानों को +- 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +- 01 अप्रैल 2009 से लागू किया गया कंपनी में नवीनतम वेतनमानों को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + - Gold: कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल --> property --> 2009 से + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +Metrics: TP=3, FP=3, FN=1 + +--- Model Extractions --- +- सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +- सुनवाई property गोधरा ट्रेन कांड की +- गोधरा ट्रेन कांड की property 01 जून +- साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +- 01 जून हुआ गोधरा ट्रेन कांड की सुनवाई +- सुनवाई property गोधरा ट्रेन कांड की 01 जून + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + Status: satisfied but with b,c + - Gold: 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + Status: satisfied + - Gold (c): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + Status: not satisfied + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=3, FP=1, FN=0 + +--- Model Extractions --- +- वे नियुक्त हुई न्यायाधीश +- 06 अक्टूबर 1989 को नियुक्त हुई वे +- न्यायाधीश property सर्वोच्च न्यायालय की +- न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +- 06 प्रतिशत थे ऐसे लोग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +- 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +- 1 अक्टूबर 1854 को हुआ जारी किया गया +- पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + Status: satisfied + - Gold (b): पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + Status: not satisfied + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=3, FP=11, FN=2 + +--- Model Extractions --- +- आंध्र ने पाया कर्नूल को +- दर्जा पाया 1 अक्टूबर 1953 को +- दर्जा property राज्य का +- 1 अक्टूबर 1953 को हुआ राज्य का दर्जा +- आंध्र ने पाया राज्य का दर्जा +- आंध्र ने पाया कर्नूल +- कर्नूल को पाया राजधानी के साथ +- कर्नूल को पाया आंध्र +- कर्नूल को आंध्र ने पाया राज्य का दर्जा +- कर्नूल को आंध्र ने पाया कर्नूल +- आंध्र ने पाया कर्नूल को राजधानी के साथ +- आंध्र ने पाया कर्नूल को आंध्र +- राज्य का दर्जा आंध्र ने पाया कर्नूल +- राजधानी के साथ कर्नूल को पाया आंध्र + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: satisfied but with a,c|AND|satisfied but with a,c + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +- ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +- 1 अक्टूबर 2008 को जारी किया गया न्यूजीलैंड +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +- दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +- न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + Status: satisfied + - Gold (b): [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + - Gold (c): दूसरा --> property --> सीज़न + Status: not satisfied + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=7, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर ने लिया स्थान +- 1 अक्टूबर को लिया रॉबर्ट आइगर ने +- स्थान property माइकल आइजनर का +- रॉबर्ट आइगर ने लिया सीईओ के रूप में +- स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को +- स्थान रॉबर्ट आइगर ने लिया सीईओ के रूप में +- 1 अक्टूबर को लिया रॉबर्ट आइगर ने सीईओ के रूप में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- यह देश आजाद हुआ 1 अक्टूबर 1960 को +- शासन से आजाद हुआ इंग्लैंड के +- 1 अक्टूबर 1960 को हुआ आजाद हुआ +- यह देश आजाद हुआ इंग्लैंड के शासन से +- 1 अक्टूबर 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 में हुआ चन्द्रसिंह को +- चन्द्रसिंह को भेज दिया गया फ्रांस +- चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +- अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +- 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +- अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: satisfied but with a + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: satisfied but with a|AND|satisfied but with a + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +Metrics: TP=3, FP=4, FN=1 + +--- Model Extractions --- +- इसे घोषित किया गया 1 अप्रैल 1946 को +- गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +- इसके पहले बने घोषित किया गया +- 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +- गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +- इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +- मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + Status: not satisfied + - Gold: गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Status: satisfied + Compensatory Extractions: + - Gold (a): 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + Status: satisfied + - Gold (b): स्वायत्तशासी --> property --> प्रान्त + Status: not satisfied + - Gold (c): इसके पहले --> property --> मुख्य मन्त्री + Status: not satisfied + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +- एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही property भारत के +- हिन्दी प्रचार सभा थी एक आन्दोलन +- एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +- स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +Metrics: TP=3, FP=2, FN=0 + +--- Model Extractions --- +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +- चेहरे पर दिखाई पड़ती थी कर्मा के +- बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे पर +- कर्मा के चेहरे पर दिखाई पड़ती थी एक अनूठी आभा +- एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा के चेहरे पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + Status: satisfied + - Gold (b): कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + Status: satisfied + - Gold (c): एक अनूठी --> property --> आभा + Status: not satisfied + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=3, FN=2 + +--- Model Extractions --- +- सोनू बन चुके हैं एक प्रमुख हस्ती +- तब से बन चुके हैं अब तक +- भारतीय संगीत जगत में बन चुके हैं अब तक +- तब से बन चुके हैं अब तक भारतीय संगीत जगत में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied but with a + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + - कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Compensatory Extractions: + - (a) [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + - (b) सबसे अधिक --> property --> प्रयोगनीय + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=4, FP=4, FN=1 + +--- Model Extractions --- +- सोवियत दस्तों ने आज़ाद कराया प्राग को +- क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +- प्राग को property राजधानी +- राजधानी property चेकोस्लोवाकिया की +- सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +- चेकोस्लोवाकिया की है राजधानी प्राग +- प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +- प्राग को property राजधानी चेकोस्लोवाकिया की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: satisfied + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: satisfied but with b + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- वे प्रथम भारतीय हैं क्षेत्र में +- पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +- योग एवं शिक्षा के में क्षेत्र +- योग एवं शिक्षा +- राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- वित्तीय सहायता भी दी जाती है पूरी करने तक +- सभी बच्चों को पूरी करने तक दी जाती है +- पूरी करने तक दी जाती है पढ़ाई स्कूल की +- सभी बच्चों को दी जाती है वित्तीय सहायता भी +- पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +Metrics: TP=4, FP=8, FN=1 + +--- Model Extractions --- +- यह स्थान दर्शनीय केन्द्र है आज भी +- दर्शनीय केन्द्र property लोगों के लिए +- आज भी है दर्शनीय केन्द्र +- यह स्थान है दर्शनीय केन्द्र +- क्षेत्र के है दर्शनीय केन्द्र +- लोगों के लिए है दर्शनीय केन्द्र +- आज भी है दर्शनीय केन्द्र यह स्थान +- आज भी है दर्शनीय केन्द्र क्षेत्र के +- आज भी है दर्शनीय केन्द्र लोगों के लिए +- यह स्थान है दर्शनीय केन्द्र क्षेत्र के +- यह स्थान है दर्शनीय केन्द्र लोगों के लिए +- क्षेत्र के है दर्शनीय केन्द्र लोगों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + Status: not satisfied + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Status: satisfied + Compensatory Extractions: + - Gold (a): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + Status: satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: satisfied but with b + - Gold: [दर्शनीय]{a} केन्द्र --> है --> आज भी + Status: satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> property --> केन्द्र + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): लोगों के लिए --> property --> क्षेत्र के + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: satisfied but with b + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +- वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +- पाणिनीय व्याकरण ही है वेदाङ्ग का प्रतिनिधित्व +- इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +- इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +- आत्मा property शब्द की +- मैं करता हूं उपासना +- शब्द की आत्मा समझकर ही +- इस श्रेष्ठ तत्त्व की उपासना करता हूं मैं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + Status: satisfied + - Gold: [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Status: not satisfied + Compensatory Extractions: + - Gold (a): शब्द की --> property --> आत्मा [समझकर ही] + Status: satisfied + - Gold (b): इस श्रेष्ठ --> property --> तत्त्व की + Status: not satisfied + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- उल्लेख मिलता है पांच नदियों में से +- ऋग्वेद में मिलता है उल्लेख +- हिमाचल प्रदेश में बहने वाली पांच नदियों में से +- उल्लेख property चार का +- हिमाचल प्रदेश में बहती है नदियाँ +- पांच नदियों में से है चार +- पांच नदियों में से उल्लेख मिलता है ऋग्वेद में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +- उन्होंने इकार कर दिया बच्चे को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +- तुलनात्मक अध्ययन property शिक्षा का +- शिक्षा का जुड़ा है तुलनात्मक अध्ययन +- सभी सामाजिक विज्ञानों से तुलनात्मक अध्ययन जुड़ा है शिक्षा का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- 9110 भारतीय रेल द्वारा संचालित +- गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- यह शहर प्रमुख हिल स्टेशन है वर्तमान में +- प्रमुख हिल स्टेशन property पश्चिम बंगाल का +- वर्तमान में है यह शहर +- यह शहर है पश्चिम बंगाल का +- वर्तमान में है यह शहर पश्चिम बंगाल का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=5, FP=8, FN=0 + +--- Model Extractions --- +- सिलकोट एक गाँव है गंगोलीहाट तहसील में +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +- एक गाँव property पिथोरागढ जिले का +- उत्तराखण्ड राज्य के अन्तर्गत property भारत के +- पिथोरागढ जिले का property कुमाऊँ मण्डल के +- सिलकोट है गाँव +- सिलकोट गंगोलीहाट तहसील में है +- सिलकोट भारत के उत्तराखण्ड राज्य के अन्तर्गत +- सिलकोट कुमाऊँ मण्डल के पिथोरागढ जिले का +- सिलकोट उत्तराखण्ड राज्य के अन्तर्गत है +- उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +- एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +- एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: not satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: satisfied but with a + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: satisfied but with b + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +- तकनीकी केंद्र को property एयर लाइन के +- एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=2, FP=5, FN=1 + +--- Model Extractions --- +- दोनों मामले पेश हुए सर लुइस शर्ट +- सर लुइस शर्ट property मुख्य न्यायाधीश +- विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +- चीफ कोर्ट के के सामने विशेष न्यायाधीश मोहम्मद रजा +- दोनों मामले पेश हुए चीफ कोर्ट के +- सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +- सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: satisfied but with c + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: satisfied but with d + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=1, FP=8, FN=1 + +--- Model Extractions --- +- मृत्यु हो गई किसी बीमारी की वजह से +- 28 नवम्बर 1694 को हो गई मृत्यु +- मृत्यु property बाशो की +- किसी बीमारी की वजह से हो गई मृत्यु +- बाशो की हो गई मृत्यु +- बाशो की हो गई 28 नवम्बर 1694 को +- किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +- किसी बीमारी की वजह से मृत्यु हो गई बाशो की +- 28 नवम्बर 1694 को हो गई मृत्यु बाशो की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- विक्रम ने सोचा एक हल +- तो नहीं हुआ कोई मतैक्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- सन 1696 में मुकाबला हुआ फिर एक बार +- शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +- सन 1696 में हुआ मुकाबला +- शाही सेना से मुकाबला हुआ पंचायती सेना का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=2, FP=12, FN=1 + +--- Model Extractions --- +- मर्लगोंड एक गाँव है कुभीर मण्डल में +- एक गाँव property अदिलाबादु जिले का +- अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +- आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +- मर्लगोंड है गाँव +- मर्लगोंड में कुभीर मण्डल +- कुभीर मण्डल में भारत +- भारत के आन्ध्रप्रदेश राज्य +- आन्ध्रप्रदेश राज्य के अदिलाबादु जिले +- अदिलाबादु जिले का एक गाँव +- एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +- अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +- मर्लगोंड में कुभीर मण्डल भारत +- भारत के आन्ध्रप्रदेश राज्य अदिलाबादु जिले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: not satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=2, FP=1, FN=1 + +--- Model Extractions --- +- अनेक ग्रन्थ लिखे गये बाद में +- दर्शन पक्ष पर लिखे गये व्याकरण के +- बाद में हुआ लिखे गये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- निदेशक बने 1975 में +- इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +- 1975 में हुआ इलाहाबाद में +- Mehta अनुसंधान संस्थान में बना निदेशक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- नाम रखा गया नाम पर +- नाम पर property उनके +- नाम property इस जगह का +- उनके नाम पर इस जगह का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: not satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं रहना +- इस आपाधापी से दूर रहना घर पर ही +- घर पर ही property अपने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: satisfied but with a + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied but with b,a + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=2, FP=3, FN=1 + +--- Model Extractions --- +- मार्च 2001 में वापसी हुई फिर एक बार +- अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +- अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +- मार्च 2001 में हुआ वापसी +- अमरीका के रक्षा सचिव अट्ठाइसवें + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: satisfied but with a + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +- इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +- सर वाईकर के द्वारा रखी गयी थी आधारशिला +- सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + Status: satisfied but with a + - Gold: 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Status: not satisfied + Compensatory Extractions: + - Gold (a): आधारशिला --> property --> इसकी रचना की + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: satisfied + - Gold: [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसकी --> property --> रचना की + Status: not satisfied + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- वह संपर्क में है इस तकनीक के लिए +- संपर्क में property विभिन्न टेलीविजन कंपनियों से +- वह संपर्क में विभिन्न टेलीविजन कंपनियों से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + Status: not satisfied + - Gold: इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + Status: satisfied + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +- सन 1961 में सम्मानित किया गया था पद्म भूषण से +- क्षेत्र में property चिकित्सा विज्ञान के +- त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के +- क्षेत्र में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=3, FP=1, FN=0 + +--- Model Extractions --- +- उन्होने संगीत रचना की मराठी के अतिरिक्त +- हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +- उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +- मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +- औद्योगिक रूप से property काइटिन का +- काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +- औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + Status: satisfied + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +Metrics: TP=3, FP=2, FN=0 + +--- Model Extractions --- +- सभी पर्व property हिंदूओं +- सभी पर्व property मुस्लिमों के +- हिंदूओं और मुस्लिमों के +- सभी पर्व मनाए जाते हैं मिलजुल कर +- हिंदूओं सभी पर्व property मुस्लिमों के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + Status: satisfied but with b + - Gold (b): [और] मुस्लिमों के --> property --> सभी पर्व + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Status: not satisfied + Compensatory Extractions: + - Gold (a): मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + Status: satisfied + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=8, FP=15, FN=0 + +--- Model Extractions --- +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका +- 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +- 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +- द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका 20 जुलाई 2012 को +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +- 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +- 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +- संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +- संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +- 20 जुलाई 2012 को द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: satisfied but with a|AND|satisfied but with a + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: satisfied but with c + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: satisfied but with d + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=2, FP=5, FN=1 + +--- Model Extractions --- +- यह लगाया जाता है हर साल +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +- यह लगाया जाता है जर्मनी के +- यह लगाया जाता है फ्रैंकफर्ट शहर मे +- हर साल यह लगाया जाता है जर्मनी के +- हर साल यह लगाया जाता है फ्रैंकफर्ट शहर मे +- फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +Metrics: TP=3, FP=0, FN=0 + +--- Model Extractions --- +- द्रौपदी ने वरमाला डाल दिया गले में +- गले में property अर्जुन के +- द्रौपदी ने डाल दिया वरमाला + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: satisfied + - Gold: [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: satisfied + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=2, FP=3, FN=0 + +--- Model Extractions --- +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +- राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +- यह त्यौहार मनाया जाता है राम नवमी के दौरान +- यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +- पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है यह त्यौहार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +Metrics: TP=1, FP=10, FN=1 + +--- Model Extractions --- +- व्यापक उपयोग उल्लेखनीय है भोजन में +- भोजन में property तटीय कर्नाटक के +- व्यापक उपयोग property समुद्री भोजन +- व्यापक उपयोग property नारियल +- व्यापक उपयोग property नारियल तेल का +- तटीय कर्नाटक के में भोजन +- भोजन में समुद्री भोजन नारियल +- भोजन में नारियल तेल का नारियल +- समुद्री भोजन व्यापक उपयोग property नारियल +- समुद्री भोजन व्यापक उपयोग property नारियल तेल का +- नारियल व्यापक उपयोग property नारियल तेल का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Status: not satisfied + Compensatory Extractions: + - Gold (a): समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + - Gold (b): तटीय --> property --> कर्नाटक [के] + Status: not satisfied + - Gold (c): भोजन में --> property --> [तटीय]{b} कर्नाटक के + Status: satisfied + - Gold (d): नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +- उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +- कार्ल ने सुधारा वहां के +- उपेक्षित जीवविज्ञान उद्यान को भी कार्ल ने सुधारा वहां के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- तारों को कहते हैं श्रेणी के +- श्रेणी के property सिफियस चतुर्थ की +- सिफियस चतुर्थ की श्रेणी के तारों को +- सिफियस चतुर्थ की कहते हैं सिफीड + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- यह प्रसिद्ध है नाम से +- नाम से property प्राथमिक विधि अध्यारोप के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- अधिक संपर्क रहा है चीन +- अधिक संपर्क रहा है जापान से +- अधिक संपर्क property इस देश का +- चीन से संपर्क रहा जापान +- चीन अधिक संपर्क रहा है जापान से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=1, FP=4, FN=2 + +--- Model Extractions --- +- कश्यप ने पता लगाया शेष +- कुछ घड़ी शेष हैं आयु में +- कश्यप ने पता लगाया कि +- राजा की आयु में कुछ घड़ी +- शेष कश्यप ने पता लगाया कि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: satisfied but with b + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=2, FP=3, FN=0 + +--- Model Extractions --- +- मोमबत्तियाँ भी प्रयुक्त होती है खानों में +- खानों में property अभ्रक आदि की +- अभ्रक आदि की में खानों +- मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +- खानों में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: satisfied but with a |OR| satisfied but with a + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=5, FP=6, FN=0 + +--- Model Extractions --- +- उन्होंने लिखे हैं कहानियाँ +- इस शैली में लिखे हैं उन्होंने +- उन्होंने लिखे हैं उपन्यास +- इस शैली में लिखे हैं कहानियाँ +- इस शैली में लिखे हैं उपन्यास +- कहानियाँ उन्होंने लिखे हैं इस शैली में +- कहानियाँ उन्होंने लिखे हैं उपन्यास +- इस शैली में लिखे हैं उन्होंने उपन्यास +- उन्होंने इस शैली में लिखे हैं कहानियाँ +- उन्होंने लिखे हैं उपन्यास इस शैली में +- कहानियाँ इस शैली में लिखे हैं उपन्यास + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied but with a + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied but with a + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- वो मुख्य न्यायाधीश हैं पहले दलित +- वो है दलित +- वो है मलयाली +- वो मुख्य न्यायाधीश है +- दलित वो है मलयाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वो --> हैं --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: पहले दलित --> property --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=3, FP=7, FN=0 + +--- Model Extractions --- +- उन्होंने पेश किया वार्षिक बजट +- 6 जुलाई 2009 को पेश किया उन्होंने +- वार्षिक बजट property सरकार का +- 6 जुलाई 2009 को हुआ पेश किया +- उन्होंने पेश किया सरकार का +- सरकार का पेश किया वार्षिक बजट +- वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +- वार्षिक बजट उन्होंने पेश किया सरकार का +- 6 जुलाई 2009 को पेश किया उन्होंने सरकार का +- सरकार का पेश किया वार्षिक बजट उन्होंने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with b + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=3, FP=1, FN=0 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +- व्यापार पर निर्भर रहती है चाय के +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +- लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- उन्हें जाना जाता है नाम से +- नाम से property उत्कल मणि के +- उन्हें है उत्कल मणि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कृपया देखें फ्रेंच फ्लेमिश को +- अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: not satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +- ज्यादातर अंश property इस नदी का +- इस नदी का प्रवाहित होता है पाकिस्तान में +- ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=3, FP=5, FN=1 + +--- Model Extractions --- +- अंदरूनी भाग हिस्सा है लीबियाई रेगिस्तान का +- अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +- सीवा नख़लिस्तान स्थित है जिसमें +- सीवा नख़लिस्तान property ओएसिस +- मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +- लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +- सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का +- जिसमें सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: satisfied but with a + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +- त्वरित आर्थिक हो रही भारत में +- राज्य की राजधानी बंगलुरु शहर +- बंगलुरु शहर है भारत में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: not satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- ये प्रसिद्ध हैं कहानियों के लिए +- ये प्रसिद्ध कहानियों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Status: not satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों + Status: not satisfied + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=3, FP=3, FN=0 + +--- Model Extractions --- +- एक कहानी संग्रह प्रकाशित हुए हैं उनका +- दो निबंध संग्रह प्रकाशित हुए हैं उनका +- उनका प्रकाशित हुए हैं एक कहानी संग्रह +- उनका प्रकाशित हुए हैं दो निबंध संग्रह +- एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +- एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=2, FP=3, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +- सुपद्य व्याकरण property 15 वीं शताब्दी +- सुपद्य व्याकरण लिखा है पद्मनाभ दत्त ने +- पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी +- सुपद्य व्याकरण पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: satisfied but with a|AND|satisfied but with a + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=7, FN=2 + +--- Model Extractions --- +- फ्लोरिडा राज्य स्थित हैं पश्चिम में +- स्थित property अलबामा +- स्थित property दक्षिण में +- इसके पश्चिम में अलबामा +- अलबामा स्थित है पश्चिम में +- दक्षिण में स्थित है फ्लोरिडा राज्य +- अलबामा स्थित property दक्षिण में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=2, FP=2, FN=0 + +--- Model Extractions --- +- यह क्रिकेट मैदान स्थित है होबार्ट शहर में +- होबार्ट शहर में property ऑस्ट्रेलिया के +- यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +- होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है +- निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +- पूरी प्रतिलिपि नहीं है है एक सरलीकृत सारांश +- निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश पूरी प्रतिलिपि नहीं है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + Status: not satisfied + - Gold: निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Status: satisfied + Compensatory Extractions: + - Gold (a): सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + Status: not satisfied + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Compensatory Extractions: + - (a) योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- कुछ लोगों ने विभाजित किया है इसे +- दृष्टि से विभाजित किया है इंडोचायनीज़ +- दृष्टि से property विशेषता की +- दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +- जंगलों की विशेषता की दृष्टि से +- इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +- इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: satisfied + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +Metrics: TP=2, FP=4, FN=1 + +--- Model Extractions --- +- वर्षों को दर्शाता है 5364 ईसा पूर्व +- वर्षों को property जन्म से पूर्व के +- जन्म से पूर्व के property ईसा मसीह के +- 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +- वर्षों को property जन्म से पूर्व के ईसा मसीह के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + - Gold: ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: satisfied + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=7, FN=2 + +--- Model Extractions --- +- विश्वामित्र द्वारा पहनाती हैं जयमाल +- सीता राम को पहनाती हैं स्वरघोष के मध्य +- स्वरघोष के मध्य property वैदिक मन्त्रों के +- विश्वामित्र द्वारा किया वैदिक मन्त्रों के +- सीता राम को पहनाती हैं जयमाल +- विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +- स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=1, FP=16, FN=1 + +--- Model Extractions --- +- विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +- इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +- इस तथ्य पर पड़ा आखिर नाम +- इस तथ्य पर पड़ा आखिर किस वर्ष में +- नाम property स्थान का +- इस तथ्य पर बटे हुए हैं कि +- किस वर्ष में बटे हुए हैं स्थान का +- स्थान का बटे हुए हैं नाम +- नाम बटे हुए हैं एजिंकोर्ट स्क्वायर +- एजिंकोर्ट स्क्वायर बटे हुए हैं पड़ा आखिर +- विभिन्न स्रोत बटे हुए हैं इस तथ्य पर कि +- एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +- एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +- नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +- किस वर्ष में बटे हुए हैं स्थान का नाम +- स्थान का बटे हुए हैं नाम एजिंकोर्ट स्क्वायर +- नाम बटे हुए हैं एजिंकोर्ट स्क्वायर पड़ा आखिर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +- विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +- प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +- विभिन्न विभाग होते हैं विभिन्न विभाग +- जिनके अलगअलग अध्यक्ष होते हैं अध्यक्ष +- प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +- विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष अध्यक्ष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=2, FP=8, FN=2 + +--- Model Extractions --- +- एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद +- एल्बम से जारी किया गया 2006 के मध्य में +- एकलों के बीच जारी किया गया एल्बम से +- एल्बम से जारी किया गया तीसरा कट +- तीसरा कट जारी किया गया 2006 के मध्य में +- एक लंबे अंतराल के बाद एकलों के बीच जारी किया गया एल्बम से +- 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +- 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +- एकलों के बीच जारी किया गया एल्बम से तीसरा कट +- एल्बम से जारी किया गया तीसरा कट 2006 के मध्य में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: satisfied but with a + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- उस दौर में कोई और मानक नहीं थे उनके सामने +- सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +- चूंकि mark कोई और मानक नहीं थे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + - Gold: [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: satisfied + - Gold: उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + Status: satisfied + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=1, FP=10, FN=1 + +--- Model Extractions --- +- बहुत से विकासों ने बेहतर कर दिया था परिणामों को +- 1900 के आसपास बेहतर कर दिया था निमोनिया से +- पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +- 1900 के आसपास हुआ विकास +- बहुत से विकासों ने बेहतर कर दिया परिणामों को +- निमोनिया से बेहतर कर दिया परिणामों को +- पीड़ित लोगों के लिये बेहतर कर दिया परिणामों को +- 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +- बहुत से विकासों ने बेहतर कर दिया परिणामों को निमोनिया से +- बहुत से विकासों ने बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये +- निमोनिया से बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- प्रचार बहुत योगदान है पिता के समान +- बहुत योगदान property आपका भी +- प्रसार में बहुत योगदान है पिता के समान +- सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों +- सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों +- आपका भी बहुत योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +- प्रचार बहुत योगदान है पिता के समान प्रसार में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- मामले लेखबद्ध किये गये हैं उदाहरणार्थ +- संपर्क में भी लेखबद्ध किये गये हैं केवल 1 3 माह के +- मामले property उत्पन्न होने के +- मेसोथेलियोमा उत्पन्न होने के मामले +- उदाहरणार्थ लेखबद्ध किये गये हैं मामले + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- प्राणी मिलते नहीं है इश एस में +- वास्तव में मिलते नहीं है प्राणी +- इश एस में सामना होता है इश डू में +- इश एस में सामना होता है दो प्राणियों का +- जहां में इश डू +- इश डू में में दो प्राणियों का +- इश एस में प्राणी मिलते नहीं है वास्तव में +- इश डू में इश एस में सामना होता है दो प्राणियों का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इश -- डू में --> सामना होता है --> दो प्राणियों का + Status: not satisfied + - Gold: इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + Status: not satisfied + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +Metrics: TP=1, FP=4, FN=1 + +--- Model Extractions --- +- ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +- उस तल में होने चाहिये ये तीनों अक्ष +- ये तीनों अक्ष होने चाहिये उस तल में +- एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +- उस तल में ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: satisfied + - Gold: उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +Metrics: TP=2, FP=6, FN=2 + +--- Model Extractions --- +- पुराने तरीके बदल रहे हैं विकासशील देशों में +- अपने ही पड़ोस में बदल रहे हैं तेजी से +- पुराने तरीके property दूध विपणन के +- विकासशील देशों में में किसानों के +- किसानों के दूध विपणन के पुराने तरीके +- पुराने तरीके बदल रहे हैं तेजी से +- विकासशील देशों में पुराने तरीके बदल रहे हैं तेजी से +- अपने ही पड़ोस में बदल रहे हैं तेजी से पुराने तरीके + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + Status: satisfied but with a,b + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Status: not satisfied + Compensatory Extractions: + - Gold (a): किसानों के --> property --> दूध विपणन के [पुराने] तरीके + Status: not satisfied + - Gold (b): [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + Status: satisfied + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=13, FN=2 + +--- Model Extractions --- +- उन्होंने एक दीवाना था से शुरुआत +- शुरुआत property बोलीवुड करियर की +- शुरुआत रिलीज़ किया गया जिसे +- शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +- उन्होंने की शुरुआत +- एक दीवाना था से की शुरुआत +- उन्होंने की बोलीवुड करियर +- बोलीवुड करियर की शुरुआत +- 17 फ़रवरी 2012 को हुआ रिलीज़ किया गया +- जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +- उन्होंने की शुरुआत एक दीवाना था से +- शुरुआत उन्होंने की बोलीवुड करियर +- एक दीवाना था से की शुरुआत बोलीवुड करियर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + Status: not satisfied + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=1, FP=5, FN=1 + +--- Model Extractions --- +- बचाना है अत्यंत आवश्यक +- खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +- इस रोग के प्रतिषेधात्मक उपचार में भी है +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +- खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=2, FP=6, FN=1 + +--- Model Extractions --- +- यह संदर्भित करता है राष्ट्रीयता को +- राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +- राष्ट्रीयता को property प्रतिस्पर्धी टीम की +- राष्ट्रीयता को संदर्भित करता है चालक की +- यह संदर्भित करता है प्रतिस्पर्धी टीम की +- यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +- यह संदर्भित करता है राष्ट्रीयता को चालक की +- गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: satisfied but with a + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +- सीधी बस सेवा property मुंबई से +- सड़क मार्ग है मुंबई से सीधी बस सेवा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- छपाई में प्रयोग होता था ब्लाकों का +- ब्लाकों का जिसका निर्माण करते थे शिल्पी सुथार +- छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +- शिल्पी सुथार करते थे जिसका निर्माण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- यह शब्द आता है सरकारी इकाई के लिये +- प्रयोग में आता है सरकारी इकाई के लिये +- विधि बनाने वाली सरकारी इकाई के लिये +- यह शब्द प्रयोग में विधि +- यह शब्द आता है सरकारी इकाई के लिये प्रयोग में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=5, FP=3, FN=0 + +--- Model Extractions --- +- यह स्थित है बलिया जिले में +- बलिया जिले में property उत्तर प्रदेश के +- बलिया शहर से स्थित है पश्चिम में +- यह स्थित है उत्तर प्रदेश के बलिया जिले में +- यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +- बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=2, FP=4, FN=2 + +--- Model Extractions --- +- उन्होने हत्या नहीं करवाई उसेक बाद +- हत्या नहीं करवाई property पिता की +- उन्होने नहीं करवाई हत्या +- उसेक बाद नहीं करवाई हत्या +- अन्य सम्राट किया करते थे हत्या +- उन्होने नहीं करवाई हत्या उसेक बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=19, FN=3 + +--- Model Extractions --- +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +- प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- निर्धारण property स्थिति का +- प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +- प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +- प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- प्रत्येक खिलाड़ी के लिये किया जाता है पासा +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +- सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये पासा +- निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +- हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +- हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है पासा +- स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +- स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है पासा +- निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है पासा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- हाइपरयूरीसेमिया होता है मूल कारण +- हाइपरयूरीसेमिया होता है वात रोग का मूल कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +Metrics: TP=0, FP=5, FN=2 + +--- Model Extractions --- +- प्रसिद्ध है यही कारण +- यही कारण है कि +- विश्व भर में प्रसिद्ध केरल +- केरल अपनी आयुर्वेदिक चिकित्सा शैली +- प्रसिद्ध है यही कारण कि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + Status: not satisfied + - Gold: केरल --> प्रसिद्ध है --> विश्व भर में + Status: not satisfied + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=10, FN=1 + +--- Model Extractions --- +- उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +- उदगम स्थान property इसका +- अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +- इसका है उदगम स्थान +- उदगम स्थान है सिरमोर राज्य के +- सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का +- अंतगर्त हिमालय पर्वत के नीचे का है ढलुवा भाग +- इसका है उदगम स्थान सिरमोर राज्य के +- उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +- सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +Metrics: TP=1, FP=7, FN=1 + +--- Model Extractions --- +- दक्षिण भारत में प्राधान्य था उन दिनों +- प्राधान्य property परम्परागत चित्रकला का ही +- दक्षिण भारत में था प्राधान्य +- उन दिनों था प्राधान्य +- परम्परागत चित्रकला का ही था प्राधान्य +- दक्षिण भारत में था प्राधान्य उन दिनों +- दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +- उन दिनों था प्राधान्य परम्परागत चित्रकला का ही + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + Status: not satisfied + - Gold: उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + Status: satisfied + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- ये कहानियाँ हो सकती हैं किसी देश +- ये कहानियाँ हो सकती हैं समय की +- किसी देश ये कहानियाँ हो सकती हैं समय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +- और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + Status: satisfied + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- 2010 को दर्शन परिषद् के सम्पन्न हुआ नाम से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +Metrics: TP=2, FP=13, FN=3 + +--- Model Extractions --- +- यहीं पर देहांत हो गया सन 1533 में +- अल्पायु में देहांत हो गया दिन +- उनका देहांत हो गया दिन +- अल्पायु में property 47 वर्ष की +- दिन property रथयात्रा के +- उनका देहांत हो गया 47 वर्ष की +- उनका देहांत हो गया अल्पायु में +- उनका देहांत हो गया रथयात्रा के +- अल्पायु में देहांत हो गया दिन उनका +- दिन उनका देहांत हो गया 47 वर्ष की +- दिन उनका देहांत हो गया रथयात्रा के +- 47 वर्ष की उनका देहांत हो गया अल्पायु में +- 47 वर्ष की उनका देहांत हो गया रथयात्रा के +- उनका देहांत हो गया अल्पायु में दिन +- अल्पायु में उनका देहांत हो गया रथयात्रा के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यहीं पर --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: सन 1533 में --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + Status: satisfied but with a + - Gold: रथयात्रा के दिन --> देहांत हो गया --> उनका + Status: not satisfied + Compensatory Extractions: + - Gold (a): अल्पायु [में] --> property --> 47 वर्ष [की] + Status: satisfied + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=2, FP=3, FN=0 + +--- Model Extractions --- +- इसे कहा जाता है यह देखा जाता है अक्सर +- तालाब में देखा जाता है अक्सर कहा जाता है +- इसे कहा जाता है पाण्सिल्क भी +- यह देखा जाता है तालाब में +- यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=1, FP=13, FN=1 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- 2008 में बने वे +- तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +- तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- 2008 में बने तीसरे ब्रिटिश प्रबंधक +- तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +- तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +- जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +- जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +- एकाधिक अवसर पर तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: not satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- मॉस से जल रोक रखा जाता है मिट्टी में +- मॉस से से मिट्टी में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: not satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=1, FP=6, FN=1 + +--- Model Extractions --- +- वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +- वर्तमान रूप property महाभारत का +- महाभारत का है वर्तमान रूप +- वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का +- प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +- महाभारत का है वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का +- वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_04_new_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_04_new_analysis.txt new file mode 100644 index 0000000..70783fe --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_04_new_analysis.txt @@ -0,0 +1,2989 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- कार्यरूप जगत देखकर शक्तिरूपी माया की सििद्ध होती है +- शक्तिरूपी सििद्ध होती है +- शक्तिरूपी की सििद्ध होती है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- अखिल भारतीय पुलिस डयूटी मीट 1958 से में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +- 1958 से गुण अखिल भारतीय पुलिस डयूटी मीट +- अंगुलि चिह्न विज्ञान प्रकार अंगुलि चिह्न विज्ञान प्रतियोगिता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=2, FN=3 + +--- Model Extractions --- +- केन्द्रीय सरकार के विभागों परीक्षण करना विवादित अंगुलि चिह्नों +- भारत सरकार के उपक्रमों परीक्षण करना विवादित अंगुलि चिह्नों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- 007 मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उन्होंने शुरू की अपनी एक पत्रिका +- साधु property अपनी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: satisfied but with a,b + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Compensatory Extractions: + - (a) 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + +Cluster: cluster 2 + Essential Extractions: + - [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Compensatory Extractions: + - (a) 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + - (b) नवीनतम --> property --> वेतनमानों [को] + +Cluster: cluster 3 + Essential Extractions: + - [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + - कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Compensatory Extractions: + - (a) 01 अप्रैल --> property --> 2009 से + - (b) नवीनतम --> property --> वेतनमानों [को] + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +Metrics: TP=0, FP=5, FN=2 + +--- Model Extractions --- +- गोधरा ट्रेन कांड की सुनवाई की अहमदाबाद के साबरमती केंद्रीय जेल के अंदर +- अहमदाबाद के साबरमती केंद्रीय जेल केंद्रीय के अंदर +- अहमदाबाद के साबरमती केंद्रीय जेल में गोधरा ट्रेन कांड की सुनवाई +- अहमदाबाद के साबरमती केंद्रीय जेल property केंद्रीय +- अहमदाबाद के साबरमती केंद्रीय जेल property के अंदर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + Status: not satisfied + - Gold (c): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + Status: not satisfied + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- वे नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई +- वे property सर्वोच्च न्यायालय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- ऐसे लोग property 06 प्रतिशत +- 06 प्रतिशत property कोई विशेष धर्म नहीं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Compensatory Extractions: + - (a) 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + - (b) पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- आंध्र पाया कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा +- राज्य का दर्जा पाया कर्नूल को +- कर्नूल को प्राप्त राज्य का दर्जा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Compensatory Extractions: + - (a) 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + - (b) [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + - (c) दूसरा --> property --> सीज़न + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर लिया माइकल आइजनर का स्थान +- माइकल आइजनर property सीईओ +- 1 अक्टूबर को temporal property + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- यह देश आज़ाद हुआ इंग्लैंड के शासन से +- स्वतंत्र property स्वतंत्र + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +- फ्रांस property अन्य गढ़वाली सैनिकों के साथ +- 1 अगस्त 1915 में temporal भेज दिया गया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + - गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Compensatory Extractions: + - (a) 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + - (b) स्वायत्तशासी --> property --> प्रान्त + - (c) इसके पहले --> property --> मुख्य मन्त्री + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- हिन्दी प्रचार सभा आरम्भ हुई एक आन्दोलन +- भारत के property स्वतंत्रता आन्दोलन के +- हिन्दी प्रचार सभा property भारत के +- हिन्दी प्रचार सभा property स्वतंत्रता आन्दोलन के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: not satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: not satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Compensatory Extractions: + - (a) बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + - (b) कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + - (c) एक अनूठी --> property --> आभा + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +- प्रमुख गुणआधारित भारतीय संगीत जगत में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: not satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम आकलन के लिए +- कोप्पेन मौसम वर्गीकरण गुणआधारित सबसे अधिक प्रयोगनीय +- मौसम आकलन के लिए कोप्पेन मौसम वर्गीकरण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + Status: not satisfied + - Gold: कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Status: not satisfied + Compensatory Extractions: + - Gold (a): [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + Status: not satisfied + - Gold (b): सबसे अधिक --> property --> प्रयोगनीय + Status: not satisfied + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=1, FP=1, FN=2 + +--- Model Extractions --- +- सोवियत दस्तों ने आज़ाद कराया प्राग को +- बर्लिन पर क़ब्ज़ा करने के बाद प्राग को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: satisfied but with a + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: not satisfied + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: not satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं प्राप्त करने राष्ट्रपति से पद्म श्री सम्मान +- योग एवं शिक्षा के क्षेत्र में property प्राप्त करने +- राष्ट्रपति से पद्म श्री सम्मान property प्रथम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सभी बच्चों को दी जाती है स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता +- स्कूल की पढ़ाई पूरी करने तक property वित्तीय सहायता +- स्कूल की पढ़ाई पूरी करने तक condition वित्तीय सहायता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + - यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Compensatory Extractions: + - (a) क्षेत्र के --> property --> लोगों के लिए + +Cluster: cluster 2 + Essential Extractions: + - यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + - [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + - [दर्शनीय]{a} केन्द्र --> है --> आज भी + Compensatory Extractions: + - (a) दर्शनीय --> property --> केन्द्र + - (b) क्षेत्र के --> property --> लोगों के लिए + +Cluster: cluster 3 + Essential Extractions: + - यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Compensatory Extractions: + - (a) दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + - (b) लोगों के लिए --> property --> क्षेत्र के + +Cluster: cluster 4 + Essential Extractions: + - यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Compensatory Extractions: + - (a) दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + - (b) क्षेत्र के --> property --> लोगों के लिए + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- इस सम्बन्ध में पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +- इस गुण प्रतिनिधित्व करता है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: not satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + - [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Compensatory Extractions: + - (a) शब्द की --> property --> आत्मा [समझकर ही] + - (b) इस श्रेष्ठ --> property --> तत्त्व की + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- हिमाचल प्रदेश में बहने वाली पांच नदियों उल्लेख ऋग्वेद +- चार का property उल्लेख + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: not satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्होंने देने बच्चे को +- स्पष्ट इंकार कर दिया property give + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: not satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=1, FP=0, FN=0 + +--- Model Extractions --- +- शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: satisfied + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: not satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- गुजरात क्वीन एक्स्प्रेस 9110 संचालित भारतीय रेल द्वारा +- गुजरात क्वीन एक्स्प्रेस 9110 property एक मेल एक्स्प्रेस ट्रेन है +- एक मेल एक्स्प्रेस ट्रेन है property गुजरात क्वीन एक्स्प्रेस 9110 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- यह पश्चिम बंगाल का प्रमुख हिल स्टेशन +- पश्चिम बंगाल का प्रमुख हिल स्टेशन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- सिलकोट islocatedin गंगोलीहाट तहसील में +- सिलकोट ispartof भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का +- सिलकोट isa एक गाँव + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: not satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: not satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- एयर लाइन के तकनीकी केंद्र स्थापना तिरुवनंतपुरम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: not satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- मुख्य न्यायाधीश के सामने दोनों मामले +- विशेष न्यायाधीश के सामने दोनों मामले +- विशेष न्यायाधीश के सामने मोहम्मद रजा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- बाशो की मृत्यु कारण किसी बीमारी की वजह से +- बाशो की मृत्यु हो गई 28 नवम्बर 1694 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: not satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- विक्रम सोचा एक हल +- एक property हल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: not satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- शाही सेना मुकाबला हुआ पंचायती सेना +- सन 1696 में काल मुकाबला +- शाही गुण सेना +- पंचायती गुण सेना + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=0, FP=1, FN=2 + +--- Model Extractions --- +- मर्लगोंड is a कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: not satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: not satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- अनेक ग्रन्थ लिखे गये व्याकरण के दर्शन पक्ष पर +- बाद में क्रिया के समय +- व्याकरण के विशेषण दर्शन पक्ष पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: not satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- नवनिर्मित मेहता अनुसंधान संस्थान बने निदेशक +- नवनिर्मित property मेधा अनुसंधान संस्थान +- 1975 में property इलाहाबाद में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- इस जगह का नाम रखा गया रुस्तम खान +- उनके नाम पर property इस जगह का नाम +- इस property इस जगह का नाम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: not satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं अपने घर पर ही रहना +- इस आपाधापी से property दूर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: satisfied + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव वापसी हुई मार्च 2001 में +- मार्च 2001 में property एक बार फिर +- एक बार फिर property अमरीका के अट्ठाइसवें रक्षा सचिव + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + - 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Compensatory Extractions: + - (a) आधारशिला --> property --> इसकी रचना की + +Cluster: cluster 2 + Essential Extractions: + - 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + - [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Compensatory Extractions: + - (a) इसकी --> property --> रचना की + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + - इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया था चिकित्सा विज्ञान के क्षेत्र में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्होने रचना की संगीत +- संगीत मराठी के अतिरिक्त हिन्दी फिल्मों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Compensatory Extractions: + - (a) काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + +Cluster: cluster 2 + Essential Extractions: + - काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Compensatory Extractions: + - (a) काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Compensatory Extractions: + - (a) हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + - (b) [और] मुस्लिमों के --> property --> सभी पर्व + +Cluster: cluster 2 + Essential Extractions: + - हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Compensatory Extractions: + - (a) मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- द डार्क नाईट राइसेस रिलीज किया गया अमेरिका संयुक्त राजशाही व कनाडा में +- 20 जुलाई 2012 को समयसंबंधी गुण रिलीज किया गया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: not satisfied + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: not satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: not satisfied + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: not satisfied + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- यह लगा जाता है जर्मनी के फ्रैंकफर्ट शहर मे +- हर साल property लगा जाता है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: not satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Compensatory Extractions: + - (a) अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + +Cluster: cluster 2 + Essential Extractions: + - द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Compensatory Extractions: + - (a) अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + +Cluster: cluster 3 + Essential Extractions: + - द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + - वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Compensatory Extractions: + - (a) अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + +Cluster: cluster 4 + Essential Extractions: + - द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + - [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Compensatory Extractions: + - (a) अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- यह त्यौहार मनाया जाता है उत्तर भारत में +- पूरे property उत्तर भारत +- राम नवमी के दौरान property काल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: not satisfied + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: not satisfied + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Compensatory Extractions: + - (a) समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + - (b) तटीय --> property --> कर्नाटक [के] + - (c) भोजन में --> property --> [तटीय]{b} कर्नाटक के + - (d) नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Compensatory Extractions: + - (a) वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +- सिफियस विशेष सिफीड + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- प्राथमिक विधि अध्यारोप के नाम से प्रसिद्ध है None +- प्राथमिक property विधि +- अध्यारोप property विधि +- प्राथमिक property अध्यारोप + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- इस देश का संपर्क रहा है चीन तथा जापान से +- अधिक property संपर्क + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- कश्यप पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +- राजा की गुण कुछ +- कुछ गुण घड़ी +- घड़ी शेष कुछ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: not satisfied + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- मोमबत्तियाँ प्रयुक्त होती है खानों में +- अभ्रक आदि की विशेषण खानों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: satisfied but with a |OR| satisfied but with a + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: not satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=2, FP=0, FN=0 + +--- Model Extractions --- +- इस शैली में लिखे हैं कहानियाँ और उपन्यास +- उन्होंने लिखे हैं कहानियाँ और उपन्यास + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - वो --> हैं --> मुख्य न्यायाधीश + - पहले दलित --> property --> मुख्य न्यायाधीश + - [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + +Cluster: cluster 2 + Essential Extractions: + - वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Compensatory Extractions: + - (a) पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- उन्होंने पेश किया सरकार का वार्षिक बजट +- उन्होंने property वार्षिक +- उन्होंने temporal 6 जुलाई 2009 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: not satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: not satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: not satisfied + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +- स्थानीय गुण आबादी +- लगभग पूरी तरह से गुण निर्भरता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: not satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: not satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +- आधारभूत property प्रोफ़ाइल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: not satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्हें जाना जाता है उत्कल मणि +- उत्कल मणि नामआधारित उन्हें + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +- अधिक गुण जानकारी के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: not satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +- प्रवाहित होता है property इस नदी का ज्यादातर अंश +- प्रवाहित होता है property पाकिस्तान में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: not satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- मत्रूह मुहाफ़ज़ाह स्थित है लीबियाई रेगिस्तान का हिस्सा +- सीवा नख़लिस्तान स्थित है ओसिस +- ओसिस स्थित है लीबियाई रेगिस्तान का हिस्सा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: not satisfied + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: not satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- राज्य की राजधानी property बंगलुरु शहर +- बंगलुरु शहर property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +- भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता property प्रौद्योगिकी का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: not satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Compensatory Extractions: + - (a) रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + - (b) [और] भयावह --> property --> कहानियों के लिए + +Cluster: cluster 2 + Essential Extractions: + - ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Compensatory Extractions: + - (a) रहस्यमयी [और भयावह]{b} --> property --> कहानियों + - (b) [और] भयावह --> property --> कहानियों + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उनका प्रकाशित हुआ एक कहानी संग्रह +- उनका प्रकाशित हुआ दो निबंध संग्रह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: not satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त लिखा है सुपद्य व्याकरण +- 15 वीं शताब्दी लिखा है सुपद्य व्याकरण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: not satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- अलबामा पश्चिम में फ्लोरिडा +- फ्लोरिडा दक्षिण में अलबामा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=1, FP=3, FN=0 + +--- Model Extractions --- +- यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +- यह property ऑस्ट्रेलिया के होबार्ट शहर में +- यह property होबार्ट शहर में +- होबार्ट property शहर में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: not satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +Cluster: cluster 2 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- योगीजनों के ज्ञान के द्वारा लीना ब्रह्म में लीन हो जाने को +- ब्रह्म में property लीन हो जाने को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Status: not satisfied + Compensatory Extractions: + - Gold (a): योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + Status: not satisfied + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- कुछ लोगों ने विभाजित किया इसे +- इंडोचायनीज़ property इसे +- इंडोमलायन property इसे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- प्रयोगशील propertyof प्रवृत्तियाँ +- प्रश्रय देने लगी होंगी property प्रयोगशील +- प्रश्रय देने लगी होंगी property प्रवृत्तियाँ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: not satisfied + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है वर्षों की संख्या +- ईसा पूर्व गुणविशेषण वर्षों की संख्या +- ईसा मसीह के जन्म से पूर्व गुणविशेषण वर्षों की संख्या + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + - Gold: ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- विश्वामित्र द्वारा सजावट सीता राम को +- जयमाल property सीता राम को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- स्थान का नाम पड़ा वर्ष +- विभिन्न स्रोत बटे हुए हैं तथ्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: not satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- प्रत्येक भाग के अंतर्गत विभिन्न विभाग +- विभिन्न विभाग के अलगअलग अध्यक्ष +- अलगअलग होते हैं अध्यक्ष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +- एकलों के बीच property जारी किया गया +- एक property जारी किया गया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: not satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + - उनके सामने --> नहीं थे --> [कोई] [और] मानक + - [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + +Cluster: cluster 2 + Essential Extractions: + - उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + - उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- 1900 के आसपास बहुत से विकासों ने बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +- परिणाम बेहतर निमोनिया से पीड़ित लोगों के लिये +- 1900 के आसपास बहुत से विकासों ने बेहतर कर दिया था परिणाम +- निमोनिया से पीड़ित लोगों के लिये बेहतर परिणाम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- आप प्रचार और प्रसार में योगदान है अपने पिता के समान +- सांप्रदायिक सिद्धांतों के प्रचार और प्रसार प्रचार और प्रसार में योगदान है अपने पिता के समान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं +- केवल 1 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: not satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - इश -- डू में --> सामना होता है --> दो प्राणियों का + - इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + +Cluster: cluster 2 + Essential Extractions: + - ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + - उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + - [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Compensatory Extractions: + - (a) किसानों के --> property --> दूध विपणन के [पुराने] तरीके + - (b) [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + - जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + +Cluster: cluster 2 + Essential Extractions: + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + - जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +- इस property रोग +- इस property प्रतिषेधात्मक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता +- राष्ट्रीयता property राष्ट्रीयता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: not satisfied + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: not satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सड़क मार्ग रत्नागिरी के लिए सीधी बस सेवा है +- बस सेवा रत्नागिरी के लिए सीधी +- बस सेवा है रत्नागिरी के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- शिल्पी निर्माण लकड़ी के ब्लाकों +- छपाई गुण लकड़ी के ब्लाकों +- जिसका उत्पादन लकड़ी के ब्लाकों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: not satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है विधि बनाने वाली प्रयोग में आता है +- सरकारी property विधि बनाने वाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- उत्तर प्रदेश के बलिया जिले में स्थित है स्थित बलिया शहर से थोड़ी दूर पश्चिम में +- उत्तर प्रदेश के बलिया जिले में स्थान बलिया शहर से थोड़ी दूर पश्चिम में +- उत्तर प्रदेश के बलिया जिले में property थोड़ी दूर +- उत्तर प्रदेश के बलिया जिले में property पश्चिम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: not satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: not satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: not satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=1, FP=1, FN=2 + +--- Model Extractions --- +- उसे किया करते थे पिता की हत्या +- अन्य सम्राट किया करते थे पिता की हत्या + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: not satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: satisfied + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=2, FN=3 + +--- Model Extractions --- +- प्रत्येक खिलाड़ी के लिये निर्धारित हवाओं की स्थिति +- पासा फेंककर निर्धारित हवाओं की स्थिति + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +- वात रोग का property मूल +- मूल property वात रोग का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + - केरल --> प्रसिद्ध है --> विश्व भर में + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +- सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है हिमालय पर्वत के नीचे का ढलुवा भाग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- परम्परागत चित्रकला का प्राधान्य था +- उन दिनों पर गुणसंबंधी परम्परागत चित्रकला का +- प्राधान्य कालविशेषण उन दिनों पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + Status: not satisfied + - Gold: उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + Status: not satisfied + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कहानियाँ हो सकती हैं किसी देश या समय की +- समय हो सकती हैं किसी देश या समय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- 2010 को सम्पन्न हुआ दर्शन परिषद् +- दर्शन परिषद् के नाम से सम्पन्न हुआ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +Metrics: TP=1, FP=2, FN=3 + +--- Model Extractions --- +- उनका देहांत हो गया रथयात्रा के दिन +- उनका आयु 47 वर्ष की अल्पायु में +- देहांत समय सन 1533 में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यहीं पर --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: सन 1533 में --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: रथयात्रा के दिन --> देहांत हो गया --> उनका + Status: satisfied + Compensatory Extractions: + - Gold (a): अल्पायु [में] --> property --> 47 वर्ष [की] + Status: not satisfied + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- इसे कहा जाता है पांसिल्क +- यह अक्सर देखा जाता है तालाब में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: not satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- जिनने एकाधिक अवसर पर यूरोपियन कप जीता property वे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: not satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मॉस रोक रखा जाता है मिट्टी में +- जल रोकने का मॉस से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: not satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- महाभारत property प्राचीन इतिहास कथाओं आदि का भण्डार +- प्राचीन property इतिहास +- इतिहास property कथाओं +- कथाओं property उपदेशों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: not satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_analysis.txt new file mode 100644 index 0000000..e4d7245 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_6000_analysis.txt @@ -0,0 +1,3205 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कार्यरूप जगत को देखकर शक्तिरूपी माया की सििद्ध होती है +- शक्तिरूपी माया की सििद्ध होती है property कार्यरूप जगत को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +- अंगुलि चिह्न विज्ञान प्रतियोगिता property 1958 से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=1, FN=3 + +--- Model Extractions --- +- विवादित अंगुलि चिह्नों का परीक्षण भेजे गए केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- 007 के गुप्त नाम से प्रसिद्ध है एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है +- एजेंट फ़्लेमिंग property 12 पुस्तकों व दो लघुकथाओं में +- एजेंट फ़्लेमिंग property 12 +- एजेंट फ़्लेमिंग property दो +- एजेंट फ़्लेमिंग property लघुकथाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उन्होंने शुरू की अपनी एक पत्रिका साधु +- उन्होंने property एक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कंपनी में लागू किया गया नवीनतम वेतनमानों को +- वेतनमानों property नवीनतम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold: कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल --> property --> 2009 से + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: satisfied + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई +- गोधरा ट्रेन कांड property 01 जून + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + Status: not satisfied + - Gold (c): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + Status: not satisfied + - Gold: 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Status: not satisfied + Compensatory Extractions: + - Gold (a): गोधरा --> property --> ट्रेन कांड + Status: not satisfied + - Gold (b): अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + Status: not satisfied + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- वे appointment सर्वोच्च न्यायालय की न्यायाधीश +- न्याधीश property सर्वोच्च न्यायालय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- ऐसे लोग थे धर्म नहीं था कोई विशेष +- ऐसे लोग थे धर्म नहीं था कोई + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पहला डाक टिकट जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +- पहला डाक टिकट property 1 अक्टूबर 1854 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + Status: not satisfied + - Gold (b): पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + Status: not satisfied + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- आंध्र के साथ कर्नूल को अपनी राजधानी +- आंध्र के साथ राज्य का दर्जा पाया + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- दूसरा सीज़न जारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया में +- दूसरा सीज़न property 1 अक्टूबर 2008 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + Status: not satisfied + - Gold (b): [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + - Gold (c): दूसरा --> property --> सीज़न + Status: not satisfied + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर ने पद संभाला सीईओ +- रॉबर्ट आइगर property 1 अक्टूबर को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- यह देश आज़ाद हुआ 1 अक्टूबर 1960 को +- यह देश शासन से इंग्लैंड के +- शासन property इंग्लैंड के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=1, FP=2, FN=3 + +--- Model Extractions --- +- चन्द्रसिंह भेज दिया गया फ्रांस +- चन्द्रसिंह property अन्य गढ़वाली सैनिकों के साथ +- सैनिकों property गढ़वाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +- इसके property गोविंद बल्लभ पन्त +- गोविंद बल्लभ पन्त property इसके पहले मुख्य मन्त्री + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + Status: not satisfied + - Gold: गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + Status: satisfied + - Gold (b): स्वायत्तशासी --> property --> प्रान्त + Status: not satisfied + - Gold (c): इसके पहले --> property --> मुख्य मन्त्री + Status: not satisfied + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- हिन्दी प्रचार सभा थी एक आन्दोलन +- हिन्दी प्रचार सभा आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ +- आन्दोलन property भारत के स्वतन्त्रता आन्दोलन के साथ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: not satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +Metrics: TP=1, FP=1, FN=3 + +--- Model Extractions --- +- आभा दिखाई पड़ती थी चेहरे पर +- आभा property कर्म के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Status: satisfied but with c,a,b + Compensatory Extractions: + - Gold (a): बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + Status: not satisfied + - Gold (b): कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + Status: not satisfied + - Gold (c): एक अनूठी --> property --> आभा + Status: not satisfied + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +- सोनू property तब से अब तक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: not satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम आकलन के लिए +- कोप्पेन मौसम वर्गीकरण property मौसम आकलन के लिए +- मौसम वर्गीकरण property सबसे अधिक प्रयोगनीय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + Status: not satisfied + - Gold: कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Status: satisfied + Compensatory Extractions: + - Gold (a): [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + Status: not satisfied + - Gold (b): सबसे अधिक --> property --> प्रयोगनीय + Status: not satisfied + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- सोवियत दस्तों ने क़ब्ज़ा करने के बाद बर्लिन पर +- सोवियत दस्तों ने प्राग को चेकोस्लोवाकिया की राजधानी +- प्राग को आज़ाद कराया बर्लिन पर क़ब्ज़ा करने के बाद +- प्राग property चेकोस्लोवाकिया की राजधानी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: satisfied + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: not satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +- राष्ट्रपति property योग एवं शिक्षा के क्षेत्र में +- राष्ट्रपति property प्रथम भारतीय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सभी बच्चों को वित्तीय सहायता दी जाती है स्कूल की पढ़ाई पूरी करने तक +- सभी बच्चों को property स्कूल की पढ़ाई +- सभी बच्चों को property पूरी करने तक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- यह स्थान के लिए दर्शनीय केन्द्र है क्षेत्र के लोगों के लिए +- यह property आज + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + Status: not satisfied + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> property --> केन्द्र + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): लोगों के लिए --> property --> क्षेत्र के + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +- पाणिनीय व्याकरण property वेदाङ्ग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +- मैं समझकर शब्द की आत्मा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + Status: satisfied + - Gold: [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Status: not satisfied + Compensatory Extractions: + - Gold (a): शब्द की --> property --> आत्मा [समझकर ही] + Status: not satisfied + - Gold (b): इस श्रेष्ठ --> property --> तत्त्व की + Status: not satisfied + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=0, FP=5, FN=1 + +--- Model Extractions --- +- हिमाचल प्रदेश में बहने वाली पांच नदियों में बहने वाली पांच नदियों +- पांच नदियों property ऋग्वेद में उल्लेखित +- पांच नदियों property पांच नदियों में से चार +- पांच नदियों property ऋग्वेद में +- पांच नदियों property पांच नदियों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: not satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- उन्होंने इंकार कर दिया बच्चे को देने से +- बच्चे को property देने से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +- सामाजिक विज्ञानों property सभी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: satisfied + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: not satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- गुजरात क्वीन एक्स्प्रेस संचालित भारतीय रेल द्वारा +- गुजरात क्वीन एक्स्प्रेस property 9110 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +- हिल स्टेशन location पश्चिम बंगाल का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=2, FP=7, FN=1 + +--- Model Extractions --- +- सिलकोट एक गाँव है गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का +- गंगोलीहाट property तहसील में +- उत्तराखण्ड राज्य property भारत के अन्तर्गत +- कुमाऊँ मण्डल property गंगोलीहाट तहसील में +- पिथोरागढ जिले property कुमाऊँ मण्डल के +- पिथोरागढ property उत्तराखण्ड राज्य के अन्तर्गत +- गंगोलीहाट property भारत के +- पिथोरागढ property उत्तराखण्ड राज्य के +- पिथोरागढ property भारत के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: not satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: satisfied + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- एयर लाइन के तकनीकी केंद्र को स्थापना तिरुवनंतपुरम में +- एयर लाइन property तकनीकी केंद्र को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- दोनों मामले पहुंचे चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +- मामले property चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- बाशो मृत्यु 28 नवम्बर 1694 को +- बाशो कारण किसी बीमारी की वजह से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: not satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- विक्रम ने सोचा एक हल +- विक्रम ने property जब कोई मतैक्य नहीं हुआ तो +- विक्रम ने property एक हल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- शाही सेना मुकाबला हुआ पंचायती सेना +- पंचायती सेना property सन 1696 में +- मुकाबला property एक बार फिर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- मर्लगोंड है कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव +- आंध्रप्रदेश राज्य property अदिलाबादु जिले का +- अदिलाबादु जिले property अदिलाबादु जिले का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: not satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: not satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- व्याकरण के दर्शन पक्ष पर लिखे गये अनेक ग्रन्थ +- ग्रन्थ property व्याकरण के दर्शन पक्ष पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: not satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- नवनिर्मित मेहता अनुसंधान संस्थान बने निदेशक +- निदेशक property 1975 में इलाहाबाद में +- इलाहाबाद location 1975 में +- नवनिर्मित property 1975 में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उनके नाम पर रखा गया इस जगह का नाम +- इस जगह का नाम property रुस्तम खान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=3, FN=0 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं इस आपाधापी से दूर अपने घर पर ही रहना +- घर पर property अपने +- घर property अपने +- घर location इस आपाधापी से दूर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: not satisfied + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=1, FP=6, FN=2 + +--- Model Extractions --- +- उनकी वापसी होई अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +- उनकी वापसी property मार्च 2001 में एक बार फिर +- उनकी वापसी property अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +- अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +- अमरीका के property अट्ठाइसवें +- अट्ठाइसवें property रक्षा सचिव +- अट्ठाइसवें property रक्षा सचिव के रूप में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- इसकी रचना की आधारशिला के द्वारा रखी गयी थी सर वाईकर के द्वारा +- आधारशिला property 3 मार्च 1884 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Status: not satisfied + Compensatory Extractions: + - Gold (a): आधारशिला --> property --> इसकी रचना की + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसकी --> property --> रचना की + Status: not satisfied + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +- उसका property इस तकनीक के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + Status: satisfied + - Gold: इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + Status: not satisfied + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया था सन 1961 में पद्म भूषण से +- पद्म भूषण property चिकित्सा विज्ञान के क्षेत्र में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- उन्होने रचना की संगीत +- संगीत property मराठी के अतिरिक्त +- मराठी property अतिरिक्त +- मराठी property हिंदी फिल्मों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- काइटिन उपयोग किया जाता है औद्योगिक रूप से अनेक प्रक्रियाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + Status: not satisfied + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- हिंदू मनाए जाते हैं पर्व +- मुस्लिम मनाए जाते हैं पर्व +- पर्व मनाए जाते हैं सभी +- पर्व मनाए जाते हैं मनाए जाते हैं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + Status: not satisfied + - Gold (b): [और] मुस्लिमों के --> property --> सभी पर्व + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Status: not satisfied + Compensatory Extractions: + - Gold (a): मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + Status: not satisfied + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +- द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +- द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +- रिलीज़ किया गया कब 20 जुलाई 2012 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: not satisfied + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: not satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: not satisfied + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: not satisfied + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- यह लगा जाता है जर्मनी के फ्रैंकफर्ट शहर मे +- यह property हर साल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: not satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- द्रौपदी ने गले में वरमाला डाल दिया अर्जुन के +- वरमाला property द्रौपदी ने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: not satisfied + - Gold: वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: not satisfied + - Gold: [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- यह त्यौहार मनाया जाता है राम नवमी के दौरान +- यह त्यौहार location पूरे उत्तर भारत में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- तटीय कर्नाटक के भोजन उपयोग समुद्री भोजन +- तटीय कर्नाटक के भोजन उपयोग नारियल +- तटीय कर्नाटक के भोजन उपयोग नारियल तेल +- नारियल property नारियल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Status: not satisfied + Compensatory Extractions: + - Gold (a): समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + - Gold (b): तटीय --> property --> कर्नाटक [के] + Status: not satisfied + - Gold (c): भोजन में --> property --> [तटीय]{b} कर्नाटक के + Status: not satisfied + - Gold (d): नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को +- कार्ल ने property अध्ययन के साथ +- अध्ययन के साथ property उपेक्षित जीवविज्ञान उद्यान को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: not satisfied + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड कहते हैं +- सिफीड property सिफियस चतुर्थ की श्रेणी के तारों को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- प्राथमिक विधि के नाम से प्रसिद्ध है अध्यारोप +- अध्यारोप property प्राथमिक विधि + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- चीन से संपर्क रहा है जापान से +- इस देश property अधिक संपर्क +- इस देश property चीन तथा जापान से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +- ज्योतिष गणना property कश्यप ने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: not satisfied + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- खानों में प्रयुक्त होती है मोमबत्तियाँ +- मोमबत्तियाँ property अभ्रक आदि की +- मोमबत्तियाँ property खानों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: satisfied but with a |OR| satisfied but with a + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: not satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उन्होंने लिखे हैं कहानियाँ और उपन्यास +- उन्होंने property इस शैली में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: not satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मुख्य न्यायाधीश पहला दलित +- मुख्य न्यायाधीश पहला मलयाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वो --> हैं --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: पहले दलित --> property --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=2, FP=0, FN=1 + +--- Model Extractions --- +- उन्होंने पेश किया सरकार का वार्षिक बजट +- बजट property सरकार का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: not satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied but with c + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied but with c + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +- चाय के व्यापार property पूरी तरह से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: not satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: not satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में +- प्रोफ़ाइल property आधारभूत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्हें जाना जाता है उत्कल मणि +- उत्कल मणि property उन्हें + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +- अधिक जानकारी के लिए property फ्रेंच फ्लेमिश को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: not satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +- इस नदी का ज्यादातर अंश property इस नदी का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: not satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- मत्रूह मुहाफ़ज़ाह अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा +- लीबियाई रेगिस्तान का हिस्सा property मत्रूह मुहाफ़ज़ाह +- मत्रूह मुहाफ़ज़ाह contains सीवा नख़लिस्तान ओएसिस + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: not satisfied + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: not satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- राज्य की राजधानी है बंगलुरु शहर +- बंगलुरु शहर property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +- कहानियों के लिए property ये +- property property अपनी रहस्यमयी और भयावह + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Status: satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Status: not satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों + Status: not satisfied + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- उनका प्रकाशित हुए हैं एक कहानी संग्रह और दो निबंध संग्रह +- एक कहानी संग्रह property उनका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: not satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +- सुपद्य व्याकरण property 15 वीं शताब्दी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- अलबामा स्थित हैं फ्लोरिडा राज्य +- अलबामा property इसके पश्चिम में +- फ्लोरिडा राज्य property इसके दक्षिण में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: not satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +Cluster: cluster 2 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- योगीजनों कहते हैं आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं +- ज्ञान के द्वारा आत्यन्तिक प्रलय +- आत्यन्तिक प्रलय property योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Status: not satisfied + Compensatory Extractions: + - Gold (a): योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + Status: not satisfied + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=0, FP=2, FN=3 + +--- Model Extractions --- +- जंगलों की विशेषता विभाजित किया है इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +- इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में property कुछ लोगों ने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +Metrics: TP=0, FP=1, FN=1 + +--- Model Extractions --- +- प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी पर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + Status: not satisfied + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों को +- जन्म property ईसा मसीह के +- वर्षों property पूर्व + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + - Gold: ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + Status: not satisfied + - Gold (b): जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + Status: not satisfied + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सीता राम पहनती हैं जयमाल +- सीता राम property विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य +- विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष property सीता राम को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +- स्थान का नाम property विभिन्न स्रोत इस तथ्य पर बटे हुए हैं + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: not satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +- अध्यक्ष property अलगअलग +- अलगअलग property विभिन्न + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=1, FP=1, FN=2 + +--- Model Extractions --- +- एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +- एल्बम से तीसरा कट property एकलों के बीच एक लंबे अंतराल के बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: not satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सब बनाए व्यवस्था +- व्यवस्था property चलाने की +- व्यवस्था property स्वयं करनी पड़ी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: not satisfied + - Gold: उनके सामने --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + - Gold: [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: not satisfied + - Gold: उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + Status: not satisfied + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- विकासों बेहतर कर दिया था परिणामों +- विकासों property 1900 के आसपास +- परिणामों property निमोनिया से पीड़ित लोगों के लिये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: not satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- आपके योगदान है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +- आपके property अपने पिता के समान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मेसोथेलियोमा उत्पन्न होने के मामले 1 3 माह के संपर्क में भी +- मेसोथेलियोमा property उदाहरण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: not satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- प्राणी मिलते नहीं है वास्तव में प्राणी +- प्राणी सामना होता है जहां + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इश -- डू में --> सामना होता है --> दो प्राणियों का + Status: not satisfied + - Gold: इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + Status: not satisfied + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- अक्ष होने चाहिये बिन्दुगामी +- अक्ष property बिन्दुगामी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + - Gold: उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- किसानों के दूध विपणन बदल रहे हैं अपने ही पड़ोस में +- किसानों के दूध विपणन property तेजी से बदल रहे हैं +- किसानों के दूध विपणन location विकासशील देशों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + Status: not satisfied + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Status: not satisfied + Compensatory Extractions: + - Gold (a): किसानों के --> property --> दूध विपणन के [पुराने] तरीके + Status: not satisfied + - Gold (b): [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + Status: not satisfied + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- उन्होंने की शुरुआत अपने बोलीवुड करियर की +- उन्होंने की शुरुआत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + Status: not satisfied + - Gold: उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + Status: not satisfied + - Gold: जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + Status: not satisfied + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +- इस रोग के प्रतिषेधात्मक उपचार में property बचाना + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- राष्ट्रीयता संदर्भित करता है टीम की +- राष्ट्रीयता संदर्भित करता है गाड़ी निर्माता या चालक की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: not satisfied + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: not satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- सड़क मार्ग से रत्नागिरी के लिए मुंबई से सीधी बस सेवा है +- बस सेवा property सीधी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- शिल्पी निर्माण करते थे लकड़ी के ब्लाकों का +- शिल्पी property छपाई में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: not satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- सरकारी इकाई के लिये प्रयोग में आता है विधि बनाने वाली +- विधि property विधि बनाने वाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- उत्तर प्रदेश के बलिया जिले में स्थित है स्थित है बलिया जिले में +- बलिया जिले में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- बलिया शहर से थोड़ी दूर पश्चिम में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: not satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: not satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: not satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=0, FP=4, FN=3 + +--- Model Extractions --- +- उन्होने नहीं किया करते थे हत्या +- हत्या property पिता की +- अन्य सम्राट property सम्राट +- उन्होने property उसे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: not satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: not satisfied + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- प्रत्येक खिलाड़ी के लिये निर्धारण हवाओं की स्थिति का +- स्थिति property हवाओं की +- पासा फेंककर method निर्धारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- हाइपरयूरीसेमिया कारण होता है वात रोग का मूल कारण +- हाइपरयूरीसेमिया property वात रोग का मूल कारण +- हाइपरयूरीसेमिया property वाता रोग का मूल कारण + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: not satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +- केरल property विश्व भर में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + Status: satisfied + - Gold: केरल --> प्रसिद्ध है --> विश्व भर में + Status: not satisfied + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +- उदगम property सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- परम्परागत चित्रकला प्राधान्य था दक्षिण भारत में +- परम्परागत चित्रकला property दक्षिण भारत में +- परम्परागत चित्रकला property उन दिनों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + Status: not satisfied + - Gold: उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + Status: not satisfied + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कहानियाँ हो सकती हैं किसी देश या समय की +- कहानियाँ property किसी देश या समय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं प्रोत्साहित करते हैं और भी कुछ +- प्रकृति property निर्माण को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + Status: not satisfied + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- दर्शन परिषद् सम्पन्न हुआ 2010 को +- दर्शन परिषद् property 2010 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +Metrics: TP=0, FP=3, FN=4 + +--- Model Extractions --- +- रथयात्रा के दिन देहांत हो गया यहीं पर +- देहांत property 47 वर्ष की अल्पायु में +- देहांत property सन 1533 में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यहीं पर --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: सन 1533 में --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + Status: not satisfied + - Gold: रथयात्रा के दिन --> देहांत हो गया --> उनका + Status: not satisfied + Compensatory Extractions: + - Gold (a): अल्पायु [में] --> property --> 47 वर्ष [की] + Status: not satisfied + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=0, FP=1, FN=2 + +--- Model Extractions --- +- पंतन कहा जाता है पंतन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: not satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: not satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- वे property एकाधिक अवसर पर यूरोपियन कप जीता +- वे property तीसरे ब्रिटिश प्रबंधक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: not satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- मॉस जल रोक रखा जाता है मिट्टी में +- मिट्टी property मिट्टी में +- मिट्टी property मिट्टी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: not satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- महाभारत भण्डार है वर्तमान रूप प्राचीन इतिहास कथाओं आदि +- महाभारत property प्राचीन इतिहास कथाओं +- महाभारत property उपदेशों + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: not satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_analysis.txt b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_analysis.txt new file mode 100644 index 0000000..f7bf61f --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/detailed_analysis/formatted_triplets_analysis.txt @@ -0,0 +1,3170 @@ +Detailed Analysis Report +================================================== + +Sentence ID: 1 +Sentence Text: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कार्यरूप जगत को देखकर शक्तिरूपी माया की सििद्ध होती है +- शक्तिरूपी माया की सििद्ध होती है property कार्यरूप जगत को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): शक्तिरूपी --> property --> माया [की] + Status: not satisfied + - Gold (b): कार्यरूप --> property --> जगत [को] + Status: not satisfied + +================================================== + +Sentence ID: 2 +Sentence Text: अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +- अखिल भारतीय पुलिस डयूटी मीट property 1958 से +- अंगुलि चिह्न विज्ञान प्रतियोगिता property 1958 से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट + Status: not satisfied + - Gold (b): अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता + Status: not satisfied + +================================================== + +Sentence ID: 3 +Sentence Text: केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +Metrics: TP=0, FP=6, FN=3 + +--- Model Extractions --- +- विवादित अंगुलि चिह्नों का परीक्षण भेजे गए केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +- परीक्षण property केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +- विभाग property केन्द्रीय सरकार के +- उपक्रम property भारत सरकार के +- विभाग property केन्द्रीय सरकार +- उपक्रम property भारत सरकार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा + Status: not satisfied + - Gold: [केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + - Gold: [भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का + Status: not satisfied + Compensatory Extractions: + - Gold (a): विवादित --> property --> अंगुलि चिह्नों [का] + Status: not satisfied + - Gold (b): केन्द्रीय --> property --> सरकार के विभागों + Status: not satisfied + - Gold (c): भारत --> property --> सरकार के उपक्रमों + Status: not satisfied + +================================================== + +Sentence ID: 4 +Sentence Text: 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- 007 प्रसिद्ध गुप्त नाम से +- 007 मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +- एजेंट property फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +- फ़्लेमिंग property एजेंट + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): प्रसिद्ध --> property --> 007 के गुप्त नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट + Status: not satisfied + - Gold: [007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट + Status: not satisfied + Compensatory Extractions: + - Gold (a): फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + - Gold (c): प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से + Status: not satisfied + - Gold (d): 007 [के] --> property --> गुप्त नाम [से] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध + Status: not satisfied + - Gold (b): फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट + Status: not satisfied + +================================================== + +Sentence ID: 5 +Sentence Text: 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- उन्होंने शुरू की अपनी एक पत्रिका साधु +- पत्रिका property साधु +- property property एक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु + Status: not satisfied + - Gold (b): [अपनी] एक पत्रिका --> property --> साधु + Status: not satisfied + +================================================== + +Sentence ID: 6 +Sentence Text: 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कंपनी लागू किया गया नवीनतम वेतनमानों +- वेतनमान property नवीनतम + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + - Gold: कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 01 अप्रैल --> property --> 2009 से + Status: not satisfied + - Gold (b): नवीनतम --> property --> वेतनमानों [को] + Status: not satisfied + +================================================== + +Sentence ID: 7 +Sentence Text: 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर + - 01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई + Compensatory Extractions: + - (a) गोधरा --> property --> ट्रेन कांड + - (b) सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की + - (c) अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] + +Cluster: cluster 2 + Essential Extractions: + - [गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर + - 01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई + Compensatory Extractions: + - (a) गोधरा --> property --> ट्रेन कांड + - (b) अहमदाबाद के --> property --> साबरमती केंद्रीय जेल + +================================================== + +Sentence ID: 8 +Sentence Text: 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- वे appointment सर्वोच्च न्यायालय की न्यायाधीश +- न्याधीश property सर्वोच्च न्यायालय की +- न्याधीश appointment 1989 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई + Status: not satisfied + - Gold (b): सर्वोच्च न्यायालय की --> property --> न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 9 +Sentence Text: 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- लोग धर्म कोई विशेष नहीं +- धर्म property विशेष + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: 06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था + Status: not satisfied + +================================================== + +Sentence ID: 10 +Sentence Text: 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पहला डाक टिकट जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +- इम्पीरियल पोस्टल सर्विस property 1 अक्टूबर 1854 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया + Status: not satisfied + - Gold (b): पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट + Status: not satisfied + +================================================== + +Sentence ID: 11 +Sentence Text: 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +Metrics: TP=0, FP=7, FN=2 + +--- Model Extractions --- +- आंध्र के साथ कर्नूल को अपनी राजधानी +- आंध्र राज्य का दर्जा राज्य का +- आंध्र की 1 अक्टूबर 1953 को +- राज्य का राज्य +- राज्य के साथ कर्नूल को अपनी राजधानी +- राज्य के साथ राज्य का दर्जा +- राज्य के साथ 1 अक्टूबर 1953 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + - Gold (c): कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का + Status: not satisfied + - Gold: [1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया + Status: not satisfied + +================================================== + +Sentence ID: 12 +Sentence Text: 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- दूसरा सीज़न जारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में +- सीज़न property दूसरा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में + Status: not satisfied + - Gold (b): [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न + Status: not satisfied + - Gold (c): दूसरा --> property --> सीज़न + Status: satisfied + +================================================== + +Sentence ID: 13 +Sentence Text: 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- रॉबर्ट आइगर ने स्थान लिया माइकल आइजनर +- माइकल आइजनर सीईओ अक्टूबर को +- अक्टूबर को property 1 + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में + Status: not satisfied + - Gold: [1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया + Status: not satisfied + +================================================== + +Sentence ID: 14 +Sentence Text: 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- देश आजाद हुआ 1 अक्टूबर 1960 को +- शासन property इंग्लैंड के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ + Status: not satisfied + - Gold (b): शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} + Status: satisfied + +================================================== + +Sentence ID: 15 +Sentence Text: 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- चन्द्रसिंह भेज दिया गया फ्रांस +- चन्द्रसिंह property अन्य गढ़वाली सैनिकों के साथ +- सैनिक property गढ़वाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा + Status: not satisfied + - Gold: अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस + Status: not satisfied + - Gold: [अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया + Status: not satisfied + - Gold (b): गढ़वाली --> property --> सैनिकों [के साथ] + Status: not satisfied + +================================================== + +Sentence ID: 16 +Sentence Text: 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +Metrics: TP=1, FP=2, FN=2 + +--- Model Extractions --- +- 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +- गोविंद बल्लभ पन्त property इसके पहले मुख्य मन्त्री +- 1 अप्रैल 1946 को property स्वायत्तशासी प्रान्त + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त + Status: not satisfied + - Gold: गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया + Status: satisfied + - Gold (b): स्वायत्तशासी --> property --> प्रान्त + Status: not satisfied + - Gold (c): इसके पहले --> property --> मुख्य मन्त्री + Status: not satisfied + +================================================== + +Sentence ID: 17 +Sentence Text: हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- हिन्दी प्रचार सभा थी एक आन्दोलन +- हिन्दी प्रचार सभा आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ +- आन्दोलन property भारत के स्वतन्त्रता आन्दोलन के साथ + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हिन्दी प्रचार सभा --> थी --> एक आन्दोलन + Status: satisfied + - Gold: हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ + Status: satisfied + Compensatory Extractions: + - Gold (a): भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] + Status: not satisfied + +================================================== + +Sentence ID: 18 +Sentence Text: बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- आभा दिखाई देती है कर्म के चेहरे पर +- आभा property अनूठी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा + Status: not satisfied + Compensatory Extractions: + - Gold (a): बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा + Status: not satisfied + - Gold (b): कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर + Status: not satisfied + - Gold (c): एक अनूठी --> property --> आभा + Status: not satisfied + +================================================== + +Sentence ID: 19 +Sentence Text: तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +- सोनू property तब से अब तक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती + Status: not satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] + Status: not satisfied + - Gold: तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू + Status: not satisfied + Compensatory Extractions: + - Gold (a): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती + Status: satisfied + - Gold: सोनू --> बन चुके हैं --> तब से [अब तक]{c} + Status: not satisfied + Compensatory Extractions: + - Gold (a): [भारतीय]{b} संगीत जगत में --> property --> सोनू + Status: not satisfied + - Gold (b): भारतीय --> property --> संगीत जगत में + Status: not satisfied + - Gold (c): सोनू --> बन चुके हैं --> अब तक + Status: not satisfied + +================================================== + +Sentence ID: 20 +Sentence Text: कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम वर्गीकरण +- कोप्पेन मौसम वर्गीकरण property मौसम आकलन के लिए +- मौसम वर्गीकरण property मौसम आकलन के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण + Status: not satisfied + - Gold: कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] + Status: satisfied + Compensatory Extractions: + - Gold (a): [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण + Status: not satisfied + - Gold (b): सबसे अधिक --> property --> प्रयोगनीय + Status: not satisfied + +================================================== + +Sentence ID: 21 +Sentence Text: बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +Metrics: TP=2, FP=2, FN=1 + +--- Model Extractions --- +- सोवियत दस्तों ने क़ब्ज़ा करने के बाद बर्लिन पर +- सोवियत दस्तों ने आज़ाद कराया प्राग को +- प्राग को property चेकोस्लोवाकिया की राजधानी +- प्राग property प्राग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: satisfied but with a + - Gold: सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] + Status: satisfied + - Gold (b): राजधानी --> property --> चेकोस्लोवाकिया की + Status: not satisfied + +================================================== + +Sentence ID: 22 +Sentence Text: योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- राष्ट्रपति प्राप्त करने वाले योग एवं शिक्षा के क्षेत्र में +- राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +- राष्ट्रपति property योग एवं शिक्षा के क्षेत्र में +- राष्ट्रपति property पद्म श्री सम्मान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वे --> हैं --> प्रथम भारतीय + Status: not satisfied + - Gold: [राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे + Status: not satisfied + - Gold: वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रथम भारतीय --> property --> वे + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] + Status: not satisfied + Compensatory Extractions: + - Gold (a): योग एवं --> property --> शिक्षा + Status: not satisfied + - Gold (b): राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान + Status: not satisfied + +================================================== + +Sentence ID: 23 +Sentence Text: सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- वित्तीय सहायता दी जाती है सभी बच्चों को +- पूरी करने तक property स्कूल की पढ़ाई + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: satisfied + - Gold: [स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): स्कूल की --> property --> पढ़ाई [पूरी करने तक] + Status: not satisfied + - Gold (b): वित्तीय --> property --> सहायता [भी] + Status: not satisfied + +================================================== + +Sentence ID: 24 +Sentence Text: आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- यह स्थान है क्षेत्र के लोगों के लिए दर्शनीय केन्द्र +- क्षेत्र के लोगों के property लोगों के +- लोग property के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए + Status: not satisfied + - Gold: यह स्थान --> दर्शनीय केन्द्र है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह स्थान --> है --> [दर्शनीय]{a} केन्द्र + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold: [दर्शनीय]{a} केन्द्र --> है --> आज भी + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> property --> केन्द्र + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय + Status: not satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): लोगों के लिए --> property --> क्षेत्र के + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र + Status: satisfied + Compensatory Extractions: + - Gold (a): दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए + Status: not satisfied + - Gold (b): क्षेत्र के --> property --> लोगों के लिए + Status: not satisfied + +================================================== + +Sentence ID: 25 +Sentence Text: इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +- पाणिनीय व्याकरण property वेदाङ्ग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का + Status: satisfied + - Gold: इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्रतिनिधित्व --> property --> करता है + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 26 +Sentence Text: मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +- मैं समझकर शब्द की आत्मा + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की + Status: satisfied + - Gold: [शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं + Status: not satisfied + Compensatory Extractions: + - Gold (a): शब्द की --> property --> आत्मा [समझकर ही] + Status: not satisfied + - Gold (b): इस श्रेष्ठ --> property --> तत्त्व की + Status: not satisfied + +================================================== + +Sentence ID: 27 +Sentence Text: हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- हिमाचल प्रदेश में बहने वाली पांच नदियों उल्लेख ऋग्वेद में +- पांच नदियों स्थान हिमाचल प्रदेश में +- पांच नदियों property पांच + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] + Status: not satisfied + +================================================== + +Sentence ID: 28 +Sentence Text: उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उन्होंने इंकार कर दिया बच्चे को +- बच्चे को property देने से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से + Status: not satisfied + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को + Status: not satisfied + Compensatory Extractions: + - Gold (a): बच्चे को --> देने से --> स्पष्ट इंकार कर दिया + Status: not satisfied + +================================================== + +Sentence ID: 29 +Sentence Text: शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +- अध्ययन property तुलनात्मक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से + Status: satisfied + Compensatory Extractions: + - Gold (a): तुलनात्मक अध्ययन --> property --> शिक्षा का + Status: not satisfied + +================================================== + +Sentence ID: 30 +Sentence Text: गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- गुजरात क्वीन एक्स्प्रेस संचालित भारतीय रेल द्वारा +- गुजरात क्वीन एक्स्प्रेस प्रकार मेल एक्स्प्रेस ट्रेन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): भारतीय --> property --> रेल [द्वारा संचालित] + Status: not satisfied + - Gold (b): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित + Status: not satisfied + Compensatory Extractions: + - Gold (a): 9110 --> property --> गुजरात क्वीन एक्स्प्रेस + Status: not satisfied + +================================================== + +Sentence ID: 31 +Sentence Text: वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +- हिल स्टेशन location पश्चिम बंगाल का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन + Status: not satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का + Status: satisfied + - Gold: वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: [वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन + Status: not satisfied + Compensatory Extractions: + - Gold (a): पश्चिम बंगाल का --> property --> यह शहर + Status: not satisfied + - Gold (b): वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर + Status: not satisfied + +================================================== + +Sentence ID: 32 +Sentence Text: सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- गंगोलीहाट तहसील में कुमाऊँ मण्डल +- पिथोरागढ जिले का गंगोलीहाट तहसील +- पिथोरागढ जिले का उत्तराखण्ड राज्य +- गंगोलीहाट तहसील में सिलकोट + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सिलकोट --> है --> एक गाँव + Status: not satisfied + - Gold: सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} + Status: not satisfied + - Gold (c): कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] + Status: not satisfied + - Gold (d): उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} + Status: not satisfied + - Gold: उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] + Status: not satisfied + - Gold: सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} + Status: not satisfied + - Gold (b): सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का + Status: not satisfied + +================================================== + +Sentence ID: 33 +Sentence Text: एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- एयर लाइन के तकनीकी केंद्र को स्थापना तिरकुवनंतपुरम में +- एयर लाइन property के तकनीकी केंद्र को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): तकनीकी केंद्र [को] --> property --> एयर लाइन [के] + Status: not satisfied + +================================================== + +Sentence ID: 34 +Sentence Text: चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- मामले पेश हुए चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +- मामले property मुख्य न्यायाधीश सर लुइस शर्ट +- मामले property विशेष न्यायाधीश मोहम्मद रजा के सामने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] + Status: not satisfied + - Gold (c): [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (d): चीफ कोर्ट के --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट + Status: not satisfied + - Gold (b): विशेष न्यायाधीश --> property --> मोहम्मद रजा + Status: not satisfied + +================================================== + +Sentence ID: 35 +Sentence Text: किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- बाशो मृत्यु 28 नवम्बर 1694 को +- बाशो कारण किसी बीमारी की वजह से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को + Status: not satisfied + - Gold: बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से + Status: not satisfied + +================================================== + +Sentence ID: 36 +Sentence Text: जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- विक्रम ने सोचा एक हल +- विक्रम ने हल एक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विक्रम ने --> सोचा --> एक हल + Status: satisfied + - Gold: विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल + Status: not satisfied + +================================================== + +Sentence ID: 37 +Sentence Text: सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- शाही सेना मुकाबला पंचायती सेना +- मुकाबला property 1696 में +- मुकाबला property एक बार फिर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + - Gold: सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का + Status: not satisfied + - Gold: एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + Compensatory Extractions: + - Gold (a): शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का + Status: not satisfied + +================================================== + +Sentence ID: 38 +Sentence Text: मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +Metrics: TP=0, FP=8, FN=2 + +--- Model Extractions --- +- मर्लगोंड एक गाँव +- मर्लगोंड स्थान कुभीर मण्डल +- मर्लगोंड स्थान भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +- मर्लगोंड स्थान अदिलाबादु जिले +- अदिलाबादु जिले स्थान अदिलाबादु +- अदिलाबादु स्थान अदिलाबादु जिले +- अदिलाबादु स्थान आंध्र प्रदेश राज्य +- आंध्र प्रदेश राज्य स्थान भारत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मर्लगोंड --> है --> एक गाँव + Status: not satisfied + - Gold: मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में + Status: not satisfied + - Gold: मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में + Status: not satisfied + - Gold: एक गाँव है --> property --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के + Status: not satisfied + - Gold: भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का + Status: not satisfied + - Gold: अदिलाबादु जिले का --> property --> कुभीर मण्डल में + Status: not satisfied + - Gold: भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का + Status: not satisfied + - Gold: मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + - Gold (b): कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत + Status: not satisfied + +================================================== + +Sentence ID: 39 +Sentence Text: बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- व्याकरण के दर्शन पक्ष पर लिखे गये अनेक ग्रन्थ +- ग्रन्थ property अनेक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ + Status: satisfied + - Gold: बाद में --> लिखे गये --> अनेक ग्रन्थ + Status: not satisfied + Compensatory Extractions: + - Gold (a): व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर + Status: not satisfied + +================================================== + +Sentence ID: 40 +Sentence Text: 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- मेजबान बना इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +- मेजबान property निदेशक +- निदेशक location इलाहाबाद में +- निदेशक time 1975 में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + Compensatory Extractions: + - Gold (a): 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में + Status: not satisfied + - Gold (b): इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता + Status: not satisfied + +================================================== + +Sentence ID: 41 +Sentence Text: उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- उनके नाम पर रखा गया इस जगह का नाम +- इस जगह का नाम property रुस्तम खान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम + Status: satisfied + - Gold: इस जगह का नाम --> रखा गया --> रुस्तम खान + Status: not satisfied + Compensatory Extractions: + - Gold (a): उनके --> property --> नाम पर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): रुस्तम खान --> रखा गया --> जगह का नाम + Status: not satisfied + +================================================== + +Sentence ID: 42 +Sentence Text: कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +Metrics: TP=1, FP=3, FN=0 + +--- Model Extractions --- +- कुछ लोग पसंद करते हैं इस आपाधापी से दूर अपने घर पर ही रहना +- घर पर property अपने +- घर property अपने +- घर location इस आपाधापी से दूर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना + Status: not satisfied + - Gold: [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना + Status: satisfied + Compensatory Extractions: + - Gold (a): [अपने] घर पर ही --> property --> रहना + Status: not satisfied + - Gold (b): [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर + Status: not satisfied + +================================================== + +Sentence ID: 43 +Sentence Text: मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- उनकी वापसी हूँ अमरीका के अट्ठाइसवें +- उनकी वापसी property मार्च 2001 में एक बार फिर +- उनकी वापसी property अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> वापसी हुई [फिर] --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: [अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + - Gold: मार्च 2001 में --> [फिर] वापसी हुई --> उनकी + Status: not satisfied + Compensatory Extractions: + - Gold (a): अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में + Status: not satisfied + - Gold (b): अट्ठाइसवें --> property --> रक्षा सचिव के रूप में + Status: not satisfied + +================================================== + +Sentence ID: 44 +Sentence Text: इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- सर वाईकर रखी गयी थी इसकी रचना की आधारशिला +- आधारशिला property 3 मार्च 1884 को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: 3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला + Status: not satisfied + Compensatory Extractions: + - Gold (a): आधारशिला --> property --> इसकी रचना की + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + - Gold: [इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसकी --> property --> रचना की + Status: not satisfied + +================================================== + +Sentence ID: 45 +Sentence Text: इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +- उसका property इस तकनीक के लिए +- इस तकनीक property विभिन्न टेलीविजन कंपनियों से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से + Status: satisfied + - Gold: इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह + Status: not satisfied + +================================================== + +Sentence ID: 46 +Sentence Text: त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- त्रिदेवनाथ बैनर्जी सम्मानित किया गया था सन 1961 में पद्म भूषण से +- पद्म भूषण property सन 1961 में +- पद्म भूषण property चिकित्सा विज्ञान के क्षेत्र में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से + Status: not satisfied + - Gold: त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + Compensatory Extractions: + - Gold (a): चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से + Status: not satisfied + +================================================== + +Sentence ID: 47 +Sentence Text: मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्होने रचना की मराठी के अतिरिक्त हिन्दी फिल्मों के लिए +- मराठी के अतिरिक्त property हिन्दी फिल्मों के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + Compensatory Extractions: + - Gold (a): मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने + Status: not satisfied + +================================================== + +Sentence ID: 48 +Sentence Text: काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- काइटिन उपयोग किया जाता है औद्योगिक रूप से अनेक प्रक्रियाओं में +- काइटिन property औद्योगिक रूप से अनेक प्रक्रियाओं में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में + Status: not satisfied + +================================================== + +Sentence ID: 49 +Sentence Text: हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- हिंदू मनाए जाते हैं मुस्लिम के सभी पर्व +- पर्व मनाए जाते हैं हिंदू और मुस्लिमों के +- पर्व मनाए जाते हैं सभी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर + Status: not satisfied + Compensatory Extractions: + - Gold (a): हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व + Status: not satisfied + - Gold (b): [और] मुस्लिमों के --> property --> सभी पर्व + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व + Status: not satisfied + Compensatory Extractions: + - Gold (a): मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व + Status: not satisfied + +================================================== + +Sentence ID: 50 +Sentence Text: द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका संयुक्त राजशाही व कनाडा में +- रिलीज़ किया गया रिलीज़ 20 जुलाई 2012 को +- रिलीज़ रिलीज़ 20 जुलाई 2012 को +- रिलीज़ रिलीज़ अमेरिका संयुक्त राजशाही व कनाडा में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} + Status: not satisfied + - Gold: द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को + Status: not satisfied + Compensatory Extractions: + - Gold (a): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} + Status: not satisfied + - Gold (b): 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} + Status: not satisfied + - Gold (c): द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + - Gold (d): 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में + Status: not satisfied + +================================================== + +Sentence ID: 51 +Sentence Text: यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- यह लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर मे +- यह property हर साल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल + Status: not satisfied + - Gold: यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में + Status: satisfied + Compensatory Extractions: + - Gold (a): फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} + Status: not satisfied + +================================================== + +Sentence ID: 52 +Sentence Text: द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- द्रौपदी ने डाल दिया अर्जुन के गले में वरमाला +- वरमाला property द्रौपदी ने +- वरमाला property आगे बढ़ कर +- द्रौपदी ने property आगे बढ़ कर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: not satisfied + - Gold: वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला + Status: not satisfied + - Gold: [आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला + Status: not satisfied + Compensatory Extractions: + - Gold (a): अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में + Status: not satisfied + +================================================== + +Sentence ID: 53 +Sentence Text: यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- त्यौहार मनाया जाता है पूरे उत्तर भारत में +- त्यौहार property राम नवमी के दौरान +- त्यौहार location पूरे उत्तर भारत में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान + Status: not satisfied + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान + Status: not satisfied + Compensatory Extractions: + - Gold (a): पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार + Status: not satisfied + - Gold (b): यह --> property --> त्यौहार + Status: not satisfied + +================================================== + +Sentence ID: 54 +Sentence Text: तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- तटीय कर्नाटक के भोजन में उपयोग समुद्री भोजन +- तटीय कर्नाटक के भोजन में उपयोग नारियल +- तटीय कर्नाटक के भोजन में उपयोग नारियल तेल +- नारियल तेल property नारियल + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग + Status: not satisfied + Compensatory Extractions: + - Gold (a): समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + - Gold (b): तटीय --> property --> कर्नाटक [के] + Status: not satisfied + - Gold (c): भोजन में --> property --> [तटीय]{b} कर्नाटक के + Status: not satisfied + - Gold (d): नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में + Status: not satisfied + +================================================== + +Sentence ID: 55 +Sentence Text: कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को +- कार्ल ने अध्ययन के साथ उपेक्षित जीवविज्ञान उद्यान को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] + Status: not satisfied + +================================================== + +Sentence ID: 56 +Sentence Text: सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +- सिफीड property सिफियस चतुर्थ की श्रेणी के तारों को +- सिफियस चतुर्थ की श्रेणी के तारों को property सिफीड + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड + Status: satisfied + Compensatory Extractions: + - Gold (a): सिफियस चतुर्थ की --> property --> श्रेणी + Status: not satisfied + +================================================== + +Sentence ID: 57 +Sentence Text: यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- अध्यारोप प्रसिद्ध है विधि प्राथमिक +- विधि property प्राथमिक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] + Status: not satisfied + +================================================== + +Sentence ID: 58 +Sentence Text: चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- चीन तथा जापान से संपर्क रहा है इस देश का +- इस देश property अधिक + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से + Status: not satisfied + +================================================== + +Sentence ID: 59 +Sentence Text: कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +- ज्योतिष गणना property कश्यप ने + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके + Status: not satisfied + - Gold: कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में + Status: not satisfied + - Gold (b): राजा की --> property --> आयु में + Status: not satisfied + +================================================== + +Sentence ID: 60 +Sentence Text: अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +Metrics: TP=2, FP=1, FN=0 + +--- Model Extractions --- +- मोमबत्तियाँ प्रयुक्त होती है खानों में +- खानों में property अभ्रक आदि की +- अभ्रक आदि की property खानों में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] + Status: satisfied but with a |OR| satisfied but with a + Compensatory Extractions: + - Gold (a): अभ्रक [आदि] की --> property --> खानों में + Status: satisfied + +================================================== + +Sentence ID: 61 +Sentence Text: इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- उन्होंने लिखे हैं कहानियाँ और उपन्यास +- उपन्यास property इस शैली में +- कहानियाँ property इस शैली में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} + Status: not satisfied + - Gold: उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इस शैली में --> लिखे हैं --> [और] उपन्यास + Status: not satisfied + +================================================== + +Sentence ID: 62 +Sentence Text: वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- मुख्य न्यायाधीश पहला दलित +- मुख्य न्यायाधीश पहला मलयाली +- मुख्य न्यायाधीश property दलित +- मुख्य न्यायाधीश property मलयाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वो --> हैं --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: पहले दलित --> property --> मुख्य न्यायाधीश + Status: not satisfied + - Gold: [और] पहले मलयाली --> property --> मुख्य न्यायाधीश + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + Compensatory Extractions: + - Gold (a): पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश + Status: not satisfied + +================================================== + +Sentence ID: 63 +Sentence Text: 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +Metrics: TP=2, FP=0, FN=1 + +--- Model Extractions --- +- उन्होंने पेश किया सरकार का वार्षिक बजट +- बजट property सरकार का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने + Status: not satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied but with c + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: 6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने + Status: not satisfied + Compensatory Extractions: + - Gold (a): उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट + Status: satisfied + - Gold (b): सरकार का --> property --> [वार्षिक]{c} बजट + Status: satisfied but with c + - Gold (c): वार्षिक --> property --> बजट + Status: not satisfied + +================================================== + +Sentence ID: 64 +Sentence Text: स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +- चाय के व्यापार property स्थानीय आबादी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी + Status: not satisfied + - Gold (b): चाय के --> निर्भर रहती है --> व्यापार पर + Status: not satisfied + +================================================== + +Sentence ID: 65 +Sentence Text: इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में +- प्रोफ़ाइल property आधारभूत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] + Status: satisfied + +================================================== + +Sentence ID: 66 +Sentence Text: उन्हें उत्कल मणि के नाम से जाना जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- उन्हें जाना जाता है उत्कल मणि +- उत्कल मणि property उन्हें + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से + Status: not satisfied + Compensatory Extractions: + - Gold (a): उत्कल मणि के --> property --> नाम से + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> के नाम से जाना जाता है --> उत्कल मणि + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: उन्हें --> नाम से जाना जाता है --> उत्कल मणि के + Status: not satisfied + +================================================== + +Sentence ID: 67 +Sentence Text: अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +- अधिक जानकारी के लिए property फ्रेंच फ्लेमिश को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: कृपया --> देखें --> फ्रेंच फ्लेमिश को + Status: not satisfied + - Gold: फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए + Status: satisfied + +================================================== + +Sentence ID: 68 +Sentence Text: इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +Metrics: TP=1, FP=1, FN=0 + +--- Model Extractions --- +- इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +- इस नदी का ज्यादातर अंश property नदी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में + Status: satisfied + Compensatory Extractions: + - Gold (a): इस नदी का --> property --> ज्यादातर अंश + Status: not satisfied + +================================================== + +Sentence ID: 69 +Sentence Text: मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- मत्रूह मुहाफ़ज़ाह अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा +- मत्रूह मुहाफ़ज़ाह जिसमें सीवा नख़लिस्तान ओएसिस +- सीवा नख़लिस्तान property ओसिस + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का + Status: not satisfied + - Gold: जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का + Status: not satisfied + - Gold (b): [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) + Status: not satisfied + +================================================== + +Sentence ID: 70 +Sentence Text: राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- राज्य की राजधानी है बंगलुरु शहर +- बंगलुरु property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्ता +- बंगलुरु property भारत + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [राज्य की]{a} राजधानी --> है --> बंगलुरु शहर + Status: satisfied + - Gold: [जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य की --> property --> राजधानी + Status: not satisfied + - Gold (b): [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में + Status: not satisfied + +================================================== + +Sentence ID: 71 +Sentence Text: ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +Metrics: TP=2, FP=1, FN=1 + +--- Model Extractions --- +- कहानियों के लिए प्रसिद्ध हैं ये +- कहानियों property रहस्यमयी और भयावह +- कहानियों property प्रसिद्ध + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए + Status: not satisfied + - Gold (b): [और] भयावह --> property --> कहानियों के लिए + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों + Status: not satisfied + Compensatory Extractions: + - Gold (a): रहस्यमयी [और भयावह]{b} --> property --> कहानियों + Status: satisfied + - Gold (b): [और] भयावह --> property --> कहानियों + Status: not satisfied + +================================================== + +Sentence ID: 72 +Sentence Text: उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +Metrics: TP=1, FP=2, FN=0 + +--- Model Extractions --- +- उनका प्रकाशित हुए हैं एक कहानी संग्रह और दो निबंध संग्रह +- एक कहानी संग्रह property उनका +- दो निबंध संग्रह property उनका + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} + Status: satisfied + Compensatory Extractions: + - Gold (a): उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह + Status: not satisfied + +================================================== + +Sentence ID: 73 +Sentence Text: पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +- सुपद्य व्याकरण property 15 वीं शताब्दी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण + Status: satisfied + - Gold: ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण + Status: satisfied but with a + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा + Status: not satisfied + Compensatory Extractions: + - Gold (a): ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण + Status: not satisfied + +================================================== + +Sentence ID: 74 +Sentence Text: इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- अलबामा स्थित हैं दक्षिण में फ्लोरिडा राज्य +- अलबामा पश्चिम में इसके +- फ्लोरिडा पश्चिम में इसके + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसके पश्चिम में --> स्थित हैं --> अलबामा + Status: not satisfied + - Gold: [इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): राज्य --> property --> फ्लोरिडा + Status: not satisfied + +================================================== + +Sentence ID: 75 +Sentence Text: यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +- होबार्ट property ऑस्ट्रेलिया के + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर + Status: not satisfied + Compensatory Extractions: + - Gold (a): ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] + Status: not satisfied + +================================================== + +Sentence ID: 76 +Sentence Text: निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +Cluster: cluster 2 + Essential Extractions: + - निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का + - निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है + Compensatory Extractions: + - (a) सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत + +================================================== + +Sentence ID: 77 +Sentence Text: आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- योगीजनों के ज्ञान लीन हो जाने को कहते हैं ब्रह्म में +- योगीजनों के ज्ञान property आत्यन्तिक प्रलय + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को + Status: not satisfied + Compensatory Extractions: + - Gold (a): योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में + Status: not satisfied + +================================================== + +Sentence ID: 78 +Sentence Text: जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +Metrics: TP=0, FP=2, FN=3 + +--- Model Extractions --- +- जंगलों की विशेषता विभाजित किया है इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +- इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में property जंगलों की विशेषता की दृष्टि से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से + Status: not satisfied + - Gold: इसे --> विभाजित किया है --> कुछ लोगों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में + Status: not satisfied + - Gold (b): इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] + Status: not satisfied + +================================================== + +Sentence ID: 79 +Sentence Text: पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + +Cluster: cluster 2 + Essential Extractions: + - [पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ + +================================================== + +Sentence ID: 80 +Sentence Text: 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - 5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Compensatory Extractions: + - (a) वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + - (b) जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + +Cluster: cluster 2 + Essential Extractions: + - 5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + - ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को + Compensatory Extractions: + - (a) वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के + - (b) जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के + +================================================== + +Sentence ID: 81 +Sentence Text: विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- सीता राम पहनती हैं जयमाल +- सीता राम property विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य +- विश्वामित्र property वैदिक मन्त्रों के स्वरघोष के मध्य + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> राम को जयमाल + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: सीता --> पहनाती हैं --> जयमाल + Status: not satisfied + - Gold: सीता --> पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: सीता --> जयमाल पहनाती हैं --> राम को + Status: not satisfied + - Gold: [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता + Status: not satisfied + Compensatory Extractions: + - Gold (a): विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] + Status: not satisfied + +================================================== + +Sentence ID: 82 +Sentence Text: विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +- स्थान का नाम property एजिंकोर्ट स्क्वायर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर + Status: not satisfied + - Gold: [इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} + Status: not satisfied + Compensatory Extractions: + - Gold (a): किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर + Status: not satisfied + +================================================== + +Sentence ID: 83 +Sentence Text: प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +- अध्यक्ष property अलगअलग +- अलगअलग property अलगअलग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग + Status: not satisfied + - Gold: विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष + Status: not satisfied + +================================================== + +Sentence ID: 84 +Sentence Text: एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +Metrics: TP=1, FP=1, FN=2 + +--- Model Extractions --- +- एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +- एल्बम से तीसरा कट property एकलों के बीच एक लंबे अंतराल के बाद + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में + Status: satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच + Status: not satisfied + - Gold: [एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद + Status: not satisfied + Compensatory Extractions: + - Gold (a): तीसरा कट --> property --> एल्बम [से] + Status: not satisfied + +================================================== + +Sentence ID: 85 +Sentence Text: चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +Metrics: TP=0, FP=4, FN=2 + +--- Model Extractions --- +- सब बनाए व्यवस्था +- व्यवस्था property चलाने की +- व्यवस्था property स्वयं +- सब property बनाने के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: not satisfied + - Gold: उनके सामने --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + - Gold: [चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था + Status: not satisfied + - Gold: उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में + Status: not satisfied + +================================================== + +Sentence ID: 86 +Sentence Text: 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +Metrics: TP=2, FP=1, FN=1 + +--- Model Extractions --- +- विकासों ने बेहतर कर दिया था परिणामों को +- विकासों ने property 1900 के आसपास +- परिणामों को property निमोनिया से पीड़ित लोगों के लिये + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को + Status: not satisfied + - Gold: [1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को + Status: satisfied but with b + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने + Status: not satisfied + Compensatory Extractions: + - Gold (a): निमोनिया से --> पीड़ित --> लोगों के लिये + Status: not satisfied + - Gold (b): विकासों ने --> property --> 1900 के आसपास [बहुत से] + Status: satisfied + +================================================== + +Sentence ID: 87 +Sentence Text: सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- आप योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +- आप योगदान अपने पिता के समान + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + - Gold: [अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में + Status: not satisfied + Compensatory Extractions: + - Gold (a): सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में + Status: not satisfied + +================================================== + +Sentence ID: 88 +Sentence Text: उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मेसोथेलियोमा उत्पन्न होने के मामले 1 3 माह के संपर्क में भी +- मेसोथेलियोमा property 1 3 माह के संपर्क में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले + Status: not satisfied + Compensatory Extractions: + - Gold (a): मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा + Status: not satisfied + +================================================== + +Sentence ID: 89 +Sentence Text: जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- प्राणी सामना होता है दो प्राणियों का +- प्राणी वास्तव में मिलते नहीं है प्राणी + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इश -- डू में --> सामना होता है --> दो प्राणियों का + Status: not satisfied + - Gold: इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में + Status: not satisfied + +================================================== + +Sentence ID: 90 +Sentence Text: ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- तीनों अक्ष होने चाहिए एक बिन्दुगामी भी +- एक बिन्दुगामी property तल में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + - Gold: उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] + Status: not satisfied + +================================================== + +Sentence ID: 91 +Sentence Text: विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- किसानों के दूध विपणन बदल रहे हैं अपने ही पड़ोस में +- किसानों के दूध विपणन property विकासशील देशों में +- किसानों के दूध विपणन property तेजी से + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में + Status: not satisfied + - Gold: [किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में + Status: not satisfied + Compensatory Extractions: + - Gold (a): किसानों के --> property --> दूध विपणन के [पुराने] तरीके + Status: not satisfied + - Gold (b): [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के + Status: not satisfied + +================================================== + +Sentence ID: 92 +Sentence Text: उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + - जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + +Cluster: cluster 2 + Essential Extractions: + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को + - उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से + - जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को + +================================================== + +Sentence ID: 93 +Sentence Text: इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +- इस रोग के प्रतिषेधात्मक उपचार में property मक्खियों से खाद्य एवं पेय पदार्थो को + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: [इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना + Status: not satisfied + Compensatory Extractions: + - Gold (a): उपचार में --> property --> इस रोग के + Status: not satisfied + - Gold (b): मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 3 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को + Status: not satisfied + +Cluster: cluster 4 + Essential Extractions: + - Gold: इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को + Status: not satisfied + +================================================== + +Sentence ID: 94 +Sentence Text: यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- राष्ट्रीयता को संदर्भित करता है संदर्भित करता है टीम की +- गाड़ी निर्माता property राष्ट्रीयता को +- गाड़ी निर्माता property टीम की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को + Status: not satisfied + - Gold: यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को + Status: not satisfied + Compensatory Extractions: + - Gold (a): राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की + Status: not satisfied + +================================================== + +Sentence ID: 95 +Sentence Text: सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +Metrics: TP=1, FP=2, FN=1 + +--- Model Extractions --- +- मुंबई से सीधी बस सेवा है रत्नागिरी के लिए +- बस सेवा मार्ग सड़क मार्ग +- मार्ग property रत्नागिरी के लिए + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से + Status: not satisfied + - Gold: सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से + Status: satisfied + +================================================== + +Sentence ID: 96 +Sentence Text: छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +Metrics: TP=0, FP=2, FN=2 + +--- Model Extractions --- +- शिल्पी निर्माण करते थे लकड़ी के ब्लाकों का +- लकड़ी के ब्लाकों का property छपाई में प्रयोग होता था + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का + Status: not satisfied + - Gold: जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार + Status: not satisfied + Compensatory Extractions: + - Gold (a): ब्लाकों का --> प्रयोग होता था --> लकड़ी के + Status: not satisfied + +================================================== + +Sentence ID: 97 +Sentence Text: यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- सरकारी इकाई के लिये प्रयोग में आता है प्रयोग में आता है विधि बनाने वाली +- विधि property विधि बनाने वाली + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये + Status: not satisfied + Compensatory Extractions: + - Gold (a): सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली + Status: not satisfied + - Gold (b): यह --> property --> शब्द + Status: not satisfied + +================================================== + +Sentence ID: 98 +Sentence Text: यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- उत्तर प्रदेश के बलिया जिले में स्थित है स्थित है बलिया जिले में +- बलिया जिले में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +- बलिया शहर से थोड़ी दूर पश्चिम में स्थित है बलिया शहर से थोड़ी दूर पश्चिम में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में + Status: not satisfied + - Gold: यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में + Status: not satisfied + Compensatory Extractions: + - Gold (a): बलिया जिले में --> property --> उत्तर प्रदेश के + Status: not satisfied + - Gold (b): पश्चिम में --> स्थित है --> बलिया शहर से + Status: not satisfied + +================================================== + +Sentence ID: 99 +Sentence Text: उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- उन्होने नहीं किया करते थे हत्या +- हत्या property पिता की +- हत्या property उसे + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: उन्होने --> हत्या नहीं करवाई --> पिता की + Status: not satisfied + - Gold: उन्होने --> हत्या नहीं करवाई --> उसेक बाद + Status: not satisfied + - Gold: अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या + Status: not satisfied + Compensatory Extractions: + - Gold (a): हत्या --> करते थे --> पिता की + Status: not satisfied + +================================================== + +Sentence ID: 100 +Sentence Text: सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +Metrics: TP=0, FP=3, FN=3 + +--- Model Extractions --- +- प्रत्येक खिलाड़ी के लिये निर्धारण हवाओं की स्थिति का +- हवाओं की स्थिति का property पासा फेंककर +- पासा फेंककर method हवाओं की स्थिति का + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर + Status: not satisfied + - Gold: प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + - Gold: सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का + Status: not satisfied + +================================================== + +Sentence ID: 101 +Sentence Text: हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- हाइपरयूरीसेमिया कारण वात रोग का मूल कारण +- हाइपरयूरीसेमिया property वात रोग का मूल कारण +- हाइपरयूरीसेमिया property रोग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण + Status: not satisfied + +================================================== + +Sentence ID: 102 +Sentence Text: यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +Metrics: TP=1, FP=1, FN=1 + +--- Model Extractions --- +- केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +- केरल property विश्व भर में + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण + Status: satisfied + - Gold: केरल --> प्रसिद्ध है --> विश्व भर में + Status: not satisfied + +================================================== + +Sentence ID: 103 +Sentence Text: इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +- उदगम property सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} + Status: not satisfied + Compensatory Extractions: + - Gold (a): सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका + Status: not satisfied + - Gold (b): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} + Status: not satisfied + - Gold (c): इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग + Status: not satisfied + +================================================== + +Sentence ID: 104 +Sentence Text: दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - [उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] + - उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में + +================================================== + +Sentence ID: 105 +Sentence Text: ये कहानियाँ किसी देश या समय की हो सकती हैं . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- कहानियाँ हो सकती हैं किसी देश या समय की +- कहानियाँ property किसी देश या समय की + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की + Status: not satisfied + Compensatory Extractions: + - Gold (a): ये --> property --> कहानियाँ + Status: not satisfied + +================================================== + +Sentence ID: 106 +Sentence Text: और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं प्रोत्साहित करते हैं कुछ और कारण हैं +- कारण property प्रकृति आधारित निर्माण को +- प्रकृति आधारित निर्माण property प्रकृति + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: [और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को + Status: not satisfied + +================================================== + +Sentence ID: 107 +Sentence Text: 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +Metrics: TP=0, FP=3, FN=1 + +--- Model Extractions --- +- 2010 को सम्पन्न हुआ दर्शन परिषद् +- दर्शन परिषद् property +- property + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: 2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] + Status: not satisfied + +================================================== + +Sentence ID: 108 +Sentence Text: यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +This sentence was not present in the model's output. + +--- Gold Standard --- + +Cluster: cluster 1 + Essential Extractions: + - यहीं पर --> देहांत हो गया --> उनका + - सन 1533 में --> देहांत हो गया --> उनका + - 47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका + - रथयात्रा के दिन --> देहांत हो गया --> उनका + Compensatory Extractions: + - (a) अल्पायु [में] --> property --> 47 वर्ष [की] + +================================================== + +Sentence ID: 109 +Sentence Text: इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +Metrics: TP=0, FP=3, FN=2 + +--- Model Extractions --- +- पंतन कहा जाता है पंतन +- पंतन property पंतन +- पंतन location पंतन + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: इसे --> कहा जाता है --> पाण्सिल्क [भी] + Status: not satisfied + - Gold: यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] + Status: not satisfied + +================================================== + +Sentence ID: 110 +Sentence Text: 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +Metrics: TP=1, FP=3, FN=1 + +--- Model Extractions --- +- वे बने तीसरे ब्रिटिश प्रबंधक +- वे property एकाधिक अवसर पर यूरोपियन कप जीता +- वे property एकाधिक अवसर पर +- वे property एकाधिक अवसर + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक + Status: satisfied + - Gold: जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप + Status: not satisfied + +================================================== + +Sentence ID: 111 +Sentence Text: मॉस से मिट्टी में जल रोक रखा जाता है . +Metrics: TP=0, FP=2, FN=1 + +--- Model Extractions --- +- मॉस जल रोक रखा जाता है मिट्टी में +- मिट्टी property मिट्टी में जल रोक रखा जाता है + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: मॉस से --> जल रोक रखा जाता है --> मिट्टी में + Status: not satisfied + +Cluster: cluster 2 + Essential Extractions: + - Gold: मॉस से --> रोक रखा जाता है --> जल + Status: not satisfied + - Gold: मिट्टी में --> रोक रखा जाता है --> जल + Status: not satisfied + +================================================== + +Sentence ID: 112 +Sentence Text: महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +Metrics: TP=0, FP=4, FN=1 + +--- Model Extractions --- +- महाभारत है वर्तमान रूप +- महाभारत property प्राचीन इतिहास कथाओं +- महाभारत property उपदेशों +- महाभारत property भण्डार + +--- Gold Standard Analysis --- + +Cluster: cluster 1 + Essential Extractions: + - Gold: महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का + Status: not satisfied + Compensatory Extractions: + - Gold (a): वर्तमान रूप --> property --> महाभारत का + Status: not satisfied + +================================================== + diff --git a/GSoC25_H/IndIE/hindi-benchie/english_benchie_gold.txt b/GSoC25_H/IndIE/hindi-benchie/english_benchie_gold.txt new file mode 100644 index 0000000..26d3732 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/english_benchie_gold.txt @@ -0,0 +1,14 @@ +sent_id:1 He served as the first Prime Minister of Australia and became a founding justice of the High Court of Australia . +------ Cluster 1 ------ +He --> served as --> [the] [first] Prime Minister [of Australia]{a} +He --> became --> [a] [founding] justice [of [the] High Court of Australia]{b} +{a} He --> served as [the] [first] Prime Minister of --> Australia +{b} He --> became [a] [founding] justice of --> [the] High Court of Australia |OR| He --> became [a] [founding] justice of [the] High Court of --> Australia +------ Cluster 2 ------ +He --> served --> as [the] [first] Prime Minister [of Australia]{a} +He --> became --> [a] [founding] justice [of [the] High Court of Australia]{b} +{a} He --> served as [the] [first] Prime Minister --> of Australia +{b} He --> became [a] [founding] justice --> of [the] High Court of Australia |OR| He --> became [a] [founding] justice of [the] High Court --> of Australia +------ Cluster 3 ------ +He --> served as [the] [first] Prime Minister of --> Australia |OR| He --> served as [the] [first] Prime Minister --> of Australia +He --> became [a] [founding] justice of --> [the] High Court of Australia |OR| He --> became [a] [founding] justice of [the] High Court of --> Australia \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/english_hindi_benchie_gold.txt b/GSoC25_H/IndIE/hindi-benchie/english_hindi_benchie_gold.txt new file mode 100644 index 0000000..cb6c93e --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/english_hindi_benchie_gold.txt @@ -0,0 +1,11 @@ +sent_id:1 वह ऑस्ट्रेलिया के पहले प्रधान मंत्री के रूप में कार्यरत थे और ऑस्ट्रेलिया के उच्च न्यायालय के संस्थापक न्यायाधीश बने । +------ Cluster 1 ------ +वह --> कार्यरत थे --> [ऑस्ट्रेलिया के]{a} [पहले] प्रधान मंत्री के रूप में +वह --> बने --> [ऑस्ट्रेलिया के उच्च न्यायालय के]{b} [संस्थापक] न्यायाधीश +{a} ऑस्ट्रेलिया के --> property --> [पहले] प्रधान मंत्री के रूप में |OR| वह --> [पहले] प्रधान मंत्री के रूप में कार्यरत थे --> ऑस्ट्रेलिया के +{b} [ऑस्ट्रेलिया के]{c} उच्च न्यायालय के --> property --> [संस्थापक] न्यायाधीश |OR| वह --> [संस्थापक] न्यायाधीश बने --> [ऑस्ट्रेलिया के]{c} उच्च न्यायालय के +{c} ऑस्ट्रेलिया के --> property --> उच्च न्यायालय के +------ Cluster 2 ------ +वह --> [पहले] प्रधान मंत्री के रूप में कार्यरत थे --> ऑस्ट्रेलिया के +वह --> [संस्थापक] न्यायाधीश बने --> [ऑस्ट्रेलिया के]{a} उच्च न्यायालय के +{a} ऑस्ट्रेलिया के --> property --> उच्च न्यायालय के diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_argoe.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_argoe.txt new file mode 100644 index 0000000..f72e6e0 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_argoe.txt @@ -0,0 +1,51 @@ +4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद +7 01 जून हुई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू +9 06 प्रतिशत थे ऐसे लोग जिनका कोई विशेष धर्म नहीं था +13 आइगर ने लिया माइकल आइजनर का स्थान +13 आइगर ने लिया माइकल आइजनर का स्थान 1 अक्टूबर को +14 यह देश हुआ 1 अक्टूबर +15 अंग्रेजों द्वारा भेज दिया गया 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +15 अंग्रेजों द्वारा भेज दिया गया फ्रांस +16 गोविन्द बल्लभ पन्त बने इसके पहले +17 जो हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 हिन्दी प्रचार सभा थी एक आन्दोलन जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई +18 आभा दिखाई पड़ती बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी +19 सोनू बन चुके हैं तब से +19 सोनू बन चुके हैं अब तक +19 सोनू बन चुके हैं भारतीय संगीत जगत में +20 कोप्पेन मौसम वर्गीकरण है सबसे अधिक प्रयोगनीय मौसम वर्गीकरण +22 राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे हैं योग एवं शिक्षा के क्षेत्र में प्रथम भारतीय +24 यह स्थान है आज भी क्षेत्र के लोगों के लिए दर्शनीय केन्द्र +26 मैं करता हूं शब्द की आत्मा समझकर ही +28 उन्होंने कर दिया बच्चे को देने से +31 यह शहर है वर्तमान में पश्चिम बंगाल का प्रमुख हिल स्टेशन +32 सिलकोट है तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव +34 दोनों मामले हुए चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई +38 मर्लगोंड है मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव +44 वाईकर के द्वारा रखी गयी थी 3 मार्च 1884 को सर +45 वह है इस तकनीक के लिए विभिन्न टेलीविजन कंपनियों से संपर्क में +52 द्रौपदी ने डाल आगे बढ़ कर +54 समुद्री भोजन है तटीय कर्नाटक के भोजन में उल्लेखनीय +56 सिफीड कहते हैं सिफियस चतुर्थ की श्रेणी के तारों को +59 कुछ घड़ी हैं कि राजा की आयु में शेष +59 कश्यप ने लगाया कि राजा की आयु में कुछ घड़ी शेष हैं +59 कश्यप ने लगाया कि राजा की आयु में कुछ घड़ी शेष हैं तत्काल ज्योतिष गणना करके +62 वो हैं पहले दलित और पहले मलयाली मुख्य न्यायाधीश +69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग है लीबियाई रेगिस्तान का हिस्सा +71 ये हैं अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध +74 फ्लोरिडा राज्य हैं इसके पश्चिम में अलबामा और दक्षिण में स्थित +75 यह क्रिकेट मैदान है ऑस्ट्रेलिया के होबार्ट शहर में स्थित +79 प्रयोगशील प्रवृत्तियाँ देने लगी होंगी उनको +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों को +81 जयमाल पहनाती हैं वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को +82 विभिन्न स्रोत बटे हैं विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा +92 उन्होंने की उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया +92 अपने बोलीवुड करियर की शुरुआत था एक दीवाना किया गया +94 गाड़ी निर्माता या चालक की राष्ट्रीयता को करता है कि प्रतिस्पर्धी टीम की राष्ट्रीयता को +95 सड़क मार्ग है रत्नागिरी के लिए मुंबई से सीधी बस सेवा +98 यह है उत्तर प्रदेश के बलिया जिले में स्थित और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है +102 केरल है कि विश्व भर में अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध +103 इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +106 कुछ हैं और भी निम्नलिखित कारण जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं +112 महाभारत का वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_faruqui.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_faruqui.txt new file mode 100644 index 0000000..b4cb77a --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_faruqui.txt @@ -0,0 +1,199 @@ +1 शक्तिरूपी माया की सििद्ध देखकर ही कार्यरूप +1 शक्तिरूपी माया की सििद्ध देखकर ही कार्यरूप +2 ̈ अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना में अंगुलि चिह्न विज्ञान प्रतियोगिता +3 केन्द्रीय सरकार के विभागों एवं द्वारा भेजे गए भारत सरकार +3 केन्द्रीय सरकार के विभागों एवं भेजे गए भारत सरकार +3 भारत सरकार भेजे गए केन्द्रीय सरकार के विभागों एवं +4 फ़्लेमिंग 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों +4 फ़्लेमिंग नाम से प्रसिद्ध 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों +5 उन्होंने अपनी एक 01 अगस्त 1907 +6 से को लागू किया गया है में नवीनतम वेतनमानों +6 से को लागू किया में नवीनतम वेतनमानों +7 गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई अहमदाबाद के साबरमती केंद्रीय जेल के +8 को वे की न्यायाधीश नियुक्त हुई सर्वोच्च न्यायालय +9 जिनका नहीं था कोई विशेष धर्म +10 पहला डाक टिकट जारी किया गया को इम्पीरियल पोस्टल सर्विस +10 पहला डाक टिकट जारी किया को इम्पीरियल पोस्टल सर्विस +10 को इम्पीरियल पोस्टल सर्विस जारी किया पहला डाक टिकट +11 आंध्र के साथ राज्य का दर्जा पाया ने कर्नूल को +11 राज्य का दर्जा पाया राज्य का दर्जा पाया अपनी राजधानी +11 राज्य का दर्जा पाया राज्य का दर्जा पाया ने कर्नूल को +11 आंध्र राज्य का दर्जा पाया अपनी राजधानी +11 आंध्र राज्य का दर्जा पाया राज्य का दर्जा पाया +11 आंध्र राज्य का दर्जा पाया ने कर्नूल को +12 दूसरा सीज़न ज़ारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया +12 दूसरा सीज़न ज़ारी न्यूजीलैंड और ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने का स्थान लिया माइकल आइजनर +13 रॉबर्ट आइगर ने का स्थान लिया सीईओ +13 रॉबर्ट आइगर ने का स्थान लिया माइकल आइजनर +13 माइकल आइजनर का स्थान लिया सीईओ +14 को यह देश से आजाद हुआ इंग्लैंड के शासन +14 को यह देश हुआ इंग्लैंड के शासन +15 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया फ्रांस +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त +17 जो के साथ ही आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन +18 कर्मा दिखाई पड़ती थी के चेहरे पर एक अनूठी आभा +18 कर्मा पड़ती थी बाल्यकाल +19 सोनू में एक प्रमुख हस्ती बन चुके हैं भारतीय संगीत जगत +20 कोप्पेन मौसम वर्गीकरण आकलन के लिए प्रयोग किया जाने वाला वर्गीकरण है +21 राजधानी आज़ाद कराया बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की +22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री प्राप्त करने वाले वे प्रथम भारतीय हैं सम्मान +23 सभी बच्चों को की पढ़ाई पूरी स्कूल +23 सभी बच्चों को की पढ़ाई पूरी करने तक वित्तीय सहायता भी +23 सभी बच्चों को की पढ़ाई पूरी स्कूल +24 यह दर्शनीय केन्द्र है स्थान क्षेत्र के लोगों के लिए दर्शनीय +24 यह है स्थान क्षेत्र के लोगों के लिए दर्शनीय +25 ही वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण +25 ही वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण +25 ही वेदाङ्ग का प्रतिनिधित्व करता है सम्बन्ध +25 पाणिनीय व्याकरण का प्रतिनिधित्व करता है सम्बन्ध +26 मैं की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +27 वाली में बहने हिमाचल प्रदेश +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है ऋग्वेद +28 उन्होंने इंकार कर दिया बच्चे को +29 शिक्षा का तुलनात्मक अध्ययन से जुड़ा है सभी सामाजिक विज्ञानों +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा सभी सामाजिक विज्ञानों +30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है द्वारा संचालित एक भारतीय रेल +30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है संचालित एक भारतीय रेल +30 भारतीय रेल संचालित एक गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है +31 यह शहर स्टेशन है बंगाल +32 सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ एक गाँव है जिले का +33 एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न तिरुवनंतपुरम +33 एयर लाइन स्थानापन्न के तकनीकी केंद्र को तिरुवनंतपुरम में +34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और के सामने विशेष न्यायाधीश मोहम्मद रजा +34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और पेश हुए विशेष न्यायाधीश मोहम्मद रजा +35 किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई नवम्बर बीमारी +36 तो विक्रम सोचा ने एक हल +36 तो विक्रम सोचा ने एक हल +37 सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ पंचायती +38 मर्लगोंड एक गाँव है जिले का +38 मर्लगोंड है कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु +39 अनेक ग्रन्थ लिखे गये बाद में व्याकरण के दर्शन पक्ष +39 अनेक ग्रन्थ लिखे बाद में व्याकरण के दर्शन पक्ष +40 1975 में इलाहाबाद में निदेशक बने में नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 में इलाहाबाद बने में नवनिर्मित मेहता अनुसंधान संस्थान +41 उनके नाम पर इस जगह का नाम जगह का नाम रुस्तम खान +41 उनके नाम पर रखा गया जगह का नाम रुस्तम खान +42 कुछ लोग इस पर ही रहना पसंद करते हैं अपने घर +43 उनकी वापसी हुई अमरीका के अट्ठाइसवें +44 इसकी रचना की आधारशिला 3 मार्च 1884 को के द्वारा रखी गयी थी सर वाईकर +44 सर वाईकर रखी इसकी रचना की आधारशिला 3 मार्च 1884 को +44 इसकी रचना की आधारशिला 3 मार्च 1884 को रखी सर वाईकर +45 इस तकनीक के लिए में है वह विभिन्न टेलीविजन कंपनियों से संपर्क +45 इस तकनीक के लिए है वह विभिन्न टेलीविजन कंपनियों से संपर्क +46 त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सम्मानित किया गया था पद्म भूषण से +47 उन्होने के लिए भी संगीत रचना मराठी +47 के लिए भी संगीत रचना रचना हिन्दी फिल्मों +48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया अनेक प्रक्रियाओं +48 काइटिन का उपयोग किया अनेक प्रक्रियाओं +49 हिंदूओं और मुस्लिमों के मनाए जाते हैं सभी पर्व +50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया में 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा रिलीज़ किया गया में 20 जुलाई 2012 को +51 यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर +52 में डाल दिया के गले +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत +53 यह त्यौहार मनाया जाता पूरे उत्तर भारत +53 यह त्यौहार मनाया जाता राम नवमी +54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का उल्लेखनीय है उपयोग +54 उपयोग उल्लेखनीय तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का +54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का उल्लेखनीय उपयोग +55 कार्ल वहां अध्ययन जीवविज्ञान उद्यान को भी सुधारा +55 कार्ल उपेक्षित जीवविज्ञान उद्यान को भी सुधारा +56 तारों को सिफीड कहते हैं चतुर्थ की श्रेणी के +57 यह ' अध्यारोप प्राथमिक विधि +58 चीन तथा जापान रहा है से इस देश का अधिक संपर्क +59 कश्यप ने करके पता लगाया कि राजा +59 कि राजा पता लगाया कश्यप ने +59 कश्यप ने पता लगाया कि राजा +59 कश्यप ने पता लगाया की आयु में +60 मोमबत्तियाँ में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की खानों +60 मोमबत्तियाँ भी प्रयुक्त अभ्रक आदि की खानों +61 उन्होंने लिखे हैं कहानियाँ और उपन्यास +61 कहानियाँ और उपन्यास लिखे हैं इस शैली +62 वो हैं पहले दलित और पहले मलयाली मुख्य न्यायाधीश +63 उन्होंने पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है से चाय के व्यापार +64 स्थानीय आबादी है से चाय के व्यापार +65 इसे में भी लागू किया जाता है साथ ही आधारभूत प्रोफ़ाइल +66 उन्हें के नाम से जाना जाता है उत्कल मणि +67 फ्रेंच फ्लेमिश को देखें अधिक जानकारी +68 इस नदी का ज्यादातर अंश में प्रवाहित होता है पाकिस्तान +68 इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान +69 लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) +69 , जिसमें सीवा नख़लिस्तान ( ओएसिस ) है लीबियाई रेगिस्तान +69 लीबियाई रेगिस्तान है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) +70 बंगलुरु की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +70 बंगलुरु है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +70 योगदानकर्त्ता अग्रणी है +70 योगदानकर्त्ता अग्रणी है +71 ये के लिए प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह और दो निबंध संग्रह +73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) लिखा है सुपद्य व्याकरण +73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) लिखा है सुपद्य व्याकरण +74 फ्लोरिडा राज्य स्थित हैं दक्षिण में +74 फ्लोरिडा राज्य स्थित दक्षिण में +75 यह यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है होबार्ट शहर में +76 निम्नलिखित सूचना का एक सरलीकृत सारांश है नियम +77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के में लीन हो द्वारा ब्रह्म में लीन हो जाने को कहते हैं +77 द्वारा ब्रह्म में लीन हो जाने को कहते हैं में लीन आत्यन्तिक प्रलय योगीजनों के ज्ञान के +77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के में लीन द्वारा ब्रह्म में लीन हो जाने को कहते हैं +78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन में विभाजित किया है उपक्षेत्रों +78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन विभाजित किया उपक्षेत्रों +79 प्रयोगशील प्रवृत्तियाँ लगी उनको प्रश्रय देने +80 ईसा पूर्व को दर्शाता है वर्षों +81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती +81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती +82 विभिन्न स्रोत पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +82 विभिन्न स्रोत बटे कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं होते हैं प्रत्येक भाग +84 एल्बम से तीसरा कट में जारी किया गया 2006 के मध्य +84 एल्बम से तीसरा कट जारी किया एकलों के बीच एक लंबे अंतराल +85 और मानक सामने कोई और मानक नहीं थे में उनके +86 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये कर दिया था परिणामों को बेहतर +87 सांप्रदायिक सिद्धांतों के समान में अपने पिता +87 योगदान के प्रचार और प्रसार में अपने पिता +87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता +88 केवल 1 -- 3 माह के संपर्क में भी के मामले लेखबद्ध किये गये हैं मेसोथेलियोमा उत्पन्न होने +88 मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध उदाहरणार्थ +89 डू का सामना होता है में दो प्राणियों +89 डू का सामना में दो प्राणियों +90 उस तल में एकबिन्दुगामी भी होने चाहिये ये तीनों अक्ष +91 विपणन के पुराने तरीके बदल विकासशील देशों +91 किसानों के दूध अपने ही पड़ोस +91 अपने ही पड़ोस में किसानों के दूध बदल विकासशील देशों +92 जिसे को रिलीज़ किया गया 17 फ़रवरी 2012 +93 इस मक्खियों रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से +94 यह , को संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को +95 सड़क मार्ग से सीधी बस सेवा है मुंबई +96 लकड़ी के ब्लाकों का प्रयोग होता था छपाई +96 लकड़ी के ब्लाकों का प्रयोग होता छपाई +97 यह शब्द के लिये प्रयोग में आता है विधि बनाने +98 उत्तर प्रदेश के बलिया जिले में स्थित है और शहर +98 उत्तर प्रदेश के बलिया जिले स्थित है और शहर +99 उन्होने की हत्या नहीं करवाई उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे +99 उसेक किया करते थे अन्य सम्राट +99 उसेक किया करते थे अन्य सम्राट +100 प्रत्येक खिलाड़ी की स्थिति का निर्धारण पासा फेंककर किया जाता है हवाओं +100 प्रत्येक खिलाड़ी फेंककर पासा +101 हाइपरयूरीसेमिया का मूल कारण होता है वात रोग +101 हाइपरयूरीसेमिया होता है वात रोग +102 यही कारण है कि विश्व भर में केरल के कारण प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली +102 यही कारण है कि विश्व भर में केरल है अपनी आयुर्वेदिक चिकित्सा शैली +103 इसका उदगम स्थान सिरमोर के नीचे का ढलुवा भाग है राज्य +103 राज्य है इसका उदगम स्थान सिरमोर +103 इसका उदगम स्थान सिरमोर है राज्य +104 का ही प्राधान्य था दक्षिण +105 ये कहानियाँ की हो सकती हैं किसी देश या समय +105 ये कहानियाँ हो किसी देश या समय +106 जोकि को प्रोत्साहित करते हैं प्रकृति आधारित निर्माण +107 2010 को ' ' दर्शन -- परिषद् ' ' सम्पन्न हुआ नाम +107 2010 को ' ' दर्शन -- परिषद् ' ' सम्पन्न नाम +108 उनका देहांत हो गया रथयात्रा के दिन +109 क्योंकि यह में अक्सर देखा जाता है तालाब +110 वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने यूरोपियन कप जीता +110 यूरोपियन कप जीता जीता एकाधिक अवसर +111 मॉस जल रोक रखा जाता है मिट्टी +111 मॉस रोक रखा मिट्टी +111 मॉस रोक रखा जल +111 जल रोक रखा मिट्टी +112 महाभारत का वर्तमान रूप का भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie.txt new file mode 100644 index 0000000..8c835a9 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie.txt @@ -0,0 +1,280 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +77 आत्यन्तिक प्रलय कहते हैं लीन हो जाने को +77 ज्ञान के द्वारा लीन हो जाने को ब्रह्म में +77 ज्ञान के द्वारा property योगीजनों के +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_20.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_20.txt new file mode 100644 index 0000000..c05ac1f --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_20.txt @@ -0,0 +1,262 @@ +1 सििद्ध होती है शक्तिरूपी माया की +1 शक्तिरूपी माया की होती है देखकर ही कार्यरूप जगत को +2 आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 विभागों है केन्द्रीय सरकार के +3 भारत सरकार के है केन्द्रीय सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 बारह पुस्तकों है फ़्लेमिंग की +4 दो लघुकथाओं में है फ़्लेमिंग की +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की +6 लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से किया गया है कंपनी में +7 सुनवाई हुई शुरू +7 सुनवाई है गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की है 01 जून : +8 वे हुई न्यायाधीश +8 नियुक्त हुई न्यायाधीश +8 न्यायाधीश है सर्वोच्च न्यायालय की +10 इम्पीरियल पोस्टल सर्विस द्वारा किया गया पहला डाक टिकट +10 जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया राज्य का +12 ज़ारी किया गया दूसरा सीज़न +12 1 अक्टूबर 2008 को किया गया न्यूजीलैंड +12 1 अक्टूबर 2008 को किया गया ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 स्थान है माइकल आइजनर का +14 यह देश हुआ आजाद +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया +16 घोषित किया गया इसे +16 1946 को किया गया 1 अप्रैल +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने किया गया +17 एक आन्दोलन हुई आरम्भ +17 एक आन्दोलन हुई जो +17 एक आन्दोलन हुई स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +21 सोवियत दस्तों ने कराया प्राग को +21 आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद कराया +21 राजधानी है चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 प्राप्त करने वाले पद्म श्री सम्मान +22 राष्ट्रपति से करने वाले वे +23 वित्तीय सहायता भी दी जाती है करने तक +23 पूरी करने तक सभी बच्चों को +23 करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र है लोगों के लिए +25 पाणिनीय व्याकरण ही करता है प्रतिनिधित्व +25 इस सम्बन्ध में करता है पाणिनीय व्याकरण ही +25 प्रतिनिधित्व है वेदाङ्ग का +26 मैं करता हूं उपासना +26 उपासना करता हूं समझकर ही आत्मा +26 आत्मा है शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख है चार का +28 उन्होंने कर दिया स्पष्ट इंकार +28 स्पष्ट इंकार कर दिया देने से बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन है शिक्षा का +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन है पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव है उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव है पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत है भारत के +32 पिथोरागढ जिले का है कुमाऊँ मण्डल के +33 तकनीकी केंद्र को करना है स्थानापन्न +33 तिरुवनंतपुरम में करना है तकनीकी केंद्र को +33 तकनीकी केंद्र को है एयर लाइन के +34 दोनों मामले हुए पेश +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु है बाशो की +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 एक बार फिर हुआ +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव है अदिलाबादु जिले का +38 अदिलाबादु जिले का है आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के है भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये अनेक ग्रन्थ +41 नाम रखा गया नाम पर +41 नाम है इस जगह का +42 कुछ लोग करते हैं रहना +42 पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +43 एक बार फिर हुई +44 सर वाईकर के द्वारा रखी गयी थी आधारशिला +44 1884 को रखी गयी थी 3 मार्च +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 सम्मानित किया गया था त्रिदेवनाथ बैनर्जी को +46 क्षेत्र में किया गया था सन 1961 में +46 पद्म भूषण से किया गया था सन 1961 में +47 उन्होने की संगीत रचना +48 उपयोग किया जाता है औद्योगिक रूप से +48 अनेक प्रक्रियाओं में किया जाता है उपयोग +50 रिलीज़ किया गया द डार्क नाईट राइसेस को +50 अमेरिका , किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही किया गया 20 जुलाई 2012 को +50 कनाडा में किया गया 20 जुलाई 2012 को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है हर साल +52 द्रौपदी ने डाल दिया वरमाला +52 गले में डाल दिया वरमाला +52 वरमाला डाल दिया बढ़ कर आगे +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में है तटीय कर्नाटक के +54 व्यापक उपयोग है समुद्री भोजन , +54 व्यापक उपयोग है नारियल +54 व्यापक उपयोग है नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी है वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के है सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से है ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क है इस देश का +59 कश्यप ने लगाया शेष +59 पता लगाया कश्यप ने +59 शेष लगाया करके ज्योतिष गणना +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी होती है प्रयुक्त +60 खानों में होती है मोमबत्तियाँ भी +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने किया वार्षिक बजट +63 पेश किया वार्षिक बजट +63 वार्षिक बजट है सरकार का +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है लगभग पूरी तरह से +65 लागू किया जाता है इसे साथ ही +65 आधारभूत प्रोफ़ाइल में भी किया जाता है लागू +66 उन्हें जाना जाता है नाम से +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश होता है प्रवाहित +68 पाकिस्तान में होता है ज्यादातर अंश +68 ज्यादातर अंश है इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग है मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है ( ओएसिस ) +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह हुए हैं प्रकाशित +72 दो निबंध संग्रह हुए हैं प्रकाशित +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण है 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित हैं अलबामा +74 स्थित हैं दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में है ऑस्ट्रेलिया के +77 आत्यन्तिक प्रलय कहते हैं हो जाने को +77 ज्ञान के द्वारा हो जाने को लीन +77 ब्रह्म में हो जाने को कहते हैं +77 ज्ञान के द्वारा है योगीजनों के +79 प्रयोगशील प्रवृत्तियाँ देने लगी होंगी उनको +79 प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को है जन्म से +80 जन्म से है ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 राम को पहनाती हैं स्वरघोष के मध्य +81 सीता राम को पहनाती हैं +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा नाम +82 इस तथ्य पर पड़ा किस वर्ष में +82 नाम है स्थान का +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 जारी किया गया एकलों के बीच +84 एक लंबे अंतराल के बाद , किया गया एल्बम से +84 2006 के किया गया एल्बम से +85 उस दौर में कोई और मानक उनके सामने +85 सब कामचलाऊ व्यवस्था करनी पड़ी स्वयं +85 उन्हें करनी पड़ी कोई और मानक +86 बहुत से विकासों ने कर दिया था परिणामों को +86 बेहतर कर दिया था 1900 के आसपास +86 निमोनिया से कर दिया था पीड़ित लोगों के लिये +87 पिता के समान बहुत योगदान है आपका भी +88 लेखबद्ध किये गये हैं मामले +88 उदाहरणार्थ , किये गये हैं संपर्क में भी +88 मामले है होने के +88 मेसोथेलियोमा होने के उत्पन्न +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में होता है , सामना +89 इश -- एस में होता है , इश -- डू में +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके है दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत है बोलीवुड करियर की +92 शुरुआत किया गया जिसे +92 शुरुआत किया गया रिलीज़ +92 शुरुआत किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , करता है , राष्ट्रीयता को +94 संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को है प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा है मुंबई से +96 प्रयोग होता था , छपाई में +96 प्रयोग करते थे जिसका निर्माण +96 प्रयोग करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 बलिया जिले में है उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई उन्होने +99 अन्य सम्राट किया करते थे नहीं करवाई +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण है स्थिति का +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है हिमालय पर्वत के +103 अंतगर्त हिमालय पर्वत के सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य था परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +106 प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +108 देहांत हो गया यहीं पर +108 सन 1533 में हो गया अल्पायु में +108 दिन हो गया अल्पायु में +109 तालाब में देखा जाता है यह +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 जल रोक रखा जाता है मॉस से +111 मिट्टी में रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप है महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted.txt new file mode 100644 index 0000000..843ace5 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted.txt @@ -0,0 +1,342 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b.txt new file mode 100644 index 0000000..642553d --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b.txt @@ -0,0 +1,525 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत देखकर ही शक्तिरूपी माया +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट में अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के संबंधित विभागों +3 भारत सरकार के संबंधित उपक्रमों +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 प्रसिद्ध एजेंट +4 एजेंट फ़्लेमिंग की पुस्तकें +4 एजेंट लघुकथाओं में मौजूद +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 में शुरू की +5 उन्होंने शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से से कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : temporal_relation सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को हुआ नियुक्ति +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 ऐसे लोग का प्रतिशत 06 प्रतिशत +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को तिथि 1 अक्टूबर 1854 +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को होना राज्य का दर्जा पाया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को में न्यूजीलैंड +12 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को समय 1 अक्टूबर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को में यह देश +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह का सम्बन्ध सैनिकों से +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर चेहरे +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू से संबंधित भारतीय संगीत जगत +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा बर्लिन पर +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग में शिक्षा +22 शिक्षा के क्षेत्र +22 राष्ट्रपति से पद्म श्री सम्मान +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को प्राप्त होती है वित्तीय सहायता +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान में क्षेत्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में नदियों +27 ऋग्वेद में उल्लेख +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने किया इंकार +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का संबंध तुलनात्मक अध्ययन +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर में वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट में स्थित है गंगोलीहाट तहसील +32 सिलकोट में है पिथोरागढ जिला +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है उत्तराखण्ड राज्य +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 पिथोरागढ जिला सिलकोट में है कुमाऊँ मण्डल +32 पिथोरागढ जिला सिलकोट में है उत्तराखण्ड राज्य +32 कुमाऊँ मण्डल सिलकोट में है उत्तराखण्ड राज्य +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के संबंधित तकनीकी केंद्र +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के property मुख्य न्यायाधीश +34 मुख्य न्यायाधीश property सर लुइस शर्ट +34 विशेष न्यायाधीश मोहम्मद रजा property दोनों मामले +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश चीफ कोर्ट के +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश चीफ कोर्ट के +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश सर लुइस शर्ट +34 चीफ कोर्ट के property मुख्य न्यायाधीश सर लुइस शर्ट +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 बाशो मृत्यु 28 नवम्बर 1694 +35 बाशो कारण किसी बीमारी +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम के पास एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में समय एक बार +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड में स्थित है कुभीर मण्डल +38 मर्लगोंड राज्य है आन्ध्रप्रदेश राज्य +38 मर्लगोंड जिला है अदिलाबादु जिले का +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 व्याकरण के संबंध दर्शन पक्ष +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में में इलाहाबाद में +40 नवनिर्मित मेहता अनुसंधान संस्थान में में इलाहाबाद में +40 1975 में में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में समय वापसी हुई फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 3 मार्च 1884 को तिथि आधारशिला रखी गयी थी +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से संबंधित तकनीक +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को पुरस्कार पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने रचना की हिन्दी फिल्मों के लिए +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है प्रक्रियाओं में +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह में जर्मनी के फ्रैंकफर्ट शहर मे +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 अर्जुन के गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार के दौरान राम नवमी +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन +54 तटीय कर्नाटक संबंधित भोजन +54 समुद्री भोजन में भोजन +54 नारियल में भोजन +54 नारियल तेल में भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन समुद्री भोजन +54 तटीय कर्नाटक में भोजन नारियल +54 तटीय कर्नाटक में भोजन नारियल तेल +54 समुद्री भोजन में भोजन नारियल +54 समुद्री भोजन में भोजन नारियल तेल +54 नारियल में भोजन नारियल तेल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने अध्ययन के साथ ही सुधारा +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की प्रकार तारों को +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +57 यह is_known_as प्राथमिक विधि अध्यारोप +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 देश से चीन +58 देश से जापान +58 चीन अधिक संपर्क रहा है जापान से +58 चीन देश से जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने गणना करके आयु +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की संबंध खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ और उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है दलित +62 वो है मलयाली +62 दलित वो है मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को हुआ पेश किया +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही संबंध आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें नाम उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का location पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 लीबियाई रेगिस्तान का में स्थित है सीवा नख़लिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर में भारत +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये रहस्यमयी हैं कहानियों +71 ये भयावह हैं कहानियों +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह का प्रकार साहित्य +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लिखा 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में स्थित है +74 फ्लोरिडा राज्य दक्षिण में स्थित है +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान में ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की property विशेषता की +78 इंडोचायनीज़ part_of उपक्षेत्रों में +78 इंडोमलायन part_of उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 दृष्टि से property विशेषता की जंगलों की +78 इंडोचायनीज़ part_of उपक्षेत्रों में इंडोमलायन +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 प्रयोगशील प्रवृत्तियाँ होती प्रश्रय देने लगी होंगी +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व समय ईसा मसीह के जन्म से पूर्व +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 सीता पहनाती है राम को +81 राम प्राप्त करती है जयमाल +81 वैदिक मन्त्रों के संबंधित है स्वरघोष +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का property एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का एजिंकोर्ट स्क्वायर +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 अलगअलग अध्यक्ष होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +83 जिनके अलगअलग अध्यक्ष विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एल्बम से संबंध तीसरा कट +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि कारण सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास समय 1900 +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों संबंध प्रचार +87 सांप्रदायिक सिद्धांतों संबंध प्रसार +87 सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +87 प्रचार सांप्रदायिक सिद्धांतों संबंध प्रसार +87 प्रचार सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रसार सांप्रदायिक सिद्धांतों संबंध आपके पिता +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +88 मेसोथेलियोमा समय अवधि 1 -- 3 माह +88 मामले मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 किसानों के संबंध दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से रिलीज़ की तारीख 17 फ़रवरी 2012 +92 एक दीवाना था से प्रकार बोलीवुड करियर +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के संबंध प्रतिषेधात्मक उपचार +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संबंधित प्रतिस्पर्धी टीम की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 मुंबई से सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में का प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह में बलिया जिले में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 अन्य सम्राट किया करते थे हत्या +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये के द्वारा पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया का रोग वात रोग +102 प्रसिद्ध है यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 विश्व भर में प्रसिद्ध है केरल +102 अपनी आयुर्वेदिक चिकित्सा शैली के कारण केरल प्रसिद्ध है विश्व भर में +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 सिरमोर राज्य के में हिमालय पर्वत +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 परम्परागत चित्रकला से सम्बंधित दक्षिण भारत +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ संबंधित हो सकती हैं देश +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 कारण हैं निम्नलिखित +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +107 2010 में सम्पन्न हुआ +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 सन 1533 में में देहांत हो गया +108 47 वर्ष की उम्र अल्पायु में +108 रथयात्रा के दिन देहांत हो गया +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में में वे +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से मिट्टी +111 जल रोक रखा जाता है मॉस +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का विषय प्राचीन इतिहास कथाओं उपदेशों आदि का +112 महाभारत का प्रकार भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering.txt new file mode 100644 index 0000000..201df99 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering.txt @@ -0,0 +1,211 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property चेकोस्लोवाकिया की राजधानी +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 सभी बच्चों को पूरी करने तक दी जाती है +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +36 विक्रम ने सोचा एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 1975 में बने निदेशक +41 उनके नाम पर रखा गया इस जगह का +42 कुछ लोग पसंद करते हैं रहना +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +45 वह संपर्क में है इस तकनीक के लिए +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +49 हिंदूओं और मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 तटीय कर्नाटक के में भोजन +54 भोजन में उल्लेखनीय है व्यापक उपयोग +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +56 सिफियस चतुर्थ की श्रेणी के तारों को +57 यह प्रसिद्ध है नाम से +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 अलबामा स्थित हैं पश्चिम में +74 फ्लोरिडा राज्य स्थित हैं दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 विभिन्न स्रोत पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर विभिन्न स्रोत +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +85 उस दौर में नहीं थे कोई और मानक +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +87 प्रचार बहुत योगदान है पिता के समान +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले उत्पन्न होने के मेसोथेलियोमा +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +92 उन्होंने शुरुआत बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह संदर्भित करता है राष्ट्रीयता को प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर +100 प्रत्येक खिलाड़ी के लिये फेंककर पासा +100 निर्धारण property स्थिति का +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 दक्षिण भारत में प्राधान्य था उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 सन 1533 में देहांत हो गया उनका +108 अल्पायु में देहांत हो गया उनका +108 अल्पायु में property 47 वर्ष की +108 रथयात्रा के property दिन +108 सन 1533 में देहांत हो गया उनका अल्पायु में +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_en.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_en.txt new file mode 100644 index 0000000..5ca2cc9 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_en.txt @@ -0,0 +1,257 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 भारत सरकार के property केन्द्रीय सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +18 कर्मा के दिखाई पड़ती थी चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +22 वे हैं प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 आत्मा property शब्द की +27 उल्लेख मिलता है चार का +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 चार का उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को --स्थानापन्न करना है--> तिरुवनंतपुरम में +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये व्याकरण के दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर रखा गया इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने डाल दिया गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 व्यापक उपयोग property समुद्री भोजन, +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन, व्यापक उपयोग property नारियल +54 समुद्री भोजन, व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +58 चीन रहा है अधिक संपर्क +58 जापान से रहा है अधिक संपर्क +58 चीन रहा है अधिक संपर्क जापान से +59 कश्यप ने पता लगाया शेष +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 फ्लोरिडा राज्य स्थित हैं दक्षिण में +74 अलबामा स्थित हैं पश्चिम में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 जन्म से पूर्व के property ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 नाम property स्थान का +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में नहीं थे कोई और मानक थे +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह संदर्भित करता है राष्ट्रीयता को प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये फेंककर पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम स्थान है सिरमोर राज्य के +103 अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग उदगम स्थान है सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_enhancement.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_enhancement.txt new file mode 100644 index 0000000..5ca2cc9 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_enhancement.txt @@ -0,0 +1,257 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 भारत सरकार के property केन्द्रीय सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +18 कर्मा के दिखाई पड़ती थी चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +22 वे हैं प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 आत्मा property शब्द की +27 उल्लेख मिलता है चार का +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 चार का उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को --स्थानापन्न करना है--> तिरुवनंतपुरम में +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये व्याकरण के दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर रखा गया इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने डाल दिया गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 व्यापक उपयोग property समुद्री भोजन, +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन, व्यापक उपयोग property नारियल +54 समुद्री भोजन, व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +58 चीन रहा है अधिक संपर्क +58 जापान से रहा है अधिक संपर्क +58 चीन रहा है अधिक संपर्क जापान से +59 कश्यप ने पता लगाया शेष +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 फ्लोरिडा राज्य स्थित हैं दक्षिण में +74 अलबामा स्थित हैं पश्चिम में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 जन्म से पूर्व के property ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 नाम property स्थान का +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में नहीं थे कोई और मानक थे +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह संदर्भित करता है राष्ट्रीयता को प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये फेंककर पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम स्थान है सिरमोर राज्य के +103 अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग उदगम स्थान है सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_updated.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_updated.txt new file mode 100644 index 0000000..5c35cb4 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_filtering_updated.txt @@ -0,0 +1,317 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर property रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 काइटिन property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 अलबामा स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत बोलीवुड करियर की शुरुआत +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_hybrid.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_hybrid.txt new file mode 100644 index 0000000..8e45281 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_hybrid.txt @@ -0,0 +1,257 @@ +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत देखकर ही शक्तिरूपी माया +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट में अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 विवादित अंगुलि चिह्नों का भेजे गए विभागों द्वारा +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए विभागों द्वारा +4 007 प्रसिद्ध एजेंट +4 यह एजेंट मौजूद है बारह पुस्तकों +4 बारह पुस्तकों property फ़्लेमिंग की +5 01 अगस्त 1907 को की उन्होंने +5 उन्होंने शुरू की पत्रिका +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से से कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 01 जून : temporal_relation सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को हुआ नियुक्ति +9 06 प्रतिशत का प्रतिशत ऐसे लोग थे +10 1 अक्टूबर 1854 को तिथि 1 अक्टूबर 1854 +11 आंध्र ने पाया कर्नूल को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को होना राज्य का दर्जा पाया +12 न्यूजीलैंड ज़ारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया में ज़ारी किया गया दूसरा सीज़न +12 1 अक्टूबर 2008 को में न्यूजीलैंड +12 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +12 न्यूजीलैंड ज़ारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +12 न्यूजीलैंड 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को समय 1 अक्टूबर +14 यह देश आजाद हुआ इंग्लैंड के शासन से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा थी आन्दोलन +17 हिन्दी प्रचार सभा एक आन्दोलन थी भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई +18 कर्मा के चेहरे पर चेहरे +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 सोनू से संबंधित भारतीय संगीत जगत +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को राजधानी चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा बर्लिन पर +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं करता हूं उपासना +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +27 हिमाचल प्रदेश में बहने वाली नदियों +27 ऋग्वेद में उल्लेख चार का +28 उन्होंने किया इंकार +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +31 यह शहर में वर्तमान में +32 सिलकोट में स्थित है गंगोलीहाट तहसील +32 सिलकोट में है पिथोरागढ जिला +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है उत्तराखण्ड राज्य +32 पिथोरागढ जिला सिलकोट में है कुमाऊँ मण्डल +32 पिथोरागढ जिला सिलकोट में है उत्तराखण्ड राज्य +32 कुमाऊँ मण्डल सिलकोट में है उत्तराखण्ड राज्य +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट +34 सर लुइस शर्ट मुख्य न्यायाधीश सर लुइस शर्ट +34 विशेष न्यायाधीश मोहम्मद रजा मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा +34 सर लुइस शर्ट चीफ कोर्ट के मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा +35 28 नवम्बर 1694 को हो गई मृत्यु +35 बाशो मृत्यु 28 नवम्बर 1694 +35 बाशो कारण किसी बीमारी +36 विक्रम ने सोचा एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड में स्थित है कुभीर मण्डल +38 मर्लगोंड राज्य है आन्ध्रप्रदेश राज्य +38 मर्लगोंड जिला है अदिलाबादु जिले का +39 व्याकरण के संबंध दर्शन पक्ष +40 1975 में में इलाहाबाद में +40 1975 में में नवनिर्मित मेहता अनुसंधान संस्थान में +40 इलाहाबाद में 1975 में में नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर रुस्तम खान +41 इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर द्वारा आधारशिला रखी गयी थी +44 3 मार्च 1884 को तिथि आधारशिला रखी गयी थी +45 वह संपर्क में है इस तकनीक के लिए +45 विभिन्न टेलीविजन कंपनियों से संबंधित तकनीक +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 त्रिदेवनाथ बैनर्जी को पुरस्कार पद्म भूषण से +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं में +49 हिंदूओं और मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह में जर्मनी के फ्रैंकफर्ट शहर मे +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में अर्जुन के अर्जुन +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 तटीय कर्नाटक में भोजन +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +56 सिफियस चतुर्थ की प्रकार तारों को +57 यह is_known_as प्राथमिक विधि अध्यारोप +58 चीन से इस देश का +58 जापान से इस देश का +58 चीन से इस देश का जापान +59 कश्यप ने गणना करके आयु +59 कश्यप ने पता लगाया शेष +60 अभ्रक आदि की संबंध खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो है दलित +62 वो है मलयाली +62 दलित वो है मलयाली +63 6 जुलाई 2009 को हुआ पेश किया +63 उन्होंने पेश किया वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है उत्कल मणि +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का location पाकिस्तान +69 अंदरूनी भाग हिस्सा है लीबियाई रेगिस्तान का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर में भारत +71 ये रहस्यमयी हैं कहानियों +71 ये भयावह हैं कहानियों +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 अलबामा में स्थित है पश्चिम में +74 फ्लोरिडा राज्य में स्थित है दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से property विशेषता की +78 जंगलों की property विशेषता की +78 इंडोचायनीज़ part_of उपक्षेत्रों में +78 इंडोमलायन part_of उपक्षेत्रों में +78 दृष्टि से property विशेषता की जंगलों की +78 इंडोचायनीज़ part_of उपक्षेत्रों में इंडोमलायन +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 5364 ईसा पूर्व दर्शाता है वर्षों को +80 5364 ईसा पूर्व समय ईसा मसीह के जन्म से पूर्व +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता पहनाती है राम को +81 राम प्राप्त करती है जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 नाम property स्थान का +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एल्बम से संबंध तीसरा कट +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 1900 के आसपास समय 1900 +87 सांप्रदायिक सिद्धांतों संबंध प्रचार +87 सांप्रदायिक सिद्धांतों संबंध प्रसार +87 सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रचार सांप्रदायिक सिद्धांतों संबंध प्रसार +87 प्रचार सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रसार सांप्रदायिक सिद्धांतों संबंध आपके पिता +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +88 मामले मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +89 दो प्राणियों का सामना होता है इश -- डू में +90 ये तीनों अक्ष में उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +92 उन्होंने शुरुआत बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से रिलीज़ की तारीख 17 फ़रवरी 2012 +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह संबंधित प्रतिस्पर्धी टीम की +94 यह संदर्भित करता है राष्ट्रीयता को प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 मुंबई से सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में का प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द प्रयोग में विधि +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 अन्य सम्राट किया करते थे हत्या +100 प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 प्रत्येक खिलाड़ी के लिये फेंककर पासा +100 निर्धारण property स्थिति का +101 हाइपरयूरीसेमिया का रोग वात रोग +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम स्थान है सिरमोर राज्य के +103 अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग उदगम स्थान है सिरमोर राज्य के +104 दक्षिण भारत में से सम्बंधित परम्परागत चित्रकला +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 में सम्पन्न हुआ +108 सन 1533 में में देहांत हो गया +108 अल्पायु में उम्र 47 वर्ष की +108 दिन property रथयात्रा के +108 रथयात्रा के दिन देहांत हो गया +109 इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +111 मॉस से मिट्टी +112 महाभारत का प्रकार भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_llm_only_with_filtering.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_llm_only_with_filtering.txt new file mode 100644 index 0000000..058fa98 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_llm_only_with_filtering.txt @@ -0,0 +1,249 @@ +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की +1 शक्तिरूपी माया की सििद्ध होती है . +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट समय में ( 1958 से ) +3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 विवादित अंगुलि चिह्नों का परीक्षण करना . +4 007 के गुप्त नाम से प्रसिद्ध +4 यह एजेंट मौजूद है फ़्लेमिंग की बारह पुस्तकों +4 यह एजेंट मौजूद है दो लघुकथाओं में +4 फ़्लेमिंग की बारह पुस्तकों यह एजेंट मौजूद है दो लघुकथाओं में +6 01 अप्रैल 2009 से समय में कंपनी में +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +7 01 जून समय में गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड की की सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर +8 वे नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश +9 06 प्रतिशत है लोग +9 लोग धर्म नहीं था कोई विशेष +10 1 अक्टूबर 1854 को जारी किया गया पहला डाक टिकट +11 1 अक्टूबर 1953 को समय में आंध्र +11 आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल को +11 राज्य का दर्जा आंध्र ने पाया कर्नूल को +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड में दूसरा सीज़न +12 ऑस्ट्रेलिया में में दूसरा सीज़न +12 न्यूजीलैंड में दूसरा सीज़न ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया माइकल आइजनर का स्थान +13 रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 +14 इंग्लैंड के शासन से यह देश आजाद हुआ 1 अक्टूबर , 1960 +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को साथ में अन्य गढ़वाली सैनिकों +16 1 अप्रैल 1946 को घोषित किया गया इसे +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 1 अप्रैल 1946 को घोषित किया गया इसे स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 कर्मा दिखाई पड़ता था बाल्यकाल से ही +18 कर्मा के चेहरे पर एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 सोनू में है भारतीय संगीत जगत +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 सोवियत दस्तों ने कब्ज़ा करने के बाद बर्लिन पर +22 योग एवं शिक्षा के क्षेत्र में है प्रथम भारतीय +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही है वेदाङ्ग का प्रतिनिधित्व +26 मैं करता हूं उपासना +26 मैं समझकर ही शब्द की आत्मा +27 हिमाचल प्रदेश में में है नदियों +27 चार का उल्लेख ऋग्वेद में +28 उन्होंने इकार किया बच्चे को +29 शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से तुलनात्मक अध्ययन +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +30 गुजरात क्वीन एक्स्प्रेस संख्या है 9110 +31 यह शहर है पश्चिम बंगाल का प्रमुख हिल स्टेशन +32 सिलकोट है एक गाँव +32 सिलकोट में है गंगोलीहाट तहसील +32 सिलकोट में है उत्तराखण्ड राज्य +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है पिथोरागढ जिले +32 गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले +33 एयर लाइन के स्थानापन्न करना है तकनीकी केंद्र को +33 तकनीकी केंद्र को में है तिरुवनंतपुरम +34 चीफ कोर्ट के सामने विशेष न्यायाधीश मोहम्मद रजा +34 चीफ कोर्ट के सामने दोनों मामले +34 सर लुइस शर्ट मुख्य न्यायाधीश चीफ कोर्ट के +34 विशेष न्यायाधीश मोहम्मद रजा चीफ कोर्ट के सामने दोनों मामले +35 बाशो मृत्यु 28 नवम्बर 1694 को +35 बाशो की मृत्यु किसी बीमारी की वजह से +36 विक्रम सोचा एक हल +37 सन 1696 में मुकाबला हुआ फिर मुकाबला हुआ फिर +38 मर्लगोंड है एक गाँव +38 मर्लगोंड में है कुभीर मण्डल +38 आन्ध्रप्रदेश राज्य में है अदिलाबादु जिले +40 1975 में समय में इलाहाबाद में +40 1975 में समय में नवनिर्मित मेहता अनुसंधान संस्थान में +40 निदेशक बने 1975 में +40 इलाहाबाद में 1975 में समय में नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर इस जगह का नाम +42 कुछ लोग पसंद करते हैं रहना +42 कुछ लोग पसंद करते हैं घर पर ही +42 रहना कुछ लोग पसंद करते हैं घर पर ही +43 मार्च 2001 में समय में अमरीका +43 अमरीका के रक्षा सचिव के रूप में अट्ठाइसवें +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 आधारशिला रखी गयी थी द्वारा सर वाईकर +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण से +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 में +46 पद्म भूषण से त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +46 पद्म भूषण से त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 में +46 चिकित्सा विज्ञान के क्षेत्र में त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 में +47 उन्होने रचना की संगीत +47 उन्होने रचना की हिन्दी फिल्मों के लिए +47 संगीत उन्होने रचना की हिन्दी फिल्मों के लिए +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +49 हिंदूओं और मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +51 यह लगाया जाता है हर साल +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 पूरे उत्तर भारत में यह त्यौहार मनाया जाता है राम नवमी के दौरान +54 तटीय कर्नाटक के में है भोजन +54 भोजन में है समुद्री भोजन +54 भोजन में है नारियल +54 भोजन में है नारियल तेल +54 समुद्री भोजन भोजन में है नारियल +54 समुद्री भोजन भोजन में है नारियल तेल +54 नारियल भोजन में है नारियल तेल +55 कार्ल ने सुधारा वहां के उपेक्षित जीवविज्ञान उद्यान को भी +56 सिफियस चतुर्थ की --श्रेणी के--> तारों को +58 चीन संपर्क रहा है जापान से +58 इस देश का संपर्क रहा है चीन +58 जापान से चीन संपर्क रहा है इस देश का +59 कश्यप ने पता लगाया कि +60 अभ्रक आदि की में खानों +60 मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +61 इस शैली में में है कहानियाँ +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो है दलित +62 वो है मलयाली +62 वो है मुख्य न्यायाधीश +62 दलित वो है मलयाली +62 दलित वो है मुख्य न्यायाधीश +62 मलयाली वो है मुख्य न्यायाधीश +63 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें है उत्कल मणि +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +68 इस नदी का प्रवाहित होता है पाकिस्तान में +69 मत्रूह मुहाफ़ज़ाह का में है अंदरूनी भाग +69 अंदरूनी भाग है लीबियाई रेगिस्तान का हिस्सा +69 लीबियाई रेगिस्तान का में है सीवा नख़लिस्तान +69 सीवा नख़लिस्तान है ओसिस +70 राज्य की है राजधानी +70 बंगलुरु शहर है राजधानी +70 बंगलुरु शहर है भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +70 राज्य की है राजधानी बंगलुरु शहर +70 राजधानी बंगलुरु शहर है भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +71 ये है प्रसिद्ध +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण लिखा है ( 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण ( 15 वीं शताब्दी ) +74 इसके पश्चिम में अलबामा +74 दक्षिण में राज्य स्थित हैं फ्लोरिडा राज्य +75 यह क्रिकेट मैदान में है ऑस्ट्रेलिया के होबार्ट शहर में +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 जंगलों की विशेषता की दृष्टि से +78 कुछ लोगों ने विभाजित किया है इसे +78 इसे में इंडोचायनीज़ +78 इसे में इंडोमलायन उपक्षेत्रों +78 इंडोचायनीज़ इसे में इंडोमलायन उपक्षेत्रों +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +81 विश्वामित्र द्वारा किया स्वरघोष +81 सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +83 प्रत्येक भाग के अंतर्गत है विभिन्न विभाग +83 विभिन्न विभाग होते हैं अध्यक्ष +84 एल्बम से जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में एल्बम से +85 चूंकि कारण कोई और मानक नहीं थे +85 सब कामचलाऊ व्यवस्था करना पड़ी उन्हें +86 1900 के आसपास समय में . +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 निमोनिया से पीड़ित लोगों के लिये परिणामों को +87 आपका है पिता के समान +87 आपका बहुत योगदान है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होने के संपर्क में +88 संपर्क में समय में 1 -- 3 माह +88 मामले मेसोथेलियोमा उत्पन्न होने के संपर्क में +89 इश -- डू में मिलते नहीं है प्राणी +89 इश -- एस में मिलते नहीं है प्राणी +89 इश -- डू में मिलते नहीं है प्राणी इश -- एस में +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 ये तीनों अक्ष में उस तल में +91 विकासशील देशों में में है किसानों के +91 किसानों के दूध विपणन के पुराने तरीके +91 पुराने तरीके बदल रहे हैं तेजी से +92 उन्होंने की शुरुआत +92 शुरुआत एक दीवाना था से की +92 एक दीवाना था से रिलीज़ किया गया 17 फ़रवरी 2012 को +93 इस रोग के प्रतिषेधात्मक उपचार में भी है +93 मक्खियों से बचाना खाद्य एवं पेय पदार्थो को +94 यह संदर्भित करता है राष्ट्रीयता को +95 सड़क मार्ग है सीधी बस सेवा +95 सीधी बस सेवा से मुंबई +95 सीधी बस सेवा के लिए रत्नागिरी +96 शिल्पी -- सुथार निर्माण करते थे छपाई में +97 यह शब्द प्रयोग में विधि +97 यह शब्द विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उसेक बाद नहीं करवाई हत्या +99 उन्हेोने नहीं करवाई हत्या +99 पिता की नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उसेक बाद नहीं करवाई हत्या उन्हेोने +99 उसेक बाद नहीं करवाई हत्या पिता की +99 उन्हेोने नहीं करवाई हत्या पिता की +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की स्थिति का निर्धारण +100 पासा फेंककर किया जाता है +101 हाइपरयूरीसेमिया होता है मूल कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 इसका है उदगम स्थान +103 उदगम स्थान में है सिरमोर राज्य के +103 उदगम स्थान में है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान में है ढलुवा भाग +103 सिरमोर राज्य के उदगम स्थान में है अंतगर्त हिमालय पर्वत के नीचे का +103 सिरमोर राज्य के उदगम स्थान में है ढलुवा भाग +103 अंतगर्त हिमालय पर्वत के नीचे का उदगम स्थान में है ढलुवा भाग +104 दक्षिण भारत में में है दक्षिण भारत +104 दक्षिण भारत में प्राधान्य था परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 और भी कुछ निम्नलिखित कारण हैं प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं +108 उनका देहांत हो गया रथयात्रा के दिन +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है तालाब में +110 2008 में समय में वे +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीत यूरोपियन कप +111 मॉस रोक रखा है जल +112 महाभारत का है भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 महाभारत का है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_2.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_2.txt new file mode 100644 index 0000000..4490020 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_2.txt @@ -0,0 +1,511 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 देखकर ही कारण है सििद्ध होती है +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट में में +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के संबंधित विभागों +3 भारत सरकार के संबंधित उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के प्रसिद्ध गुप्त नाम से +4 यह एजेंट प्रसिद्ध 007 के +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +4 गुप्त नाम से 007 के प्रसिद्ध यह एजेंट +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 को समय शुरू +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से से कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : समय शुरू हुई +7 सुनवाई संबंधित गोधरा ट्रेन कांड की +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को हुआ नियुक्त हुई +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत था लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को समय राज्य का दर्जा पाया +11 आंध्र ने राजधानी कर्नूल को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को में न्यूजीलैंड +12 1 अक्टूबर 2008 को में ऑस्ट्रेलिया में +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड 1 अक्टूबर 2008 को में ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को , समय लिया +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को होना आزاد हुआ +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में में चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू से संबंधित भारतीय संगीत जगत +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा बर्लिन पर +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग एवं शिक्षा के क्षेत्र में संबंधित राष्ट्रपति से +22 वे प्राप्त करने वाले पद्म श्री सम्मान +22 राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को सहायता वित्तीय सहायता भी +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान में क्षेत्र के +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का प्रतिनिधित्व करता है वेदाङ्ग का +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं समझकर ही आत्मा +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा मैं +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से में हिमाचल प्रदेश में +27 चार का में ऋग्वेद में +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने क्रिया स्पष्ट इंकार कर दिया +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का संबंध तुलनात्मक अध्ययन +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +30 गुजरात क्वीन एक्स्प्रेस एक मेल एक्स्प्रेस ट्रेन +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर है पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट में स्थित है गंगोलीहाट तहसील +32 सिलकोट अन्तर्गत है कुमाऊँ मण्डल +32 सिलकोट अन्तर्गत है पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 कुमाऊँ मण्डल सिलकोट अन्तर्गत है पिथोरागढ जिले का +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के संबंध तकनीकी केंद्र को +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के संबंध मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 बाशो की मृत्यु 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 जब obl सोचा +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , में स्थित है कुभीर मण्डल +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 व्याकरण के संबंध दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 नवनिर्मित मेहता अनुसंधान संस्थान में में इलाहाबाद में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 रुस्तम खान नाम है इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर इस आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में समय वापसी हुई फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 3 मार्च 1884 को के द्वारा सर वाईकर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को वर्ष सन 1961 में +46 त्रिदेवनाथ बैनर्जी को पुरस्कार पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने के लिए हिन्दी फिल्मों +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं और मुस्लिमों के के साथ पर्व +49 पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह में फ्रैंकफर्ट शहर मे +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने क्रिया आगे बढ़ कर +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में भोजन +54 समुद्री भोजन , में भोजन +54 नारियल में भोजन +54 नारियल तेल का में भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में भोजन समुद्री भोजन , +54 तटीय कर्नाटक के में भोजन नारियल +54 तटीय कर्नाटक के में भोजन नारियल तेल का +54 समुद्री भोजन , में भोजन नारियल +54 समुद्री भोजन , में भोजन नारियल तेल का +54 नारियल में भोजन नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने क्रिया सुधारा +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की संबंधित श्रेणी +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन तथा जापान +58 इस देश का संपर्क रहा है +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने गणना करके ज्योतिष गणना +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की स्थित है खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं कहानियाँ +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को समय पेश किया +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें नाम उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +67 कृपया देखें फ्रेंच फ्लेमिश को अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का location पाकिस्तान में +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 लीबियाई रेगिस्तान का में स्थित है सीवा नख़लिस्तान +69 मत्रूह मुहाफ़ज़ाह का में है लीबियाई रेगिस्तान का +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह का प्रकार ग्रंथ +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लिखा 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में स्थित +74 अलबामा राज्य स्थित +74 फ्लोरिडा राज्य दक्षिण में स्थित +74 फ्लोरिडा राज्य राज्य स्थित +74 अलबामा स्थित property दक्षिण में +74 अलबामा राज्य स्थित फ्लोरिडा राज्य +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का is_a एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता दृष्टि से +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व समय ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 सीता राम को पहनाती हैं जयमाल +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +81 स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का संबंधित नाम +82 एजिंकोर्ट स्क्वायर नाम है स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 जिनके अलगअलग अध्यक्ष होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एल्बम से से तीसरा कट +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि कारण कोई और मानक नहीं थे +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास समय विकासों +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के संबंध प्रचार +87 सांप्रदायिक सिद्धांतों के संबंध प्रसार में +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +87 प्रचार सांप्रदायिक सिद्धांतों के संबंध प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां में इश -- डू में +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 किसानों के संबंधित दूध विपणन के +91 विकासशील देशों में में किसानों के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 17 फ़रवरी 2012 को तिथि रिलीज़ किया गया +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के में प्रतिषेधात्मक उपचार +93 प्रतिषेधात्मक उपचार में मक्खियों से +93 खाद्य एवं पेय पदार्थो को से मक्खियों +93 इस रोग के में प्रतिषेधात्मक उपचार मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संबंधित राष्ट्रीयता को +94 प्रतिस्पर्धी टीम की संबंधित राष्ट्रीयता को +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संबंधित राष्ट्रीयता को प्रतिस्पर्धी टीम की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग से मुंबई +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में शिल्पी -- सुथार निर्माण करते थे +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 अन्य सम्राट किया करते थे हत्या +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 हवाओं की संबंधित स्थिति का +100 पासा उपकरण फेंककर +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया , कारण होता है वात रोग का +102 प्रसिद्ध है यही कारण +102 केरल अपनी आयुर्वेदिक चिकित्सा शैली +102 विश्व भर में प्रसिद्ध केरल +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 सिरमोर राज्य के में अंतगर्त हिमालय पर्वत के नीचे का +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में स्थित उन दिनों +104 उन दिनों समय परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ संबंधित हो सकती हैं देश या समय +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 सन 1533 में समय उनका देहांत हो गया +108 47 वर्ष की उम्र उनका देहांत हो गया +108 रथयात्रा के दिन उनका देहांत हो गया +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में में वे +110 वे थे तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से संबंध जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का विषय प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3.txt new file mode 100644 index 0000000..3081af6 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3.txt @@ -0,0 +1,476 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को का कारण है शक्तिरूपी माया की +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित किया जाता है अखिल भारतीय पुलिस डयूटी मीट +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 परीक्षण करना द्वारा केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के गुप्त नाम से है प्रसिद्ध +4 यह एजेंट है 007 +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 कंपनी लागू किया नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 शुरू हुई समय में 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 वे है सर्वोच्च न्यायालय की न्यायाधीश +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत के बारे में ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट है जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र की राजधानी था कर्नूल +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न का प्रकार है सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को समय में रॉबर्ट आइगर ने +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 यह देश है एक देश +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 अन्य गढ़वाली सैनिकों है सैनिक +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 इसे है स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 एक अनूठी आभा का स्थान है कर्मा के चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू है भारतीय संगीत जगत से संबंधित +19 सोनू है एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +19 भारतीय संगीत जगत से संबंधित सोनू है एक प्रमुख हस्ती +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने के बाद बर्लिन पर क़ब्ज़ा +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी +21 प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 प्रथम भारतीय क्षेत्र में योग एवं शिक्षा के +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 वित्तीय सहायता भी के लिए है स्कूल की पढ़ाई +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान में है क्षेत्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का हिस्सा है वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 शब्द की आत्मा समझकर ही उपासना करता हूं +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से में है हिमाचल प्रदेश में +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 स्पष्ट इंकार कर दिया है स्पष्ट +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का विषय है तुलनात्मक अध्ययन +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर है प्रमुख हिल स्टेशन +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , में है उत्तराखण्ड राज्य के अन्तर्गत +32 पिथोरागढ जिले का में है कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन का है तकनीकी केंद्र +33 स्थानापन्न करना है क्रिया है स्थानांतरण +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के से जुड़े मामले दोनों मामले +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी का कारण है बाशो की मृत्यु +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम ने समय में जब कोई मतैक्य नहीं हुआ +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , में है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 अनेक ग्रन्थ के बारे में है व्याकरण के दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 नवनिर्मित मेहता अनुसंधान संस्थान है अनुसंधान संस्थान +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 रुस्तम खान के नाम पर इस जगह +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर इस आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 अट्ठाइसवें रक्षा सचिव के रूप में का है अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह के लिए संपर्क कर रहा है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को क्षेत्र चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 हिन्दी फिल्मों के लिए भी संगीत रचना की संगीत +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की संगीत +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया रिलीज़ किया गया +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने आगे बढ़ कर वरमाला डाल दिया +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार के दौरान राम नवमी +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के भोजन में है उल्लेखनीय +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने अध्ययन किया वहां +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +57 यह है प्राथमिक विधि अध्यारोप +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 इस देश का से चीन +58 इस देश का से जापान +58 चीन अधिक संपर्क रहा है जापान से +58 चीन इस देश का से जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ज्योतिष गणना करके पता लगाया +59 ज्योतिष गणना करने में तत्काल +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 खानों में का है अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 लिखे हैं में इस शैली में +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है पहला मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को समय में पेश किया +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही में है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का में है पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का में है अंदरूनी भाग +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी है बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 कहानियाँ रहस्यमयी हैं कहानियाँ +71 कहानियाँ भयावह हैं कहानियाँ +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 लिखा है समय में 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में है एक राज्य +74 फ्लोरिडा राज्य दक्षिण में है एक राज्य +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान में है ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 ईसा पूर्व समय में ईसा मसीह के जन्म से पूर्व +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 वैदिक मन्त्रों के समय में स्वरघोष के मध्य +81 जयमाल समय में स्वरघोष के मध्य +81 वैदिक मन्त्रों के समय में स्वरघोष के मध्य जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 विभिन्न स्रोत में विभाजित हैं इस तथ्य पर +82 स्थान का नाम है एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 विभिन्न विभाग के अध्यक्ष जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 तीसरा कट है एक संगीत ट्रैक +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उस दौर में समय में चूंकि +85 सब कामचलाऊ व्यवस्था का है व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 बहुत से विकासों ने का परिणाम है बेहतर परिणाम +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 आप बहुत योगदान है सांप्रदायिक सिद्धांतों के +87 बहुत योगदान से संबंधित है सांप्रदायिक सिद्धांतों के +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 केवल 1 -- 3 माह के समय में मेसोथेलियोमा +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में है उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 किसानों के में है विकासशील देशों में , +91 पुराने तरीके होता है तेजी से +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से शुरुआत है बोलीवुड करियर की +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के में है प्रतिषेधात्मक उपचार +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सीधी बस सेवा है सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 शिल्पी -- सुथार निर्माण करते थे ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने के विपरीत अन्य सम्राट किया करते थे +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 पासा फेंककर का कारण है हवाओं की स्थिति का निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया है एक स्थिति +101 वात रोग का प्रकार है वात रोग +102 प्रसिद्ध है यही कारण +102 केरल की शैली है आयुर्वेदिक चिकित्सा +102 केरल में प्रसिद्ध है विश्व भर +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 ढलुवा भाग का हिस्सा है अंतगर्त हिमालय पर्वत +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 प्राधान्य समय में उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ की किसी देश +105 ये कहानियाँ की समय +105 किसी देश ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ की समय +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण है कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 उनका समय में रथयात्रा के दिन +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे के कारण पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 वे है ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस का कार्य है जल रोकना +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 भण्डार में है प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3_filtering.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3_filtering.txt new file mode 100644 index 0000000..c3c7c6c --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_3_filtering.txt @@ -0,0 +1,424 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत का कारण है शक्तिरूपी माया +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करता है अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 परीक्षण करना द्वारा केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के गुप्त नाम से है प्रसिद्ध +4 यह एजेंट है 007 +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 लागू किया गया है समय में 01 अप्रैल 2009 से +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 शुरू हुई समय में 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत के बारे में ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट है जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र ने राजधानी कर्नूल को +11 आंध्र ने समय में 1 अक्टूबर 1953 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न जारी हुआ 1 अक्टूबर 2008 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर के रूप में सीईओ +13 रॉबर्ट आइगर ने लिया स्थान +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 इसे है स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त था पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा है एक आन्दोलन +18 कर्मा के चेहरे पर है एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 सोनू में है भारतीय संगीत जगत +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने के बाद बर्लिन पर क़ब्ज़ा +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 प्रथम भारतीय क्षेत्र में योग एवं शिक्षा के +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 वित्तीय सहायता भी के लिए पढ़ाई +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 यह स्थान में है क्षेत्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का प्रतिनिधित्व है वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से में है हिमाचल प्रदेश में +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का के बारे में है तुलनात्मक अध्ययन +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर है प्रमुख हिल स्टेशन +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , के अन्तर्गत है उत्तराखण्ड राज्य +32 सिलकोट , का भाग है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन का है तकनीकी केंद्र +33 स्थानापन्न करना है क्रिया है स्थानांतरण +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के के पास है दोनों मामले +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी का कारण है बाशो की मृत्यु +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम ने समय में जब कोई मतैक्य नहीं हुआ +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , है एक गाँव +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 अनेक ग्रन्थ के बारे में है व्याकरण के दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 नवनिर्मित मेहता अनुसंधान संस्थान है अनुसंधान संस्थान +41 उनके नाम पर property रुस्तम खान +41 रुस्तम खान का है इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर इस आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 अट्ठाइसवें रक्षा सचिव के रूप में का है अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 आधारशिला रखी गयी थी के लिए इसकी रचना की +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह के लिए इस तकनीक +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को का क्षेत्र है चिकित्सा विज्ञान +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 हिन्दी फिल्मों के लिए भी संगीत रचना की संगीत +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की संगीत +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने आगे बढ़ कर वरमाला डाल दिया +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार के दौरान राम नवमी +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक का भोजन है +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने के साथ अध्ययन +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 चीन रहा है अधिक संपर्क +58 जापान से रहा है अधिक संपर्क +58 इस देश का रहा है अधिक संपर्क +58 चीन रहा है अधिक संपर्क जापान से +58 चीन रहा है अधिक संपर्क इस देश का +58 जापान से रहा है अधिक संपर्क इस देश का +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ज्योतिष गणना करके पता लगाया +59 ज्योतिष गणना करने में तत्काल +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 खानों में का है अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो है पहला मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 पेश किया समय में 6 जुलाई 2009 को +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी लगभग पूरी तरह से निर्भर है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही में है आधारभूत प्रोफ़ाइल में भी +66 उन्हें है उत्कल मणि +67 अधिक जानकारी के लिए के लिए देखें +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का है ज्यादातर अंश +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का है एक क्षेत्र +70 राज्य की राजधानी है बंगलुरु शहर +70 बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता है भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +71 कहानियाँ रहस्यमयी हैं कहानियाँ +71 कहानियाँ भयावह हैं कहानियाँ +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त लिखा सुपद्य व्याकरण +74 फ्लोरिडा राज्य स्थित है दक्षिण में +74 अलबामा पश्चिम में है एक राज्य +74 फ्लोरिडा राज्य दक्षिण में है एक राज्य +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान में है ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विभाजित किया गया विशेषता की +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व समय में ईसा मसीह के जन्म से पूर्व +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 वैदिक मन्त्रों के के दौरान विश्वामित्र द्वारा +81 जयमाल प्रदान करती है सीता राम को +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का है नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 विभिन्न विभाग के अध्यक्ष जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 तीसरा कट है एक संगीत ट्रैक +85 उस दौर में कोई और मानक नहीं थे ,--> उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी--> उन्हें +85 सब कामचलाऊ व्यवस्था का है--> व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 बहुत से विकासों ने के लिये निमोनिया से पीड़ित लोगों +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 आप बहुत योगदान है सांप्रदायिक सिद्धांतों के +87 बहुत योगदान से संबंधित है सांप्रदायिक सिद्धांतों के +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां इश -- डू में में होता है सामना +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में है उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +91 किसानों के में है विकासशील देशों में , +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से शुरुआत है बोलीवुड करियर की +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के में है प्रतिषेधात्मक उपचार +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है चालक की +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +94 यह संदर्भित करता है राष्ट्रीयता को चालक की +94 राष्ट्रीयता को यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सीधी बस सेवा है सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 शिल्पी -- सुथार निर्माण करते थे ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द विधि से संबंधित है विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह पश्चिम में है थोड़ी दूर +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने के विपरीत अन्य सम्राट किया करते थे +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 सर्वप्रथम समय में किया जाता है +100 हवाओं की का निर्धारण स्थिति का +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 वात रोग का संबंधित है हाइपरयूरीसेमिया +102 केरल की शैली है आयुर्वेदिक चिकित्सा +102 केरल में प्रसिद्ध है विश्व भर +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 ढलुवा भाग का हिस्सा है अंतगर्त हिमालय पर्वत +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 उन दिनों समय में प्राधान्य +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ का संबंध है देश +105 ये कहानियाँ का संबंध है समय +105 किसी देश ये कहानियाँ हो सकती हैं समय की +105 देश ये कहानियाँ का संबंध है समय +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण का कारण है प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 उनका समय में रथयात्रा के दिन +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे के कारण पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस का कार्य है जल रोकना +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 भण्डार में है प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new.txt new file mode 100644 index 0000000..d7b9fde --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new.txt @@ -0,0 +1,465 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को में होती है शक्तिरूपी माया की +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित कर रही है अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 विवादित अंगुलि चिह्नों का परीक्षण किया गया परीक्षण करना +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 यह एजेंट प्रसिद्ध है 007 के +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से शुरू हुआ लागू किया गया है +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई शुरू हुई 01 जून : +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 वे नियुक्त हुई सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय की +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 ऐसे लोग थे 06 प्रतिशत +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया पहला डाक टिकट +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र ने बना राज्य +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न है सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को , हुआ लिया +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 यह देश आजाद हुआ इंग्लैंड से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 अन्य गढ़वाली सैनिकों के साथ था फ्रांस +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा एक आन्दोलन थी एक आन्दोलन +17 हिन्दी प्रचार सभा जुड़ा था स्वतन्त्रता आन्दोलन +17 जो आरम्भ हुई हिन्दी प्रचार सभा एक आन्दोलन थी एक आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू में भारतीय संगीत जगत +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने आज़ाद कराया प्राग +21 प्राग को सोवियत दस्तों ने आज़ाद कराया प्राग +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 वे योग एवं शिक्षा के क्षेत्र में प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 वित्तीय सहायता भी के लिए स्कूल की पढ़ाई +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान दर्शनीय केन्द्र है क्षेत्र के लोगों के लिए +24 आज भी यह स्थान दर्शनीय केन्द्र है क्षेत्र के लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं समझकर ही उपासना करता हूं +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में बहती हैं पांच नदियों +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने संबंध है बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 तुलनात्मक अध्ययन विषय सभी सामाजिक विज्ञानों से +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर में है पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , अन्तर्गत उत्तराखण्ड राज्य +32 सिलकोट , भाग है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के स्थानांतरित कर रहा है तकनीकी केंद्र को +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी कारण है मृत्यु +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 कोई मतैक्य नहीं हुआ जब +36 तो नहीं हुआ कोई मतैक्य जब +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , है एक गाँव +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 अनेक ग्रन्थ विषय है व्याकरण के दर्शन पक्ष पर +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में में स्थापित नवनिर्मित मेहता अनुसंधान संस्थान +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 इस जगह का नाम रखा गया रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर रहना पसंद करते हैं इस आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 अमरीका रक्षा सचिव था एक बार फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 आधारशिला की रचना इसकी रचना की +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है औद्योगिक रूप से +48 अनेक प्रक्रियाओं में औद्योगिक रूप से उपयोग किया जाता है काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया रिलीज़ किया गया +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने आगे बढ़ कर वरमाला डाल दिया +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के है भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने के साथ अध्ययन +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 इस देश का संपर्क रहा चीन +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 राजा की में है आयु +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की खानों में +60 खानों में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 लिखे हैं में इस शैली में +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है पहले मलयाली मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 उन्होंने हुआ 6 जुलाई 2009 को +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 लागू किया जाता है में आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए स्रोत है फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का में है पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का में है लीबिया +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी है बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 प्रकाशित हुए हैं प्रकाशित किया एक कहानी संग्रह +72 प्रकाशित हुए हैं प्रकाशित किया दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं प्रकाशित किया दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में है फ्लोरिडा राज्य +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 होबार्ट शहर में स्थित है ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता विशेषता की +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व दर्शाता है वर्षों को +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा संबंधित है वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का है नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 जिनके अलगअलग अध्यक्ष है विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एकलों के बीच के बाद एक लंबे अंतराल +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 कोई और मानक नहीं थे , के कारण सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 बहुत से विकासों ने के लिये निमोनिया से +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार में बहुत योगदान +87 सांप्रदायिक सिद्धांतों के प्रसार में बहुत योगदान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होता है संपर्क में +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 किसानों के प्रभावित दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने डेब्यू किया एक दीवाना था से +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के है प्रतिषेधात्मक उपचार में भी +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 शिल्पी -- सुथार बनाया ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 सरकारी इकाई है सरकारी +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने के विपरीत अन्य सम्राट किया करते थे +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 हवाओं की है स्थिति का निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया , संबंधित है वात रोग का +102 प्रसिद्ध है यही कारण +102 केरल की आयुर्वेदिक चिकित्सा शैली प्रसिद्ध +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 ढलुवा भाग का भाग है सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 परम्परागत चित्रकला का ही हुआ उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ हो सकती हैं कुछ +105 किसी देश ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं कुछ +105 समय की ये कहानियाँ हो सकती हैं कुछ +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 देहांत हो गया हुआ 47 वर्ष की +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 यह कहा जाता है क्योंकि यह तालाब में देखा जाता है अक्सर +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से रोक रहा है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 भण्डार में है प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new_filtering.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new_filtering.txt new file mode 100644 index 0000000..5b9a1d1 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_enhancement_react_new_filtering.txt @@ -0,0 +1,410 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को सििद्ध होती है शक्तिरूपी माया की +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 विवादित अंगुलि चिह्नों का परीक्षण किया गया परीक्षण +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 यह एजेंट प्रसिद्ध है 007 के +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से शुरू हुआ लागू किया गया है +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई शुरू हुई 01 जून : +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई 01 जून : +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 ऐसे लोग थे 06 प्रतिशत +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया पहला डाक टिकट +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न है सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , हुआ लिया +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 यह देश आजाद हुआ इंग्लैंड से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 1 अप्रैल 1946 को इसे घोषित किया गया स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा एक आन्दोलन थी आन्दोलन +17 जो आरम्भ हुई हिन्दी प्रचार सभा एक आन्दोलन थी आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 सोनू में भारतीय संगीत जगत +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा किया बर्लिन पर +21 प्राग राजधानी है चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे योग एवं शिक्षा के क्षेत्र में प्रथम भारतीय +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 वित्तीय सहायता भी के लिए स्कूल की पढ़ाई +24 यह स्थान दर्शनीय केन्द्र है क्षेत्र के +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का भाग है वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से उल्लेख है ऋग्वेद में +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से शिक्षा का तुलनात्मक अध्ययन +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर में है पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , अन्तर्गत उत्तराखण्ड राज्य +32 सिलकोट , भाग है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के स्थानांतरित कर रहा है तकनीकी केंद्र को +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी कारण है मृत्यु +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 कोई मतैक्य के कारण सोचा +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , है एक गाँव +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 अनेक ग्रन्थ विषय है व्याकरण के दर्शन पक्ष पर +40 1975 में में स्थापित नवनिर्मित मेहता अनुसंधान संस्थान +40 निदेशक बने 1975 में +41 उनके property नाम पर +41 नाम पर property इस जगह का +41 इस जगह का नाम रखा गया रुस्तम खान +41 उनके property नाम पर इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 इस आपाधापी से दूर कारण है रहना +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 अमरीका रक्षा सचिव था एक बार फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह के लिए इस तकनीक +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को है चिकित्सा विज्ञान के क्षेत्र में +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 संगीत रचना की के लिए हिन्दी फिल्मों +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 काइटिन का property औद्योगिक रूप से +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने आगे बढ़ कर अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के है भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने के साथ अध्ययन +56 सिफियस चतुर्थ की श्रेणी के तारों है सिफीड +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 चीन रहा है अधिक संपर्क +58 जापान से रहा है अधिक संपर्क +58 इस देश का संपर्क रहा चीन +58 चीन रहा है अधिक संपर्क जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 राजा की में है आयु +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की खानों में +60 खानों में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है पहले मलयाली मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 उन्होंने हुआ 6 जुलाई 2009 को +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 लागू किया जाता है में आधारभूत प्रोफ़ाइल में भी +66 उन्हें है उत्कल मणि +67 अधिक जानकारी के लिए स्रोत है फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का में है लीबिया +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी है बंगलुरु शहर +71 ये प्रसिद्ध हैं रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 अलबामा के पास है फ्लोरिडा राज्य +74 फ्लोरिडा राज्य स्थित है दक्षिण में +74 अलबामा स्थित है पश्चिम में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में स्थित है ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विषय है विशेषता की +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 ईसा मसीह के हुआ जन्म +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा संबंधित है वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का नाम है एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एल्बम से जारी किया गया 2006 के मध्य में +84 तीसरा कट से एल्बम +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 कोई और मानक नहीं थे , के कारण सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार में बहुत योगदान +87 सांप्रदायिक सिद्धांतों के प्रसार में बहुत योगदान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होता है संपर्क में +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +90 उस तल में ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +91 किसानों के प्रभावित दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने डेब्यू किया एक दीवाना था से +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के है प्रतिषेधात्मक उपचार में भी +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है चालक की +94 यह है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +94 यह संदर्भित करता है राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग जाता है रत्नागिरी +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द है विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने के विपरीत अन्य सम्राट किया करते थे +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 हवाओं की है स्थिति का निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया संबंधित है वात रोग का +102 केरल की आयुर्वेदिक चिकित्सा शैली प्रसिद्ध +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका स्थान ढलुवा भाग +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में हुआ उन दिनों +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण प्रकृति आधारित निर्माण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 देहांत हो गया हुआ 47 वर्ष की +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 यह कहा जाता है क्योंकि यह तालाब में देखा जाता है अक्सर +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस रोक रहा है मिट्टी में जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 भण्डार में है प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement.txt new file mode 100644 index 0000000..937e0c4 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement.txt @@ -0,0 +1,517 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत देखकर ही शक्तिरूपी माया +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट में अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के संबंधित विभागों +3 भारत सरकार के संबंधित उपक्रमों +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 प्रसिद्ध एजेंट +4 एजेंट फ़्लेमिंग की पुस्तकें +4 एजेंट लघुकथाओं में मौजूद +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 में शुरू की +5 उन्होंने शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से से कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : temporal_relation सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को हुआ नियुक्ति +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 ऐसे लोग संख्या 06 प्रतिशत +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को तिथि 1 अक्टूबर 1854 +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को होना राज्य का दर्जा पाया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को में न्यूजीलैंड +12 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को समय 1 अक्टूबर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को में यह देश +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह का सम्बन्ध सैनिकों से +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर चेहरे +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू से संबंधित भारतीय संगीत जगत +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा बर्लिन पर +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग में शिक्षा +22 शिक्षा के क्षेत्र +22 राष्ट्रपति से पद्म श्री सम्मान +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को प्राप्त होती है वित्तीय सहायता +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान में क्षेत्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में नदियों +27 ऋग्वेद में उल्लेख +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने किया इंकार +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का संबंध तुलनात्मक अध्ययन +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर में वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट में स्थित है गंगोलीहाट तहसील +32 सिलकोट में है पिथोरागढ जिला +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है उत्तराखण्ड राज्य +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 पिथोरागढ जिला सिलकोट में है कुमाऊँ मण्डल +32 पिथोरागढ जिला सिलकोट में है उत्तराखण्ड राज्य +32 कुमाऊँ मण्डल सिलकोट में है उत्तराखण्ड राज्य +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के संबंधित तकनीकी केंद्र +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के property मुख्य न्यायाधीश +34 दोनों मामले सामने विशेष न्यायाधीश मोहम्मद रजा के +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश चीफ कोर्ट के +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश चीफ कोर्ट के +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 बाशो मृत्यु 28 नवम्बर 1694 +35 बाशो कारण किसी बीमारी +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम के पास एक हल +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में समय एक बार +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड में स्थित है कुभीर मण्डल +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 व्याकरण के संबंध दर्शन पक्ष +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में में इलाहाबाद में +40 नवनिर्मित मेहता अनुसंधान संस्थान में में इलाहाबाद में +40 1975 में में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में समय वापसी हुई फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 3 मार्च 1884 को तिथि आधारशिला रखी गयी थी +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से संबंधित तकनीक +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को पुरस्कार पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने रचना की हिन्दी फिल्मों के लिए +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है प्रक्रियाओं में +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह में जर्मनी के फ्रैंकफर्ट शहर मे +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 अर्जुन के गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार के दौरान राम नवमी +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन +54 तटीय कर्नाटक संबंधित भोजन +54 समुद्री भोजन में भोजन +54 नारियल में भोजन +54 नारियल तेल में भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन समुद्री भोजन +54 तटीय कर्नाटक में भोजन नारियल +54 तटीय कर्नाटक में भोजन नारियल तेल +54 समुद्री भोजन में भोजन नारियल +54 समुद्री भोजन में भोजन नारियल तेल +54 नारियल में भोजन नारियल तेल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने अध्ययन के साथ ही सुधारा +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की प्रकार तारों को +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +57 यह is_known_as प्राथमिक विधि अध्यारोप +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 देश से चीन +58 देश से जापान +58 चीन अधिक संपर्क रहा है जापान से +58 चीन देश से जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने गणना करके आयु +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की संबंध खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ और उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है दलित +62 वो है मलयाली +62 दलित वो है मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को हुआ पेश किया +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही संबंध आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें नाम उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का location पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 लीबियाई रेगिस्तान का में स्थित है सीवा नख़लिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर में भारत +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये रहस्यमयी हैं कहानियों +71 ये भयावह हैं कहानियों +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह का प्रकार साहित्य +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लिखा 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा में स्थित है पश्चिम में +74 फ्लोरिडा राज्य में स्थित है दक्षिण में +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान में ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की property विशेषता की +78 इंडोचायनीज़ part_of उपक्षेत्रों में +78 इंडोमलायन part_of उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 दृष्टि से property विशेषता की जंगलों की +78 इंडोचायनीज़ part_of उपक्षेत्रों में इंडोमलायन +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 प्रयोगशील प्रवृत्तियाँ होती प्रश्रय देने लगी होंगी +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व समय ईसा मसीह के जन्म से पूर्व +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 सीता पहनाती है राम को +81 राम प्राप्त करती है जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का property एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का एजिंकोर्ट स्क्वायर +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 अलगअलग अध्यक्ष होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +83 जिनके अलगअलग अध्यक्ष विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एल्बम से का तीसरा कट +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि कारण सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास समय 1900 +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों संबंध प्रचार +87 सांप्रदायिक सिद्धांतों संबंध प्रसार +87 सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +87 प्रचार सांप्रदायिक सिद्धांतों संबंध प्रसार +87 प्रचार सांप्रदायिक सिद्धांतों संबंध आपके पिता +87 प्रसार सांप्रदायिक सिद्धांतों संबंध आपके पिता +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +88 मेसोथेलियोमा समय अवधि 1 -- 3 माह +88 मामले मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 किसानों के संबंध दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से रिलीज़ की तारीख 17 फ़रवरी 2012 +92 एक दीवाना था से प्रकार बोलीवुड करियर +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के संबंध प्रतिषेधात्मक उपचार +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संबंधित प्रतिस्पर्धी टीम की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 मुंबई से सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में का प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह में बलिया जिले में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 अन्य सम्राट किया करते थे हत्या +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये के द्वारा पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया का रोग वात रोग +102 प्रसिद्ध है यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 विश्व भर में प्रसिद्ध है केरल +102 अपनी आयुर्वेदिक चिकित्सा शैली के कारण केरल प्रसिद्ध है विश्व भर में +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 सिरमोर राज्य के में हिमालय पर्वत +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 परम्परागत चित्रकला से सम्बंधित दक्षिण भारत +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ संबंधित हो सकती हैं देश +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 कारण हैं निम्नलिखित +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +107 2010 में सम्पन्न हुआ +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 सन 1533 में में देहांत हो गया +108 47 वर्ष की उम्र अल्पायु में +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में में वे +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से मिट्टी +111 जल रोक रखा जाता है मॉस +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का विषय प्राचीन इतिहास कथाओं उपदेशों आदि का +112 महाभारत का प्रकार भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement_filtering.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement_filtering.txt new file mode 100644 index 0000000..c651d11 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_plus_enhancement_filtering.txt @@ -0,0 +1,479 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत देखकर ही शक्तिरूपी माया +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट में अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के संबंधित विभागों +3 भारत सरकार के संबंधित उपक्रमों +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 प्रसिद्ध एजेंट +4 एजेंट फ़्लेमिंग की पुस्तकें +4 एजेंट लघुकथाओं में मौजूद +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 में शुरू की +5 उन्होंने शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से से कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : temporal_relation सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 ऐसे लोग का प्रतिशत 06 प्रतिशत +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को तिथि 1 अक्टूबर 1854 +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को होना राज्य का दर्जा पाया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को में न्यूजीलैंड +12 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड 1 अक्टूबर 2008 को में ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 1 अक्टूबर को समय 1 अक्टूबर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को में यह देश +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी आन्दोलन +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 कर्मा के चेहरे पर चेहरे +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 सोनू से संबंधित भारतीय संगीत जगत +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने कब्ज़ा बर्लिन पर +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग में शिक्षा +22 शिक्षा के क्षेत्र +22 राष्ट्रपति से पद्म श्री सम्मान +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को प्राप्त होती है वित्तीय सहायता +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 यह स्थान में क्षेत्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही का वेदाङ्ग +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में नदियों +27 ऋग्वेद में उल्लेख +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का संबंध तुलनात्मक अध्ययन +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर में वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट में स्थित है गंगोलीहाट तहसील +32 सिलकोट में है पिथोरागढ जिला +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है उत्तराखण्ड राज्य +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 पिथोरागढ जिला सिलकोट में है कुमाऊँ मण्डल +32 पिथोरागढ जिला सिलकोट में है उत्तराखण्ड राज्य +32 कुमाऊँ मण्डल सिलकोट में है उत्तराखण्ड राज्य +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के संबंधित तकनीकी केंद्र +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के property मुख्य न्यायाधीश +34 मुख्य न्यायाधीश property सर लुइस शर्ट +34 विशेष न्यायाधीश मोहम्मद रजा property दोनों मामले +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश चीफ कोर्ट के +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश चीफ कोर्ट के +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 बाशो मृत्यु 28 नवम्बर 1694 +35 बाशो कारण किसी बीमारी +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम के पास एक हल +37 सन 1696 में समय एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड में स्थित है कुभीर मण्डल +38 मर्लगोंड राज्य है आन्ध्रप्रदेश राज्य +38 मर्लगोंड जिला है अदिलाबादु जिले का +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 व्याकरण के संबंध दर्शन पक्ष +40 1975 में में इलाहाबाद में +40 नवनिर्मित मेहता अनुसंधान संस्थान में में इलाहाबाद में +40 1975 में में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +41 उनके नाम पर property रुस्तम खान +41 इस जगह का नाम रुस्तम खान +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग से दूर आपाधापी +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में समय वापसी हुई फिर +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 3 मार्च 1884 को तिथि आधारशिला रखी गयी थी +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से संबंधित तकनीक +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को पुरस्कार पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने रचना की हिन्दी फिल्मों के लिए +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है प्रक्रियाओं में +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह में जर्मनी के फ्रैंकफर्ट शहर मे +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 अर्जुन के गले में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार के दौरान राम नवमी +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन +54 तटीय कर्नाटक संबंधित भोजन +54 समुद्री भोजन में भोजन +54 नारियल में भोजन +54 नारियल तेल में भोजन +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक में भोजन समुद्री भोजन +54 तटीय कर्नाटक में भोजन नारियल +54 तटीय कर्नाटक में भोजन नारियल तेल +54 समुद्री भोजन में भोजन नारियल +54 समुद्री भोजन में भोजन नारियल तेल +54 नारियल में भोजन नारियल तेल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने अध्ययन के साथ ही सुधारा +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की प्रकार तारों को +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +57 यह is_known_as प्राथमिक विधि अध्यारोप +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 देश से चीन +58 देश से जापान +58 चीन अधिक संपर्क रहा है जापान से +58 चीन देश से जापान +59 कश्यप ने गणना करके आयु +59 कश्यप ने पता लगाया शेष +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की संबंध खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ और उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो है दलित +62 वो है मलयाली +62 दलित वो है मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को हुआ पेश किया +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही संबंध आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें नाम उत्कल मणि +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का location पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 लीबियाई रेगिस्तान का में स्थित है सीवा नख़लिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर में भारत +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये रहस्यमयी हैं कहानियों +71 ये भयावह हैं कहानियों +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लिखा 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित है दक्षिण में +74 अलबामा में स्थित है पश्चिम में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान में ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की property विशेषता की +78 इंडोचायनीज़ part_of उपक्षेत्रों में +78 इंडोमलायन part_of उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 दृष्टि से property विशेषता की जंगलों की +78 इंडोचायनीज़ part_of उपक्षेत्रों में इंडोमलायन +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 प्रयोगशील प्रवृत्तियाँ होती प्रश्रय देने लगी होंगी +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व समय ईसा मसीह के जन्म से पूर्व +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 सीता पहनाती है राम को +81 राम प्राप्त करती है जयमाल +81 वैदिक मन्त्रों के संबंधित है स्वरघोष +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 स्थान का property एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का एजिंकोर्ट स्क्वायर +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 अलगअलग अध्यक्ष होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +83 जिनके अलगअलग अध्यक्ष विभिन्न विभाग होते हैं अलगअलग अध्यक्ष +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एल्बम से का तीसरा कट +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि कारण सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास समय 1900 +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार --बहुत योगदान है--> पिता के समान +87 बहुत योगदान --property--> आपका भी +87 प्रसार में --बहुत योगदान है--> पिता के समान +87 सांप्रदायिक सिद्धांतों --संबंध--> प्रचार +87 सांप्रदायिक सिद्धांतों --संबंध--> प्रसार +87 सांप्रदायिक सिद्धांतों --संबंध--> आपके पिता +87 प्रचार --बहुत योगदान है--> पिता के समान प्रसार में +87 प्रचार सांप्रदायिक सिद्धांतों --संबंध--> प्रसार +87 प्रचार सांप्रदायिक सिद्धांतों --संबंध--> आपके पिता +87 प्रसार सांप्रदायिक सिद्धांतों --संबंध--> आपके पिता +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +88 मेसोथेलियोमा समय अवधि 1 -- 3 माह +88 मामले मेसोथेलियोमा उत्पन्न होने के संपर्क में भी +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष में उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 पुराने तरीके property दूध विपणन के +91 किसानों के संबंध दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 एक दीवाना था से रिलीज़ की तारीख 17 फ़रवरी 2012 +92 एक दीवाना था से प्रकार बोलीवुड करियर +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के संबंध प्रतिषेधात्मक उपचार +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है चालक की +94 यह संबंधित प्रतिस्पर्धी टीम की +94 यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +94 यह संदर्भित करता है राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 मुंबई से सड़क मार्ग +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में का प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह में बलिया जिले में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 अन्य सम्राट किया करते थे हत्या +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये के द्वारा पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया का रोग वात रोग +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 विश्व भर में प्रसिद्ध है केरल +102 अपनी आयुर्वेदिक चिकित्सा शैली के कारण केरल प्रसिद्ध है विश्व भर में +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 सिरमोर राज्य के में हिमालय पर्वत +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 परम्परागत चित्रकला से सम्बंधित दक्षिण भारत +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ संबंधित हो सकती हैं देश +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 में सम्पन्न हुआ +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 सन 1533 में में देहांत हो गया +108 47 वर्ष की उम्र अल्पायु में +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है पाण्सिल्क भी +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 पाण्सिल्क भी इसे कहा जाता है यह देखा जाता है अक्सर +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से मिट्टी +111 जल रोक रखा जाता है मॉस +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का विषय प्राचीन इतिहास कथाओं उपदेशों आदि का +112 महाभारत का प्रकार भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_3.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_3.txt new file mode 100644 index 0000000..46ee860 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_3.txt @@ -0,0 +1,699 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को देखकर शक्तिरूपी माया की +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का +3 भारत सरकार के भेजे गए विवादित अंगुलि चिह्नों का +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +3 केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के +3 भारत सरकार के भेजे गए विवादित अंगुलि चिह्नों का उपक्रमों द्वारा +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के प्रसिद्ध गुप्त नाम से +4 यह एजेंट मौजूद फ़्लेमिंग की +4 फ़्लेमिंग की मौजूद बारह पुस्तकों +4 फ़्लेमिंग की मौजूद दो लघुकथाओं में +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +4 यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +4 बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से लागू किया गया है कंपनी में +6 नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 नवीनतम वेतनमानों को कंपनी में लागू किया गया है 01 अप्रैल 2009 से +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड की शुरू हुई सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद के +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड की +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +7 गोधरा ट्रेन कांड की शुरू हुई सुनवाई अहमदाबाद के +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को हुआ नियुक्त हुई +8 वे नियुक्त हुई सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय की +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत थे ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र ने पाया राज्य का दर्जा +11 कर्नूल को पाया राजधानी के साथ +11 आंध्र ने पाया 1 अक्टूबर 1953 को +11 कर्नूल को आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल को राजधानी के साथ +11 कर्नूल को आंध्र ने पाया 1 अक्टूबर 1953 को +11 दर्जा पाया 1 अक्टूबर 1953 को आंध्र ने +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया में जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न न्यूजीलैंड +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 यह देश आजाद हुआ इंग्लैंड से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड से +14 इंग्लैंड के शासन से यह देश आजाद हुआ इंग्लैंड से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में हुआ भेज दिया गया +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को +15 फ्रांस चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त इसे +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू बन चुके हैं भारतीय संगीत जगत में +19 एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत में +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +19 अब तक , भारतीय संगीत जगत में बन चुके हैं सोनू +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 बर्लिन पर आज़ाद कराया सोवियत दस्तों ने +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 चेकोस्लोवाकिया की राजधानी प्राग को +21 प्राग को सोवियत दस्तों ने आज़ाद कराया बर्लिन पर +21 प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर सोवियत दस्तों ने +21 प्राग को property राजधानी चेकोस्लोवाकिया की +21 बर्लिन पर आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग में शिक्षा के +22 शिक्षा के क्षेत्र में योग +22 राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान +22 वे है प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में बहने वाली पांच नदियों +27 पांच नदियों में से चार +27 चार का उल्लेख +27 उल्लेख ऋग्वेद में मिलता है +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +27 पांच नदियों में से हिमाचल प्रदेश में बहने वाली पांच नदियों +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने इंकार कर दिया बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन जुड़ा है शिक्षा का +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर है प्रमुख हिल स्टेशन +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , है एक गाँव +32 सिलकोट , में गंगोलीहाट तहसील +32 सिलकोट , में भारत +32 सिलकोट , में उत्तराखण्ड राज्य +32 सिलकोट , में कुमाऊँ मण्डल +32 सिलकोट , में पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 गंगोलीहाट तहसील सिलकोट , में भारत +32 गंगोलीहाट तहसील सिलकोट , में उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट , में कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट , में पिथोरागढ जिले +32 भारत सिलकोट , में उत्तराखण्ड राज्य +32 भारत सिलकोट , में कुमाऊँ मण्डल +32 भारत सिलकोट , में पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट , में कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट , में पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट , में पिथोरागढ जिले +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 चीफ कोर्ट के पेश हुए दोनों मामले मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले सर लुइस शर्ट +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से हो गई मृत्यु +35 बाशो की हो गई मृत्यु +35 मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई बाशो की +35 28 नवम्बर 1694 को हो गई मृत्यु किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु बाशो की +35 बाशो की हो गई मृत्यु 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , है एक गाँव +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 मर्लगोंड , का है भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है भारत के +38 अदिलाबादु जिले मर्लगोंड , का है भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 बाद में लिखे गये व्याकरण के +39 बाद में लिखे गये दर्शन पक्ष पर +39 बाद में लिखे गये अनेक ग्रन्थ +39 अनेक ग्रन्थ लिखे गये बाद में व्याकरण के +39 अनेक ग्रन्थ लिखे गये बाद में दर्शन पक्ष पर +39 दर्शन पक्ष पर लिखे गये व्याकरण के बाद में +39 व्याकरण के बाद में लिखे गये अनेक ग्रन्थ +39 दर्शन पक्ष पर बाद में लिखे गये अनेक ग्रन्थ +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में +40 इलाहाबाद में हुआ नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 उनके रखा गया नाम पर +41 नाम रखा गया नाम पर उनके +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में हुआ वापसी हुई फिर +43 अमरीका के वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप में +43 उनकी अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी इसकी रचना की +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से के लिए इस तकनीक +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया सन 1961 में +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +46 सन 1961 में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों के मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह लगाया जाता है जर्मनी के +51 हर साल यह लगाया जाता है जर्मनी के +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में है भोजन +54 भोजन में है समुद्री भोजन , +54 भोजन में है नारियल +54 भोजन में है नारियल तेल का +54 समुद्री भोजन , है नारियल +54 समुद्री भोजन , है नारियल तेल का +54 नारियल है नारियल तेल का +54 व्यापक उपयोग है उल्लेखनीय +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , भोजन में है नारियल +54 समुद्री भोजन , भोजन में है नारियल तेल का +54 नारियल भोजन में है नारियल तेल का +54 नारियल समुद्री भोजन , है नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों को +56 सिफीड कहते हैं सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 खानों में में मोमबत्तियाँ +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +61 कहानियाँ इस शैली में लिखे हैं उपन्यास +61 उपन्यास इस शैली में लिखे हैं उन्होंने +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +63 उन्होंने 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें जाना जाता है उत्कल मणि के +66 नाम से उन्हें जाना जाता है उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +67 कृपया देखें फ्रेंच फ्लेमिश को अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +69 लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का +69 जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +81 सीता राम को पहनाती हैं जयमाल +81 जयमाल विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +81 स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एकलों के बीच जारी किया गया एल्बम से +84 एल्बम से जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम से +84 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +84 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम से तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में एल्बम से +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास हुआ विकासों +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को +86 निमोनिया से पीड़ित लोगों के लिये परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार प्रसार में +87 सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों के +87 सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों के +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां मिलते नहीं है इश -- डू में +89 जहां मिलते नहीं है इश -- एस में +89 दो प्राणियों का मिलते नहीं है प्राणी +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 प्राणी मिलते नहीं है इश -- एस में जहां +89 इश -- एस में प्राणी मिलते नहीं है दो प्राणियों का +89 वास्तव में मिलते नहीं है प्राणी दो प्राणियों का +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- डू में जहां मिलते नहीं है इश -- एस में +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +90 उस तल में ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 विकासशील देशों में में किसानों के +91 विकासशील देशों में में दूध विपणन के +91 किसानों के के दूध विपणन के +91 पुराने तरीके बदल रहे हैं विकासशील देशों में +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं विकासशील देशों में +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +91 तेजी से अपने ही पड़ोस में बदल रहे हैं पुराने तरीके +91 किसानों के विकासशील देशों में में दूध विपणन के +91 विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने शुरुआत एक दीवाना था से +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के प्रतिषेधात्मक उपचार में भी है +93 मक्खियों से है खाद्य एवं पेय पदार्थो को +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संदर्भित करता है राष्ट्रीयता को +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग है सीधी बस सेवा +95 सीधी बस सेवा है मुंबई से +95 सड़क मार्ग है सीधी बस सेवा मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध है यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका उदगम स्थान सिरमोर राज्य के +103 उदगम स्थान है ढलुवा भाग +103 सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +103 ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान है ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे का +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत में था प्राधान्य उन दिनों +104 दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 यहीं पर हुआ देहांत हो गया +108 सन 1533 में हुआ देहांत हो गया +108 47 वर्ष की था देहांत हो गया +108 अल्पायु में हुआ देहांत हो गया +108 रथयात्रा के था दिन +108 उनका था देहांत हो गया +108 अल्पायु में देहांत हो गया दिन उनका +108 यहीं पर हुआ देहांत हो गया सन 1533 में +108 यहीं पर हुआ देहांत हो गया अल्पायु में +108 सन 1533 में हुआ देहांत हो गया अल्पायु में +108 47 वर्ष की था देहांत हो गया उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप +110 एकाधिक अवसर पर जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 वे 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने जीता यूरोपियन कप एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का है भण्डार +112 वर्तमान रूप है भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 महाभारत का है भण्डार वर्तमान रूप +112 महाभारत का है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_PreFilter.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_PreFilter.txt new file mode 100644 index 0000000..8802e7b --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_PreFilter.txt @@ -0,0 +1,153 @@ +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +4 यह एजेंट मौजूद है बारह पुस्तकों +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +8 वे नियुक्त हुई न्यायाधीश +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +11 आंध्र ने पाया राज्य का दर्जा +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +19 सोनू बन चुके हैं एक प्रमुख हस्ती +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +24 यह स्थान दर्शनीय केन्द्र है आज भी +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 मैं करता हूं उपासना +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +32 सिलकोट , में गंगोलीहाट तहसील +32 सिलकोट , में भारत +32 सिलकोट , में उत्तराखण्ड राज्य +32 सिलकोट , में कुमाऊँ मण्डल +32 सिलकोट , में पिथोरागढ जिले +32 गंगोलीहाट तहसील सिलकोट , में भारत +32 गंगोलीहाट तहसील सिलकोट , में उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट , में कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट , में पिथोरागढ जिले +32 भारत सिलकोट , में उत्तराखण्ड राज्य +32 भारत सिलकोट , में कुमाऊँ मण्डल +32 भारत सिलकोट , में पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट , में कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट , में पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट , में पिथोरागढ जिले +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +45 वह संपर्क में है इस तकनीक के लिए +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने मराठी के अतिरिक्त +49 हिंदूओं मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +51 यह लगाया जाता है हर साल +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +58 अधिक संपर्क रहा है चीन +58 चीन से संपर्क रहा जापान +59 कश्यप ने पता लगाया शेष +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +69 सीवा नख़लिस्तान स्थित है जिसमें +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका एक कहानी संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 1900 के आसपास हुआ विकासों +87 प्रचार बहुत योगदान है पिता के समान +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत रिलीज़ किया गया जिसे +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +108 उनका देहांत हो गया दिन +108 उनका था देहांत हो गया +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 जिन्होंने जीता यूरोपियन कप +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_prepare_for_llm.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_prepare_for_llm.txt new file mode 100644 index 0000000..787f014 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_filtering_prepare_for_llm.txt @@ -0,0 +1,706 @@ +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत देखकर शक्तिरूपी माया +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों भेजे गए उपक्रमों +3 उपक्रमों property विभागों +3 विभागों property केन्द्रीय सरकार +3 भारत सरकार property केन्द्रीय सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों +3 भारत सरकार भेजे गए विवादित अंगुलि चिह्नों +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों +3 उपक्रमों भेजे गए विवादित अंगुलि चिह्नों +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए केन्द्रीय सरकार +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए भारत सरकार +3 उपक्रमों property विभागों केन्द्रीय सरकार +3 विभागों property केन्द्रीय सरकार भारत सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों भारत सरकार +3 उपक्रमों भेजे गए विवादित अंगुलि चिह्नों केन्द्रीय सरकार +3 उपक्रमों भेजे गए विवादित अंगुलि चिह्नों भारत सरकार +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम property 007 +4 बारह पुस्तकों property फ़्लेमिंग +4 दो लघुकथाओं property फ़्लेमिंग +4 007 प्रसिद्ध गुप्त नाम +4 यह एजेंट मौजूद फ़्लेमिंग +4 फ़्लेमिंग मौजूद बारह पुस्तकों +4 फ़्लेमिंग मौजूद दो लघुकथाओं +4 बारह पुस्तकों property फ़्लेमिंग दो लघुकथाओं +4 यह एजेंट मौजूद फ़्लेमिंग बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग दो लघुकथाओं +4 बारह पुस्तकों फ़्लेमिंग मौजूद दो लघुकथाओं +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 +6 नवीनतम वेतनमानों लागू किया गया है 01 अप्रैल 2009 +6 कंपनी लागू किया गया है नवीनतम वेतनमानों +6 01 अप्रैल 2009 लागू किया गया है कंपनी +6 नवीनतम वेतनमानों लागू किया गया है कंपनी +6 01 अप्रैल 2009 नवीनतम वेतनमानों लागू किया गया है कंपनी +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड +7 गोधरा ट्रेन कांड property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद +7 सुनवाई property गोधरा ट्रेन कांड 01 जून : +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई अहमदाबाद +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 हुआ नियुक्त हुई +8 वे नियुक्त हुई सर्वोच्च न्यायालय +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 नियुक्त हुई वे सर्वोच्च न्यायालय +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत is ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 जारी किया गया इम्पीरियल पोस्टल सर्विस +10 1 अक्टूबर 1854 हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस जारी किया गया 1 अक्टूबर 1854 +11 आंध्र ने पाया कर्नूल +11 दर्जा पाया 1 अक्टूबर 1953 +11 दर्जा property राज्य +11 आंध्र ने पाया राज्य का दर्जा +11 कर्नूल पाया राजधानी के साथ +11 आंध्र ने पाया 1 अक्टूबर 1953 +11 कर्नूल आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल राजधानी के साथ +11 कर्नूल आंध्र ने पाया 1 अक्टूबर 1953 +11 दर्जा पाया 1 अक्टूबर 1953 आंध्र ने +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 +12 ऑस्ट्रेलिया ज़ारी किया गया 1 अक्टूबर 2008 +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न न्यूजीलैंड +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 +14 शासन आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन +14 यह देश आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड के शासन +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड +14 शासन आजाद हुआ इंग्लैंड यह देश +14 इंग्लैंड के शासन यह देश आजाद हुआ इंग्लैंड +15 अंग्रेजों भेज दिया गया चन्द्रसिंह +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 हुआ भेज दिया गया +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह भेज दिया गया अंग्रेजों +15 अंग्रेजों भेज दिया गया चन्द्रसिंह फ्रांस +15 अंग्रेजों भेज दिया गया चन्द्रसिंह अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह +15 चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे दिखाई पड़ती थी कर्मा +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा के चेहरे +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब बन चुके हैं अब तक , +19 भारतीय संगीत जगत बन चुके हैं अब तक , +19 सोनू बन चुके हैं भारतीय संगीत जगत +19 एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत +19 तब बन चुके हैं अब तक , भारतीय संगीत जगत +19 अब तक , भारतीय संगीत जगत बन चुके हैं सोनू +21 सोवियत दस्तों ने आज़ाद कराया प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन +21 प्राग property राजधानी +21 राजधानी property चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 चेकोस्लोवाकिया राजधानी प्राग +21 प्राग सोवियत दस्तों ने आज़ाद कराया बर्लिन +21 प्राग सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन सोवियत दस्तों ने +21 प्राग property राजधानी चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग +22 वे प्रथम भारतीय हैं क्षेत्र +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति +22 योग में शिक्षा +22 शिक्षा क्षेत्र में योग +22 राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +22 वे is प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल +23 सभी बच्चों दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान is दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +25 वेदाङ्ग प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +25 इस सम्बन्ध पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में +27 ऋग्वेद मिलता है उल्लेख +27 हिमाचल प्रदेश बहने वाली पांच नदियों में +27 उल्लेख property चार +27 हिमाचल प्रदेश बहने वाली पांच नदियों +27 पांच नदियों में चार का उल्लेख +27 चार उल्लेख ऋग्वेद +27 पांच नदियों में उल्लेख मिलता है ऋग्वेद +27 पांच नदियों में हिमाचल प्रदेश बहने वाली पांच नदियों +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने +28 उन्होंने इंकार कर दिया बच्चे +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन property शिक्षा +29 शिक्षा जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन जुड़ा है शिक्षा +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों शिक्षा +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल +31 यह शहर is प्रमुख हिल स्टेशन +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत +32 पिथोरागढ जिले property कुमाऊँ मण्डल +32 सिलकोट is एक गाँव +32 सिलकोट में है गंगोलीहाट तहसील +32 सिलकोट में है भारत +32 सिलकोट में है उत्तराखण्ड राज्य +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत +32 एक गाँव property पिथोरागढ जिले कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है भारत +32 गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +32 भारत सिलकोट में है उत्तराखण्ड राज्य +32 भारत सिलकोट में है कुमाऊँ मण्डल +32 भारत सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले +33 तकनीकी केंद्र स्थानापन्न करना है तिरुवनंतपुरम +33 तकनीकी केंद्र property एयर लाइन +33 एयर लाइन तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 चीफ कोर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले सर लुइस शर्ट +34 चीफ कोर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले सर लुइस शर्ट +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह +35 28 नवम्बर 1694 हो गई मृत्यु +35 मृत्यु property बाशो +35 किसी बीमारी की वजह हो गई मृत्यु +35 बाशो हो गई मृत्यु +35 मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई बाशो +35 28 नवम्बर 1694 हो गई मृत्यु बाशो +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 मुकाबला हुआ फिर एक बार +37 शाही सेना मुकाबला हुआ फिर पंचायती सेना +37 सन 1696 हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल +38 एक गाँव property अदिलाबादु जिले +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत property भारत +38 मर्लगोंड , is एक गाँव +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 मर्लगोंड , का है भारत +38 एक गाँव property अदिलाबादु जिले आन्ध्रप्रदेश राज्य के अन्तर्गत +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत भारत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है भारत +38 अदिलाबादु जिले मर्लगोंड , का है भारत +39 अनेक ग्रन्थ लिखे गये बाद +39 दर्शन पक्ष लिखे गये व्याकरण +39 बाद लिखे गये व्याकरण +39 बाद लिखे गये दर्शन पक्ष +39 बाद लिखे गये अनेक ग्रन्थ +39 अनेक ग्रन्थ लिखे गये बाद व्याकरण +39 अनेक ग्रन्थ लिखे गये बाद दर्शन पक्ष +39 दर्शन पक्ष लिखे गये व्याकरण बाद +39 व्याकरण बाद लिखे गये दर्शन पक्ष +39 दर्शन पक्ष बाद लिखे गये अनेक ग्रन्थ +40 निदेशक बने 1975 +40 इलाहाबाद बने नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद +40 इलाहाबाद हुआ नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद नवनिर्मित मेहता अनुसंधान संस्थान +41 नाम property उनके +41 नाम property इस जगह +41 उनके रखा गया नाम +41 उनके नाम property इस जगह +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप property अमरीका +43 मार्च 2001 हुआ वापसी हुई फिर +43 अमरीका वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप +43 उनकी अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर अमरीका +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 +44 इसकी रचना आधारशिला रखी गयी थी 3 मार्च 1884 +44 सर वाईकर के आधारशिला रखी गयी थी इसकी रचना +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 इसकी रचना +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क property विभिन्न टेलीविजन कंपनियों +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों +45 विभिन्न टेलीविजन कंपनियों के लिए इस तकनीक +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था क्षेत्र +46 सन 1961 सम्मानित किया गया था पद्म भूषण +46 क्षेत्र property चिकित्सा विज्ञान +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 सन 1961 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप property काइटिन +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं काइटिन +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 संयुक्त राजशाही 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा द डार्क नाईट राइसेस +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 संयुक्त राजशाही द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 कनाडा द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी +51 यह लगाया जाता है जर्मनी +51 हर साल यह लगाया जाता है जर्मनी +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी यह +52 द्रौपदी ने वरमाला डाल दिया गले +52 गले property अर्जुन +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत राम नवमी के दौरान +53 पूरे उत्तर भारत राम नवमी के दौरान मनाया जाता है यह त्यौहार +53 राम नवमी के दौरान यह त्यौहार मनाया जाता है पूरे उत्तर भारत +54 व्यापक उपयोग उल्लेखनीय है भोजन +54 भोजन property तटीय कर्नाटक +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल +54 तटीय कर्नाटक में है भोजन +54 भोजन is समुद्री भोजन , +54 भोजन is नारियल +54 भोजन is नारियल तेल +54 समुद्री भोजन , is नारियल +54 समुद्री भोजन , is नारियल तेल +54 नारियल is नारियल तेल +54 व्यापक उपयोग is उल्लेखनीय +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल +54 नारियल व्यापक उपयोग property नारियल तेल +54 समुद्री भोजन , भोजन is नारियल +54 समुद्री भोजन , भोजन is नारियल तेल +54 नारियल भोजन is नारियल तेल +54 भोजन is नारियल तेल समुद्री भोजन , +54 भोजन is नारियल तेल नारियल +54 नारियल समुद्री भोजन , is भोजन +54 नारियल समुद्री भोजन , is नारियल तेल +54 नारियल तेल समुद्री भोजन , is भोजन +54 समुद्री भोजन , is नारियल तेल नारियल +54 नारियल तेल नारियल is समुद्री भोजन , +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां +56 तारों कहते हैं श्रेणी +56 श्रेणी property सिफियस चतुर्थ +56 सिफियस चतुर्थ श्रेणी के तारों +56 सिफीड कहते हैं सिफियस चतुर्थ +57 यह प्रसिद्ध है नाम +57 नाम property ' प्राथमिक विधि अध्यारोप ' +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान +58 अधिक संपर्क property इस देश +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों +60 खानों property अभ्रक आदि +60 अभ्रक आदि में खानों +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं उन्होंने उपन्यास +61 उन्होंने इस शैली लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास इस शैली +61 कहानियाँ इस शैली लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो is मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 पेश किया उन्होंने +63 वार्षिक बजट property सरकार +63 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 +63 उन्होंने 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह +64 व्यापार निर्भर रहती है चाय +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +64 लगभग पूरी तरह स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम +66 नाम property उत्कल मणि +66 उन्हें जाना जाता है उत्कल मणि +66 नाम उन्हें जाना जाता है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +67 कृपया देखें फ्रेंच फ्लेमिश अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश property इस नदी +68 इस नदी प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान इस नदी +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह हिस्सा है लीबियाई रेगिस्तान +69 लीबियाई रेगिस्तान हिस्सा है मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +69 जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत +70 राज्य राजधानी बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम +74 स्थित property अलबामा +74 स्थित property दक्षिण +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +74 अलबामा स्थित property दक्षिण +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर +75 होबार्ट शहर property ऑस्ट्रेलिया +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +75 होबार्ट शहर यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम is एक सरलीकृत सारांश +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि विभाजित किया है इंडोचायनीज़ +78 दृष्टि property विशेषता +78 दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +78 जंगलों विशेषता की दृष्टि +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों +78 इंडोचायनीज़ दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों दर्शाता है 5364 ईसा पूर्व +80 वर्षों property जन्म से पूर्व +80 जन्म से पूर्व property ईसा मसीह +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों property जन्म से पूर्व ईसा मसीह +81 विश्वामित्र पहनाती हैं जयमाल +81 सीता राम पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 सीता राम पहनाती हैं जयमाल +81 जयमाल विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं जयमाल सीता राम +81 स्वरघोष के मध्य सीता राम पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य +82 इस तथ्य पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पड़ा आखिर नाम +82 इस तथ्य पड़ा आखिर किस वर्ष +82 नाम property स्थान +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर किस वर्ष +82 नाम इस तथ्य पड़ा आखिर किस वर्ष +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम जारी किया गया 2006 के मध्य +84 एकलों के बीच जारी किया गया एल्बम +84 एल्बम जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम +84 2006 के मध्य एल्बम जारी किया गया एकलों के बीच +84 2006 के मध्य एल्बम जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम तीसरा कट +84 एल्बम जारी किया गया तीसरा कट 2006 के मध्य +85 उस दौर कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया +86 1900 के आसपास हुआ विकासों +86 बहुत से विकासों ने बेहतर कर दिया परिणामों +86 निमोनिया पीड़ित लोगों के लिये परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों प्रचार प्रसार +87 प्रचार बहुत योगदान है पिता के समान प्रसार +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह +88 मामले property उत्पन्न होने +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस +89 वास्तव मिलते नहीं है प्राणी +89 इश -- एस सामना होता है , इश -- डू +89 इश -- एस सामना होता है , दो प्राणियों +89 जहां मिलते नहीं है इश -- डू +89 जहां मिलते नहीं है इश -- एस +89 दो प्राणियों मिलते नहीं है प्राणी +89 इश -- एस प्राणी मिलते नहीं है वास्तव +89 प्राणी मिलते नहीं है इश -- एस जहां +89 इश -- एस प्राणी मिलते नहीं है दो प्राणियों +89 वास्तव मिलते नहीं है प्राणी दो प्राणियों +89 इश -- डू इश -- एस सामना होता है , दो प्राणियों +89 इश -- डू जहां मिलते नहीं है इश -- एस +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस बदल रहे हैं तेजी +91 पुराने तरीके property दूध विपणन +91 विकासशील देशों में किसानों +91 विकासशील देशों में दूध विपणन +91 किसानों के दूध विपणन +91 पुराने तरीके बदल रहे हैं विकासशील देशों +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं विकासशील देशों +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 तेजी अपने ही पड़ोस बदल रहे हैं पुराने तरीके +91 किसानों विकासशील देशों में दूध विपणन +91 विकासशील देशों पुराने तरीके बदल रहे हैं अपने ही पड़ोस +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +92 उन्होंने शुरुआत एक दीवाना था +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +93 बचाना is अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो बचाना मक्खियों +93 इस रोग प्रतिषेधात्मक उपचार में भी है +93 मक्खियों is खाद्य एवं पेय पदार्थो +93 खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +93 मक्खियों खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता +94 राष्ट्रीयता संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता property प्रतिस्पर्धी टीम +94 राष्ट्रीयता संदर्भित करता है , चालक +94 यह संदर्भित करता है राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता चालक +94 गाड़ी निर्माता राष्ट्रीयता संदर्भित करता है , चालक +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई +95 सड़क मार्ग is सीधी बस सेवा +95 सीधी बस सेवा is मुंबई +95 सड़क मार्ग is सीधी बस सेवा मुंबई +96 छपाई प्रयोग होता था , ब्लाकों +96 ब्लाकों जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई प्रयोग होता था लकड़ी के ब्लाकों +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग +98 यह स्थित है बलिया जिले +98 बलिया जिले property उत्तर प्रदेश +98 बलिया शहर स्थित है पश्चिम +98 यह स्थित है उत्तर प्रदेश के बलिया जिले +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 बलिया जिले यह स्थित है उत्तर प्रदेश के बलिया जिले +98 बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 उत्तर प्रदेश के बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध is यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे property सिरमोर राज्य +103 इसका उदगम स्थान सिरमोर राज्य +103 उदगम स्थान is ढलुवा भाग +103 सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे +103 ढलुवा भाग is अंतगर्त हिमालय पर्वत के नीचे +103 उदगम स्थान is ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे +104 दक्षिण भारत प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत था प्राधान्य उन दिनों +104 दक्षिण भारत था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय +105 किसी देश ये कहानियाँ हो सकती हैं समय +106 प्रकृति आधारित निर्माण प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण +107 2010 को ' ' दर्शन -- परिषद् ' ' सम्पन्न हुआ नाम +108 यहीं देहांत हो गया सन 1533 +108 अल्पायु देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु property 47 वर्ष +108 दिन property रथयात्रा +108 यहीं हुआ देहांत हो गया +108 सन 1533 हुआ देहांत हो गया +108 47 वर्ष था देहांत हो गया +108 अल्पायु हुआ देहांत हो गया +108 रथयात्रा था दिन +108 उनका था देहांत हो गया +108 अल्पायु देहांत हो गया दिन उनका +108 यहीं हुआ देहांत हो गया सन 1533 +108 यहीं हुआ देहांत हो गया अल्पायु +108 सन 1533 हुआ देहांत हो गया अल्पायु +108 47 वर्ष था देहांत हो गया उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 2008 बने तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप +110 एकाधिक अवसर जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 +110 वे 2008 बने तीसरे ब्रिटिश प्रबंधक +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने जीता यूरोपियन कप एकाधिक अवसर +111 मॉस जल रोक रखा जाता है मिट्टी +111 मॉस रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप property महाभारत +112 महाभारत is भण्डार +112 वर्तमान रूप is भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि is भण्डार +112 महाभारत is भण्डार वर्तमान रूप +112 महाभारत is भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप is भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt new file mode 100644 index 0000000..0a4edc2 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_prepare_for_llm.txt @@ -0,0 +1,712 @@ +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत सििद्ध होती है शक्तिरूपी माया +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों भेजे गए उपक्रमों +3 उपक्रमों property विभागों +3 विभागों property केन्द्रीय सरकार +3 भारत सरकार property केन्द्रीय सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों +3 भारत सरकार भेजे गए विवादित अंगुलि चिह्नों +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों +3 उपक्रमों भेजे गए विवादित अंगुलि चिह्नों +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए केन्द्रीय सरकार +3 उपक्रमों विवादित अंगुलि चिह्नों भेजे गए भारत सरकार +3 उपक्रमों property विभागों केन्द्रीय सरकार +3 विभागों property केन्द्रीय सरकार भारत सरकार +3 केन्द्रीय सरकार भेजे गए विवादित अंगुलि चिह्नों भारत सरकार +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम property 007 +4 बारह पुस्तकों property फ़्लेमिंग +4 दो लघुकथाओं property फ़्लेमिंग +4 007 प्रसिद्ध गुप्त नाम +4 यह एजेंट मौजूद फ़्लेमिंग +4 फ़्लेमिंग मौजूद बारह पुस्तकों +4 फ़्लेमिंग मौजूद दो लघुकथाओं +4 बारह पुस्तकों property फ़्लेमिंग दो लघुकथाओं +4 यह एजेंट मौजूद फ़्लेमिंग बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग दो लघुकथाओं +4 बारह पुस्तकों फ़्लेमिंग मौजूद दो लघुकथाओं +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 +6 नवीनतम वेतनमानों लागू किया गया है 01 अप्रैल 2009 +6 कंपनी लागू किया गया है नवीनतम वेतनमानों +6 01 अप्रैल 2009 लागू किया गया है कंपनी +6 01 अप्रैल 2009 नवीनतम वेतनमानों लागू किया गया है कंपनी +6 नवीनतम वेतनमानों कंपनी लागू किया गया है 01 अप्रैल 2009 +6 कंपनी 01 अप्रैल 2009 लागू किया गया है नवीनतम वेतनमानों +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड +7 गोधरा ट्रेन कांड property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद +7 सुनवाई property गोधरा ट्रेन कांड 01 जून : +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई अहमदाबाद +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 हुआ नियुक्त हुई +8 वे नियुक्त हुई सर्वोच्च न्यायालय +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 नियुक्त हुई वे सर्वोच्च न्यायालय +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत property ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 जारी किया गया इम्पीरियल पोस्टल सर्विस +10 1 अक्टूबर 1854 हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस जारी किया गया 1 अक्टूबर 1854 +11 आंध्र ने पाया कर्नूल +11 दर्जा पाया 1 अक्टूबर 1953 +11 दर्जा property राज्य +11 आंध्र ने पाया राज्य का दर्जा +11 कर्नूल पाया राजधानी के साथ +11 आंध्र ने पाया 1 अक्टूबर 1953 +11 कर्नूल आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल राजधानी के साथ +11 कर्नूल आंध्र ने पाया 1 अक्टूबर 1953 +11 दर्जा पाया 1 अक्टूबर 1953 आंध्र ने +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 +12 ऑस्ट्रेलिया ज़ारी किया गया 1 अक्टूबर 2008 +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 ऑस्ट्रेलिया +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न न्यूजीलैंड +12 1 अक्टूबर 2008 जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 +14 शासन आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन +14 यह देश आजाद हुआ इंग्लैंड +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड के शासन +14 1 अक्टूबर , 1960 यह देश आजाद हुआ इंग्लैंड +14 शासन आजाद हुआ इंग्लैंड यह देश +14 इंग्लैंड के शासन यह देश आजाद हुआ इंग्लैंड +15 अंग्रेजों भेज दिया गया चन्द्रसिंह +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 हुआ भेज दिया गया +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह भेज दिया गया अंग्रेजों +15 अंग्रेजों भेज दिया गया चन्द्रसिंह फ्रांस +15 अंग्रेजों भेज दिया गया चन्द्रसिंह अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह +16 इसे घोषित किया गया 1 अप्रैल 1946 +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे दिखाई पड़ती थी कर्मा +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा +18 चेहरे दिखाई पड़ती थी कर्मा बाल्यकाल से ही +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब बन चुके हैं अब तक , +19 भारतीय संगीत जगत बन चुके हैं अब तक , +19 सोनू बन चुके हैं भारतीय संगीत जगत +19 एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत +19 तब बन चुके हैं अब तक , भारतीय संगीत जगत +19 अब तक , भारतीय संगीत जगत बन चुके हैं सोनू +21 सोवियत दस्तों ने आज़ाद कराया प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन +21 प्राग property राजधानी +21 राजधानी property चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 चेकोस्लोवाकिया राजधानी प्राग +21 प्राग सोवियत दस्तों ने आज़ाद कराया बर्लिन +21 प्राग सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन सोवियत दस्तों ने +21 प्राग property राजधानी चेकोस्लोवाकिया +21 बर्लिन आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग +22 वे प्रथम भारतीय हैं क्षेत्र +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति +22 योग में शिक्षा +22 शिक्षा क्षेत्र में योग +22 राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +22 वे property प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल +23 सभी बच्चों दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान property दर्शनीय केन्द्र +24 लोगों के लिए दर्शनीय केन्द्र property यह स्थान +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +25 वेदाङ्ग प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +25 इस सम्बन्ध पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग +25 वेदाङ्ग पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में +27 ऋग्वेद मिलता है उल्लेख +27 हिमाचल प्रदेश बहने वाली पांच नदियों में +27 उल्लेख property चार +27 हिमाचल प्रदेश बहने वाली पांच नदियों +27 पांच नदियों में चार का उल्लेख +27 चार उल्लेख ऋग्वेद +27 पांच नदियों में उल्लेख मिलता है ऋग्वेद +27 पांच नदियों में हिमाचल प्रदेश बहने वाली पांच नदियों +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने +28 उन्होंने इंकार कर दिया बच्चे +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन property शिक्षा +29 शिक्षा जुड़ा है सभी सामाजिक विज्ञानों +29 तुलनात्मक अध्ययन जुड़ा है शिक्षा +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों शिक्षा +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल +31 यह शहर property प्रमुख हिल स्टेशन +31 पश्चिम बंगाल प्रमुख हिल स्टेशन property यह शहर +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत +32 पिथोरागढ जिले property कुमाऊँ मण्डल +32 सिलकोट property एक गाँव +32 सिलकोट में है गंगोलीहाट तहसील +32 सिलकोट में है भारत +32 सिलकोट में है उत्तराखण्ड राज्य +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property सिलकोट +32 एक गाँव property पिथोरागढ जिले कुमाऊँ मण्डल +32 पिथोरागढ जिले एक गाँव property सिलकोट +32 गंगोलीहाट तहसील सिलकोट में है भारत +32 गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +32 भारत सिलकोट में है उत्तराखण्ड राज्य +32 भारत सिलकोट में है कुमाऊँ मण्डल +32 भारत सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले +33 तकनीकी केंद्र स्थानापन्न करना है तिरुवनंतपुरम +33 तकनीकी केंद्र property एयर लाइन +33 एयर लाइन तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 चीफ कोर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +34 चीफ कोर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह +35 28 नवम्बर 1694 हो गई मृत्यु +35 मृत्यु property बाशो +35 किसी बीमारी की वजह हो गई मृत्यु +35 बाशो हो गई मृत्यु +35 मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई 28 नवम्बर 1694 +35 किसी बीमारी की वजह मृत्यु हो गई बाशो +35 28 नवम्बर 1694 हो गई मृत्यु बाशो +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 मुकाबला हुआ फिर एक बार +37 शाही सेना मुकाबला हुआ फिर पंचायती सेना +37 सन 1696 हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल +38 एक गाँव property अदिलाबादु जिले +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत property भारत +38 मर्लगोंड , property एक गाँव +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 मर्लगोंड , का है भारत +38 एक गाँव property अदिलाबादु जिले आन्ध्रप्रदेश राज्य के अन्तर्गत +38 अदिलाबादु जिले एक गाँव property मर्लगोंड , +38 अदिलाबादु जिले property आन्ध्रप्रदेश राज्य के अन्तर्गत भारत +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है भारत +38 अदिलाबादु जिले मर्लगोंड , का है भारत +39 अनेक ग्रन्थ लिखे गये बाद +39 दर्शन पक्ष लिखे गये व्याकरण +39 बाद लिखे गये व्याकरण +39 बाद लिखे गये दर्शन पक्ष +39 बाद लिखे गये अनेक ग्रन्थ +39 अनेक ग्रन्थ लिखे गये बाद व्याकरण +39 अनेक ग्रन्थ लिखे गये बाद दर्शन पक्ष +39 दर्शन पक्ष लिखे गये व्याकरण बाद +40 निदेशक बने 1975 +40 इलाहाबाद बने नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद +40 इलाहाबाद हुआ नवनिर्मित मेहता अनुसंधान संस्थान +40 1975 हुआ इलाहाबाद नवनिर्मित मेहता अनुसंधान संस्थान +41 नाम property उनके +41 नाम property इस जगह +41 उनके रखा गया नाम +41 उनके नाम property इस जगह +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप property अमरीका +43 मार्च 2001 हुआ वापसी हुई फिर +43 अमरीका वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप +43 उनकी अट्ठाइसवें रक्षा सचिव के रूप वापसी हुई फिर अमरीका +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 +44 इसकी रचना आधारशिला रखी गयी थी 3 मार्च 1884 +44 सर वाईकर के आधारशिला रखी गयी थी इसकी रचना +44 सर वाईकर के आधारशिला रखी गयी थी 3 मार्च 1884 इसकी रचना +44 3 मार्च 1884 इसकी रचना आधारशिला रखी गयी थी सर वाईकर के +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क property विभिन्न टेलीविजन कंपनियों +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों +45 विभिन्न टेलीविजन कंपनियों के लिए इस तकनीक +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था क्षेत्र +46 सन 1961 सम्मानित किया गया था पद्म भूषण +46 क्षेत्र property चिकित्सा विज्ञान +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया सन 1961 +46 चिकित्सा विज्ञान के क्षेत्र त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +46 सन 1961 त्रिदेवनाथ बैनर्जी सम्मानित किया गया पद्म भूषण +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप property काइटिन +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं +48 औद्योगिक रूप उपयोग किया जाता है अनेक प्रक्रियाओं काइटिन +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 संयुक्त राजशाही 20 जुलाई 2012 रिलीज़ किया गया कनाडा +50 20 जुलाई 2012 रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस +50 20 जुलाई 2012 रिलीज़ किया गया कनाडा द डार्क नाईट राइसेस +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 अमेरिका द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 +50 संयुक्त राजशाही द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 20 जुलाई 2012 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी +51 यह लगाया जाता है जर्मनी +51 हर साल यह लगाया जाता है जर्मनी +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी यह +52 द्रौपदी ने वरमाला डाल दिया गले +52 गले property अर्जुन +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन +54 भोजन property तटीय कर्नाटक +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल +54 तटीय कर्नाटक में है भोजन +54 भोजन property समुद्री भोजन , +54 भोजन property नारियल +54 भोजन property नारियल तेल +54 समुद्री भोजन , property नारियल +54 समुद्री भोजन , property नारियल तेल +54 नारियल property नारियल तेल +54 व्यापक उपयोग property उल्लेखनीय +54 तटीय कर्नाटक भोजन property समुद्री भोजन , +54 तटीय कर्नाटक भोजन property नारियल +54 तटीय कर्नाटक भोजन property नारियल तेल +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल +54 व्यापक उपयोग property समुद्री भोजन , भोजन +54 समुद्री भोजन , व्यापक उपयोग property उल्लेखनीय +54 नारियल व्यापक उपयोग property नारियल तेल +54 व्यापक उपयोग property नारियल भोजन +54 नारियल व्यापक उपयोग property उल्लेखनीय +54 व्यापक उपयोग property नारियल तेल भोजन +54 नारियल तेल व्यापक उपयोग property उल्लेखनीय +54 समुद्री भोजन , भोजन property नारियल +54 समुद्री भोजन , भोजन property नारियल तेल +54 नारियल भोजन property नारियल तेल +54 नारियल समुद्री भोजन , property नारियल तेल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां +56 तारों कहते हैं श्रेणी +56 श्रेणी property सिफियस चतुर्थ +56 सिफियस चतुर्थ श्रेणी के तारों +56 सिफीड कहते हैं सिफियस चतुर्थ +57 यह प्रसिद्ध है नाम +57 नाम property ' प्राथमिक विधि अध्यारोप ' +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान +58 अधिक संपर्क property इस देश +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों +60 खानों property अभ्रक आदि +60 अभ्रक आदि में खानों +60 खानों प्रयुक्त होती है मोमबत्तियाँ भी +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं कहानियाँ +61 इस शैली लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली लिखे हैं उन्होंने उपन्यास +61 कहानियाँ इस शैली लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो property मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 पेश किया उन्होंने +63 वार्षिक बजट property सरकार +63 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 +63 उन्होंने 6 जुलाई 2009 पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह +64 व्यापार निर्भर रहती है चाय +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार +64 लगभग पूरी तरह स्थानीय आबादी निर्भर रहती है चाय के व्यापार +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम +66 नाम property उत्कल मणि +66 उन्हें जाना जाता है उत्कल मणि +66 नाम उन्हें जाना जाता है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +67 कृपया देखें फ्रेंच फ्लेमिश अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश property इस नदी +68 इस नदी प्रवाहित होता है पाकिस्तान +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान इस नदी +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह हिस्सा है लीबियाई रेगिस्तान +69 लीबियाई रेगिस्तान हिस्सा है मत्रूह मुहाफ़ज़ाह +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +69 जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत +70 राज्य राजधानी बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 दो निबंध संग्रह उनका प्रकाशित हुए हैं एक कहानी संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम +74 स्थित property अलबामा +74 स्थित property दक्षिण +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +74 अलबामा स्थित property दक्षिण +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर +75 होबार्ट शहर property ऑस्ट्रेलिया +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +75 होबार्ट शहर यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया +76 निम्नलिखित सूचना नियम एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम property एक सरलीकृत सारांश +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि विभाजित किया है इंडोचायनीज़ +78 दृष्टि property विशेषता +78 दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +78 जंगलों विशेषता की दृष्टि +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों +78 इंडोचायनीज़ दृष्टि विभाजित किया है इंडोमलायन उपक्षेत्रों +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों दर्शाता है 5364 ईसा पूर्व +80 वर्षों property जन्म से पूर्व +80 जन्म से पूर्व property ईसा मसीह +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों property जन्म से पूर्व ईसा मसीह +81 विश्वामित्र पहनाती हैं जयमाल +81 सीता राम पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 सीता राम पहनाती हैं जयमाल +81 जयमाल विश्वामित्र पहनाती हैं वैदिक मन्त्रों +81 विश्वामित्र पहनाती हैं जयमाल सीता राम +81 स्वरघोष के मध्य सीता राम पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य +82 इस तथ्य पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पड़ा आखिर नाम +82 इस तथ्य पड़ा आखिर किस वर्ष +82 नाम property स्थान +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पड़ा आखिर किस वर्ष +82 नाम इस तथ्य पड़ा आखिर किस वर्ष +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम जारी किया गया 2006 के मध्य +84 एकलों के बीच जारी किया गया एल्बम +84 एल्बम जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम +84 2006 के मध्य एल्बम जारी किया गया एकलों के बीच +84 2006 के मध्य एल्बम जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम तीसरा कट +84 एल्बम जारी किया गया तीसरा कट 2006 के मध्य +85 उस दौर कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया +86 1900 के आसपास हुआ विकासों +86 बहुत से विकासों ने बेहतर कर दिया परिणामों +86 निमोनिया पीड़ित लोगों के लिये परिणामों +86 1900 के आसपास बेहतर कर दिया था निमोनिया पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों प्रचार प्रसार +87 प्रचार बहुत योगदान है पिता के समान प्रसार +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह +88 मामले property उत्पन्न होने +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस +89 वास्तव मिलते नहीं है प्राणी +89 इश -- एस सामना होता है , इश -- डू +89 इश -- एस सामना होता है , दो प्राणियों +89 जहां मिलते नहीं है इश -- डू +89 जहां मिलते नहीं है इश -- एस +89 दो प्राणियों मिलते नहीं है प्राणी +89 इश -- एस प्राणी मिलते नहीं है वास्तव +89 प्राणी मिलते नहीं है इश -- एस जहां +89 इश -- एस प्राणी मिलते नहीं है दो प्राणियों +89 वास्तव मिलते नहीं है प्राणी दो प्राणियों +89 इश -- डू इश -- एस सामना होता है , दो प्राणियों +89 इश -- डू जहां मिलते नहीं है इश -- एस +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस बदल रहे हैं तेजी +91 पुराने तरीके property दूध विपणन +91 विकासशील देशों में किसानों +91 विकासशील देशों में दूध विपणन +91 किसानों के दूध विपणन +91 पुराने तरीके बदल रहे हैं विकासशील देशों +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं विकासशील देशों +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं अपने ही पड़ोस +91 तेजी अपने ही पड़ोस बदल रहे हैं पुराने तरीके +91 किसानों विकासशील देशों में दूध विपणन +91 विकासशील देशों पुराने तरीके बदल रहे हैं अपने ही पड़ोस +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +92 उन्होंने शुरुआत एक दीवाना था +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 +93 बचाना property अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो बचाना मक्खियों +93 इस रोग प्रतिषेधात्मक उपचार में भी है +93 मक्खियों property खाद्य एवं पेय पदार्थो +93 खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +93 मक्खियों खाद्य एवं पेय पदार्थो बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता +94 राष्ट्रीयता संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता property प्रतिस्पर्धी टीम +94 राष्ट्रीयता संदर्भित करता है , चालक +94 यह संदर्भित करता है राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता चालक +94 गाड़ी निर्माता राष्ट्रीयता संदर्भित करता है , चालक +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई +95 सड़क मार्ग property सीधी बस सेवा +95 मुंबई सीधी बस सेवा property सड़क मार्ग +96 छपाई प्रयोग होता था , ब्लाकों +96 ब्लाकों जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई प्रयोग होता था लकड़ी के ब्लाकों +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग +98 यह स्थित है बलिया जिले +98 बलिया जिले property उत्तर प्रदेश +98 बलिया शहर स्थित है पश्चिम +98 यह स्थित है उत्तर प्रदेश के बलिया जिले +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 बलिया जिले यह स्थित है उत्तर प्रदेश के बलिया जिले +98 बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +98 उत्तर प्रदेश के बलिया जिले यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति +100 हवाओं प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध property यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे property सिरमोर राज्य +103 इसका उदगम स्थान सिरमोर राज्य +103 उदगम स्थान property ढलुवा भाग +103 सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे +103 ढलुवा भाग property अंतगर्त हिमालय पर्वत के नीचे +103 इसका उदगम स्थान property ढलुवा भाग +103 सिरमोर राज्य अंतगर्त हिमालय पर्वत के नीचे property ढलुवा भाग +103 उदगम स्थान property ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे +104 दक्षिण भारत प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत था प्राधान्य उन दिनों +104 दक्षिण भारत था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय +105 किसी देश ये कहानियाँ हो सकती हैं समय +106 प्रकृति आधारित निर्माण प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण +107 2010 को ' ' दर्शन -- परिषद् ' ' सम्पन्न हुआ नाम +108 यहीं देहांत हो गया सन 1533 +108 अल्पायु देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु property 47 वर्ष +108 दिन property रथयात्रा +108 यहीं हुआ देहांत हो गया +108 सन 1533 हुआ देहांत हो गया +108 47 वर्ष था देहांत हो गया +108 अल्पायु हुआ देहांत हो गया +108 रथयात्रा था दिन +108 उनका था देहांत हो गया +108 अल्पायु देहांत हो गया दिन उनका +108 यहीं हुआ देहांत हो गया सन 1533 +108 यहीं हुआ देहांत हो गया अल्पायु +108 सन 1533 हुआ देहांत हो गया अल्पायु +108 47 वर्ष था देहांत हो गया उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 2008 बने तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप +110 एकाधिक अवसर जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर +110 जिन्होंने जीता यूरोपियन कप तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप एकाधिक अवसर +111 मॉस जल रोक रखा जाता है मिट्टी +111 मॉस रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप property महाभारत +112 महाभारत property भण्डार +112 वर्तमान रूप property भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि property भण्डार +112 वर्तमान रूप property महाभारत भण्डार +112 महाभारत property भण्डार वर्तमान रूप +112 महाभारत property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि +112 वर्तमान रूप property भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated.txt new file mode 100644 index 0000000..0b5d704 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated.txt @@ -0,0 +1,695 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को सििद्ध होती है शक्तिरूपी माया की +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का +3 भारत सरकार के भेजे गए विवादित अंगुलि चिह्नों का +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +3 केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के प्रसिद्ध गुप्त नाम से +4 यह एजेंट मौजूद फ़्लेमिंग की +4 फ़्लेमिंग की मौजूद बारह पुस्तकों +4 फ़्लेमिंग की मौजूद दो लघुकथाओं में +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +4 यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +4 बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से लागू किया गया है कंपनी में +6 नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 गोधरा ट्रेन कांड की शुरू हुई सुनवाई +7 सुनवाई शुरू हुई अहमदाबाद के +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड की +7 साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +7 गोधरा ट्रेन कांड की शुरू हुई सुनवाई अहमदाबाद के +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को हुआ नियुक्त हुई +8 वे नियुक्त हुई सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय की +8 06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय की +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत थे ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र ने पाया राज्य का दर्जा +11 कर्नूल को पाया राजधानी के साथ +11 आंध्र ने पाया 1 अक्टूबर 1953 को +11 कर्नूल को आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल को राजधानी के साथ +11 कर्नूल को आंध्र ने पाया 1 अक्टूबर 1953 को +11 दर्जा पाया 1 अक्टूबर 1953 को आंध्र ने +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न +12 ऑस्ट्रेलिया में जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न न्यूजीलैंड +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +12 न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 यह देश आजाद हुआ इंग्लैंड से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड से +14 इंग्लैंड के शासन से यह देश आजाद हुआ इंग्लैंड से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में हुआ भेज दिया गया +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू बन चुके हैं भारतीय संगीत जगत में +19 एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत में +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +19 अब तक , भारतीय संगीत जगत में बन चुके हैं सोनू +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 बर्लिन पर आज़ाद कराया सोवियत दस्तों ने +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 चेकोस्लोवाकिया की राजधानी प्राग को +21 प्राग को सोवियत दस्तों ने आज़ाद कराया बर्लिन पर +21 प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर सोवियत दस्तों ने +21 प्राग को property राजधानी चेकोस्लोवाकिया की +21 बर्लिन पर आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग में शिक्षा के +22 शिक्षा के क्षेत्र में योग +22 राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान +22 वे है प्रथम भारतीय +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान है दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में बहने वाली पांच नदियों +27 पांच नदियों में से चार का +27 चार का उल्लेख ऋग्वेद में +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +27 पांच नदियों में से हिमाचल प्रदेश में बहने वाली पांच नदियों +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने इंकार कर दिया बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन जुड़ा है शिक्षा का +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर है प्रमुख हिल स्टेशन +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट , है एक गाँव +32 सिलकोट , में गंगोलीहाट तहसील +32 सिलकोट , में भारत +32 सिलकोट , में उत्तराखण्ड राज्य +32 सिलकोट , में कुमाऊँ मण्डल +32 सिलकोट , में पिथोरागढ जिले +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 गंगोलीहाट तहसील सिलकोट , में भारत +32 गंगोलीहाट तहसील सिलकोट , में उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट , में कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट , में पिथोरागढ जिले +32 भारत सिलकोट , में उत्तराखण्ड राज्य +32 भारत सिलकोट , में कुमाऊँ मण्डल +32 भारत सिलकोट , में पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट , में कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट , में पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट , में पिथोरागढ जिले +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश +34 सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +34 चीफ कोर्ट के पेश हुए दोनों मामले मुख्य न्यायाधीश +34 चीफ कोर्ट के पेश हुए दोनों मामले सर लुइस शर्ट +34 चीफ कोर्ट के पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +34 सर लुइस शर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से हो गई मृत्यु +35 बाशो की हो गई मृत्यु +35 मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई बाशो की +35 28 नवम्बर 1694 को हो गई मृत्यु बाशो की +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड , है एक गाँव +38 मर्लगोंड , में कुभीर मण्डल +38 मर्लगोंड , का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड , का है अदिलाबादु जिले +38 मर्लगोंड , का है भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड , का है भारत के +38 अदिलाबादु जिले मर्लगोंड , का है भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 बाद में लिखे गये व्याकरण के +39 बाद में लिखे गये दर्शन पक्ष पर +39 बाद में लिखे गये अनेक ग्रन्थ +39 अनेक ग्रन्थ लिखे गये बाद में व्याकरण के +39 अनेक ग्रन्थ लिखे गये बाद में दर्शन पक्ष पर +39 दर्शन पक्ष पर लिखे गये व्याकरण के बाद में +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में +40 इलाहाबाद में हुआ नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 उनके रखा गया नाम पर +41 नाम रखा गया नाम पर उनके +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में हुआ वापसी हुई फिर +43 अमरीका के वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप में +43 उनकी अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी इसकी रचना की +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से के लिए इस तकनीक +45 इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया सन 1961 में +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +46 सन 1961 में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने मराठी के अतिरिक्त +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों के मनाए जाते हैं पर्व +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह लगाया जाता है जर्मनी के +51 हर साल यह लगाया जाता है जर्मनी के +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में है भोजन +54 भोजन में है समुद्री भोजन , +54 भोजन में है नारियल +54 भोजन में है नारियल तेल का +54 समुद्री भोजन , है नारियल +54 समुद्री भोजन , है नारियल तेल का +54 नारियल है नारियल तेल का +54 व्यापक उपयोग है उल्लेखनीय +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , भोजन में है नारियल +54 समुद्री भोजन , भोजन में है नारियल तेल का +54 नारियल भोजन में है नारियल तेल का +54 भोजन में है नारियल समुद्री भोजन , +54 नारियल समुद्री भोजन , है भोजन में +54 नारियल समुद्री भोजन , है नारियल तेल का +54 नारियल तेल का नारियल है भोजन में +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों को +56 सिफीड कहते हैं सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 खानों में में मोमबत्तियाँ +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +61 कहानियाँ इस शैली में लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +63 उन्होंने 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें जाना जाता है उत्कल मणि के +66 नाम से उन्हें जाना जाता है उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +67 कृपया देखें फ्रेंच फ्लेमिश को अधिक जानकारी के लिए +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +69 लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का +69 जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +76 एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +81 सीता राम को पहनाती हैं जयमाल +81 जयमाल विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +81 स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एकलों के बीच जारी किया गया एल्बम से +84 एल्बम से जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम से +84 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +84 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम से तीसरा कट +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उन्हें करना पड़ी सब कामचलाऊ व्यवस्था +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास हुआ विकासों +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को +86 निमोनिया से पीड़ित लोगों के लिये परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार प्रसार में +87 सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों के +87 सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों के +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां मिलते नहीं है इश -- डू में +89 जहां मिलते नहीं है इश -- एस में +89 दो प्राणियों का मिलते नहीं है प्राणी +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 प्राणी मिलते नहीं है इश -- एस में जहां +89 इश -- एस में प्राणी मिलते नहीं है दो प्राणियों का +89 वास्तव में मिलते नहीं है प्राणी दो प्राणियों का +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- डू में जहां मिलते नहीं है इश -- एस में +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 विकासशील देशों में में किसानों के +91 विकासशील देशों में में दूध विपणन के +91 किसानों के के दूध विपणन के +91 पुराने तरीके बदल रहे हैं विकासशील देशों में +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं विकासशील देशों में +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +91 तेजी से अपने ही पड़ोस में बदल रहे हैं पुराने तरीके +91 किसानों के विकासशील देशों में में दूध विपणन के +91 विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने शुरुआत एक दीवाना था से +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के प्रतिषेधात्मक उपचार में भी है +93 मक्खियों से है खाद्य एवं पेय पदार्थो को +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संदर्भित करता है राष्ट्रीयता को +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग है सीधी बस सेवा +95 सीधी बस सेवा है मुंबई से +95 सड़क मार्ग है सीधी बस सेवा मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +96 शिल्पी -- सुथार निर्माण करते थे जिसका +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध है यही कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका उदगम स्थान सिरमोर राज्य के +103 उदगम स्थान है ढलुवा भाग +103 सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +103 ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान है ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे का +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत में था प्राधान्य उन दिनों +104 दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 यहीं पर हुआ देहांत हो गया +108 सन 1533 में हुआ देहांत हो गया +108 47 वर्ष की था देहांत हो गया +108 अल्पायु में हुआ देहांत हो गया +108 रथयात्रा के था दिन +108 उनका था देहांत हो गया +108 अल्पायु में देहांत हो गया दिन उनका +108 यहीं पर हुआ देहांत हो गया सन 1533 में +108 यहीं पर हुआ देहांत हो गया अल्पायु में +108 सन 1533 में हुआ देहांत हो गया अल्पायु में +108 47 वर्ष की था देहांत हो गया उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 जिन्होंने जीता यूरोपियन कप +110 एकाधिक अवसर पर जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने जीता यूरोपियन कप एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से रोक रखा जाता है जल +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का है भण्डार +112 वर्तमान रूप है भण्डार +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 महाभारत का है भण्डार वर्तमान रूप +112 महाभारत का है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated_filtering_2.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated_filtering_2.txt new file mode 100644 index 0000000..77dfce9 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated_filtering_2.txt @@ -0,0 +1,268 @@ +1 शक्तिरूपी माया सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 विवादित अंगुलि चिह्नों का भेजे गए विभागों +3 विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +3 विभागों परीक्षण करना विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए विभागों +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +3 विभागों विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 007 के प्रसिद्ध गुप्त नाम से +4 यह एजेंट मौजूद फ़्लेमिंग की +5 उन्होंने शुरू की पत्रिका +6 01 अप्रैल 2009 से लागू किया गया है नवीनतम वेतनमानों को +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 गोधरा ट्रेन कांड शुरू हुई सुनवाई साबरमती केंद्रीय जेल के अंदर +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत थे ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +11 आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया 1 अक्टूबर 1953 को +11 राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न +12 दूसरा सीज़न जारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 यह देश आजाद हुआ इंग्लैंड से +14 इंग्लैंड के शासन से यह देश आजाद हुआ इंग्लैंड से +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +18 कर्मा दिखाई पड़ती थी एक अनूठी आभा +18 कर्मा दिखाई पड़ती थी चेहरे पर +18 एक अनूठी आभा कर्मा दिखाई पड़ती थी चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को राजधानी चेकोस्लोवाकिया की +22 वे है प्रथम भारतीय +22 योग में शिक्षा के +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +24 यह स्थान दर्शनीय केन्द्र है आज भी +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 पांच नदियों में से चार +27 उल्लेख मिलता है पांच नदियों में से +28 उन्होंने इंकार कर दिया बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +32 सिलकोट है एक गाँव +32 सिलकोट में है गंगोलीहाट तहसील +32 सिलकोट में है उत्तराखण्ड राज्य +32 सिलकोट में है कुमाऊँ मण्डल +32 सिलकोट में है पिथोरागढ जिले +32 गंगोलीहाट तहसील सिलकोट में है उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील सिलकोट में है कुमाऊँ मण्डल +32 गंगोलीहाट तहसील सिलकोट में है पिथोरागढ जिले +32 उत्तराखण्ड राज्य सिलकोट में है कुमाऊँ मण्डल +32 उत्तराखण्ड राज्य सिलकोट में है पिथोरागढ जिले +32 कुमाऊँ मण्डल सिलकोट में है पिथोरागढ जिले +33 एयर लाइन के स्थानापन्न करना है तकनीकी केंद्र को +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 एयर लाइन के स्थानापन्न करना है तकनीकी केंद्र को तिरुवनंतपुरम में +34 सर लुइस शर्ट पेश हुए दोनों मामले +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +34 मुख्य न्यायाधीश पेश हुए दोनों मामले +34 सर लुइस शर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले मुख्य न्यायाधीश +35 बाशो हो गई मृत्यु +35 28 नवम्बर 1694 को हो गई मृत्यु +35 किसी बीमारी की वजह से हो गई मृत्यु +35 बाशो हो गई मृत्यु 28 नवम्बर 1694 को +35 बाशो हो गई मृत्यु किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु किसी बीमारी की वजह से +36 विक्रम ने सोचा एक हल +37 सन 1696 में हुआ मुकाबला +38 मर्लगोंड एक गाँव है कुभीर मण्डल में +38 मर्लगोंड है एक गाँव +38 मर्लगोंड में कुभीर मण्डल +38 मर्लगोंड का है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड का है अदिलाबादु जिले +38 मर्लगोंड का है भारत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है अदिलाबादु जिले +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है भारत के +38 अदिलाबादु जिले मर्लगोंड का है भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 अनेक ग्रन्थ लिखे गये दर्शन पक्ष पर +39 अनेक ग्रन्थ लिखे गये व्याकरण के +39 बाद में अनेक ग्रन्थ लिखे गये दर्शन पक्ष पर +39 बाद में अनेक ग्रन्थ लिखे गये व्याकरण के +39 दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये व्याकरण के +40 निदेशक बने 1975 में +41 उनके नाम पर रखा गया इस जगह का नाम +42 कुछ लोग पसंद करते हैं रहना +43 अमरीका के वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप में +44 सर वाईकर आधारशिला रखी गयी थी 3 मार्च 1884 को +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था पद्म भूषण से +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी उन्होने संगीत रचना की मराठी के अतिरिक्त +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +49 हिंदूओं मनाए जाते हैं पर्व +49 मुस्लिमों के मनाए जाते हैं पर्व +49 हिंदूओं मनाए जाते हैं पर्व मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका 20 जुलाई 2012 को +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में 20 जुलाई 2012 को +51 यह लगाया जाता है हर साल +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +54 तटीय कर्नाटक के में है भोजन +54 भोजन में है समुद्री भोजन , +54 भोजन में है नारियल +54 भोजन में है नारियल तेल का +54 व्यापक उपयोग है उल्लेखनीय +54 समुद्री भोजन , भोजन में है नारियल +54 समुद्री भोजन , भोजन में है नारियल तेल का +54 नारियल भोजन में है नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +56 सिफियस चतुर्थ की कहते हैं सिफीड +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 चीन से संपर्क रहा इस देश का +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी +60 अभ्रक आदि की प्रयुक्त होती है खानों में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 अभ्रक आदि की प्रयुक्त होती है खानों में मोमबत्तियाँ भी +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है मुख्य न्यायाधीश +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है उत्कल मणि के +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +68 इस नदी का प्रवाहित होता है पाकिस्तान में +69 मत्रूह मुहाफ़ज़ाह का हिस्सा है , लीबियाई रेगिस्तान का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान ( ओएसिस ) property +70 राज्य राजधानी है बंगलुरु शहर +70 बंगलुरु शहर है भारत में अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +74 अलबामा पश्चिम में स्थित है इसके +74 फ्लोरिडा राज्य दक्षिण में स्थित है इसके +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं जयमाल +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एल्बम से जारी किया गया तीसरा कट +85 उनके सामने नहीं थे कोई और मानक +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 1900 के आसपास हुआ विकासों +87 सांप्रदायिक सिद्धांतों प्रचार प्रसार में +87 सांप्रदायिक सिद्धांतों प्रचार सांप्रदायिक सिद्धांतों के +87 सांप्रदायिक सिद्धांतों प्रसार सांप्रदायिक सिद्धांतों के +87 प्रसार में सांप्रदायिक सिद्धांतों प्रचार सांप्रदायिक सिद्धांतों के +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 दो प्राणियों का मिलते नहीं है प्राणी +89 इश -- एस में प्राणी मिलते नहीं है दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में +91 पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +91 विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +92 उन्होंने शुरुआत एक दीवाना था से +92 उन्होंने रिलीज़ किया गया 17 फ़रवरी 2012 को +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +94 यह संदर्भित करता है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता +94 राष्ट्रीयता को संदर्भित करता है चालक की +94 यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता +94 यह संदर्भित करता है राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की +95 सड़क मार्ग है सीधी बस सेवा +95 सीधी बस सेवा है मुंबई से +95 सड़क मार्ग है सीधी बस सेवा मुंबई से +96 छपाई में प्रयोग होता था ब्लाकों का +96 ब्लाकों का निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +96 ब्लाकों का छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +97 यह शब्द आता है विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है बलिया जिले में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई पिता की +99 उन्होने नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +101 हाइपरयूरीसेमिया होता है मूल कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +103 उदगम स्थान है ढलुवा भाग +103 ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान है ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे का +104 दक्षिण भारत में था प्राधान्य +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 सन 1533 में हुआ देहांत हो गया +108 अल्पायु में हुआ देहांत हो गया +108 अल्पायु में देहांत हो गया दिन उनका +108 सन 1533 में हुआ देहांत हो गया अल्पायु में +109 इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +111 मॉस जल रोक रखा जाता है मिट्टी में +112 महाभारत का है भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt new file mode 100644 index 0000000..d31c302 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_gemma3_12b_rule_react_updated_mdt_info.txt @@ -0,0 +1,683 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का +3 भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का +3 विवादित अंगुलि चिह्नों का परीक्षण करना केन्द्रीय सरकार के विभागों एवं +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के विभागों एवं +3 उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +3 केन्द्रीय सरकार के विभागों एवं भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के उपक्रमों द्वारा +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के गुप्त नाम से प्रसिद्ध +4 यह एजेंट मौजूद फ़्लेमिंग की +4 फ़्लेमिंग की मौजूद बारह पुस्तकों +4 फ़्लेमिंग की मौजूद दो लघुकथाओं में +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +4 यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों +4 यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में +4 बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 01 अगस्त 1907 को शुरू की पत्रिका +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से लागू किया गया कंपनी में +6 कंपनी में लागू किया गया नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 01 अप्रैल 2009 से लागू किया गया कंपनी में नवीनतम वेतनमानों को +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 01 जून : हुआ गोधरा ट्रेन कांड की सुनवाई +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत थे ऐसे लोग +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को हुआ जारी किया गया +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 1 अक्टूबर 1953 को हुआ राज्य का दर्जा +11 आंध्र ने पाया राज्य का दर्जा +11 आंध्र ने पाया कर्नूल +11 कर्नूल को पाया राजधानी के साथ +11 कर्नूल को पाया आंध्र +11 कर्नूल को आंध्र ने पाया राज्य का दर्जा +11 कर्नूल को आंध्र ने पाया कर्नूल +11 आंध्र ने पाया कर्नूल को राजधानी के साथ +11 आंध्र ने पाया कर्नूल को आंध्र +11 राज्य का दर्जा आंध्र ने पाया कर्नूल +11 राजधानी के साथ कर्नूल को पाया आंध्र +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 1 अक्टूबर 2008 को जारी किया गया न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 रॉबर्ट आइगर ने लिया सीईओ के रूप में +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +13 स्थान रॉबर्ट आइगर ने लिया सीईओ के रूप में +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने सीईओ के रूप में +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को हुआ आजाद हुआ +14 यह देश आजाद हुआ इंग्लैंड के शासन से +14 1 अक्टूबर , 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में हुआ चन्द्रसिंह को +15 चन्द्रसिंह को भेज दिया गया फ्रांस +15 चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को +15 अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +16 इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त +16 मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे पर +18 कर्मा के चेहरे पर दिखाई पड़ती थी एक अनूठी आभा +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा के चेहरे पर +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 चेकोस्लोवाकिया की है राजधानी प्राग +21 प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 योग एवं शिक्षा के में क्षेत्र +22 योग एवं शिक्षा +22 राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को दी जाती है वित्तीय सहायता भी +23 पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 आज भी है दर्शनीय केन्द्र +24 यह स्थान है दर्शनीय केन्द्र +24 क्षेत्र के है दर्शनीय केन्द्र +24 लोगों के लिए है दर्शनीय केन्द्र +24 आज भी है दर्शनीय केन्द्र यह स्थान +24 आज भी है दर्शनीय केन्द्र क्षेत्र के +24 आज भी है दर्शनीय केन्द्र लोगों के लिए +24 यह स्थान है दर्शनीय केन्द्र क्षेत्र के +24 यह स्थान है दर्शनीय केन्द्र लोगों के लिए +24 क्षेत्र के है दर्शनीय केन्द्र लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण ही है वेदाङ्ग का प्रतिनिधित्व +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं करता हूं उपासना +26 शब्द की आत्मा समझकर ही +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं मैं +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश में बहती है नदियाँ +27 पांच नदियों में से है चार +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने इकार कर दिया बच्चे को +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 शिक्षा का जुड़ा है तुलनात्मक अध्ययन +29 सभी सामाजिक विज्ञानों से तुलनात्मक अध्ययन जुड़ा है शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 वर्तमान में है यह शहर +31 यह शहर है पश्चिम बंगाल का +31 वर्तमान में है यह शहर पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट है गाँव +32 सिलकोट गंगोलीहाट तहसील में है +32 सिलकोट भारत के उत्तराखण्ड राज्य के अन्तर्गत +32 सिलकोट कुमाऊँ मण्डल के पिथोरागढ जिले का +32 सिलकोट उत्तराखण्ड राज्य के अन्तर्गत है +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +33 एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 चीफ कोर्ट के के सामने विशेष न्यायाधीश मोहम्मद रजा +34 दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से हो गई मृत्यु +35 बाशो की हो गई मृत्यु +35 बाशो की हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +35 किसी बीमारी की वजह से मृत्यु हो गई बाशो की +35 28 नवम्बर 1694 को हो गई मृत्यु बाशो की +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +37 शाही सेना से मुकाबला हुआ पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड है गाँव +38 मर्लगोंड में कुभीर मण्डल +38 कुभीर मण्डल में भारत +38 भारत के आन्ध्रप्रदेश राज्य +38 आन्ध्रप्रदेश राज्य के अदिलाबादु जिले +38 अदिलाबादु जिले का एक गाँव +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +38 मर्लगोंड में कुभीर मण्डल भारत +38 भारत के आन्ध्रप्रदेश राज्य अदिलाबादु जिले +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 बाद में हुआ लिखे गये +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 1975 में हुआ इलाहाबाद में +40 Mehta अनुसंधान संस्थान में बना निदेशक +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 उनके नाम पर इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में हुआ वापसी +43 अमरीका के रक्षा सचिव अट्ठाइसवें +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा रखी गयी थी आधारशिला +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क में विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के +46 क्षेत्र में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं और मुस्लिमों के +49 सभी पर्व मनाए जाते हैं मिलजुल कर +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 20 जुलाई 2012 को द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह लगाया जाता है जर्मनी के +51 यह लगाया जाता है फ्रैंकफर्ट शहर मे +51 हर साल यह लगाया जाता है जर्मनी के +51 हर साल यह लगाया जाता है फ्रैंकफर्ट शहर मे +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी ने डाल दिया वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +53 पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है यह त्यौहार +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के में भोजन +54 भोजन में समुद्री भोजन , नारियल +54 भोजन में नारियल तेल का नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल ने सुधारा वहां के +55 उपेक्षित जीवविज्ञान उद्यान को भी कार्ल ने सुधारा वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की श्रेणी के तारों को +56 सिफियस चतुर्थ की कहते हैं सिफीड +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन से संपर्क रहा जापान +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप ने पता लगाया कि +59 राजा की आयु में कुछ घड़ी +59 शेष कश्यप ने पता लगाया कि +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की में खानों +60 मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +60 खानों में मोमबत्तियाँ भी प्रयुक्त होती है अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +61 उन्होंने इस शैली में लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास इस शैली में +61 कहानियाँ इस शैली में लिखे हैं उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है दलित +62 वो है मलयाली +62 वो मुख्य न्यायाधीश है +62 दलित वो है मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 6 जुलाई 2009 को हुआ पेश किया +63 उन्होंने पेश किया सरकार का +63 सरकार का पेश किया वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +63 वार्षिक बजट उन्होंने पेश किया सरकार का +63 6 जुलाई 2009 को पेश किया उन्होंने सरकार का +63 सरकार का पेश किया वार्षिक बजट उन्होंने +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 इस नदी का प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का +69 लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का +69 जिसमें सीवा नख़लिस्तान स्थित है मत्रूह मुहाफ़ज़ाह का +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 राज्य की राजधानी बंगलुरु शहर +70 बंगलुरु शहर है भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +71 ये प्रसिद्ध कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 सुपद्य व्याकरण लिखा है पद्मनाभ दत्त ने +73 पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी +73 सुपद्य व्याकरण पद्मनाभ दत्त ने लिखा है 15 वीं शताब्दी +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 इसके पश्चिम में अलबामा +74 अलबामा स्थित है पश्चिम में +74 दक्षिण में स्थित है फ्लोरिडा राज्य +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +76 पूरी प्रतिलिपि नहीं है है एक सरलीकृत सारांश +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र द्वारा किया वैदिक मन्त्रों के +81 सीता राम को पहनाती हैं जयमाल +81 विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को +81 स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 इस तथ्य पर बटे हुए हैं कि +82 किस वर्ष में बटे हुए हैं स्थान का +82 स्थान का बटे हुए हैं नाम +82 नाम बटे हुए हैं एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर बटे हुए हैं पड़ा आखिर +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर कि +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +82 किस वर्ष में बटे हुए हैं स्थान का नाम +82 स्थान का बटे हुए हैं नाम एजिंकोर्ट स्क्वायर +82 नाम बटे हुए हैं एजिंकोर्ट स्क्वायर पड़ा आखिर +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 विभिन्न विभाग होते हैं विभिन्न विभाग +83 जिनके अलगअलग अध्यक्ष होते हैं अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एकलों के बीच जारी किया गया एल्बम से +84 एल्बम से जारी किया गया तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में +84 एक लंबे अंतराल के बाद , एकलों के बीच जारी किया गया एल्बम से +84 2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच +84 2006 के मध्य में एल्बम से जारी किया गया तीसरा कट +84 एकलों के बीच जारी किया गया एल्बम से तीसरा कट +84 एल्बम से जारी किया गया तीसरा कट 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 चूंकि mark कोई और मानक नहीं थे , +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास हुआ विकास +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को +86 निमोनिया से बेहतर कर दिया परिणामों को +86 पीड़ित लोगों के लिये बेहतर कर दिया परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को निमोनिया से +86 बहुत से विकासों ने बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये +86 निमोनिया से बेहतर कर दिया परिणामों को पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों +87 सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों +87 आपका भी बहुत योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 उदाहरणार्थ , लेखबद्ध किये गये हैं मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 जहां में इश -- डू +89 इश -- डू में में दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष होने चाहिये उस तल में +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +90 उस तल में ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 विकासशील देशों में में किसानों के +91 किसानों के दूध विपणन के पुराने तरीके +91 पुराने तरीके बदल रहे हैं तेजी से +91 विकासशील देशों में , पुराने तरीके बदल रहे हैं तेजी से +91 अपने ही पड़ोस में बदल रहे हैं तेजी से पुराने तरीके +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने की शुरुआत +92 एक दीवाना था से की शुरुआत +92 उन्होंने की बोलीवुड करियर +92 बोलीवुड करियर की शुरुआत +92 17 फ़रवरी 2012 को हुआ रिलीज़ किया गया +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने की शुरुआत एक दीवाना था से +92 शुरुआत उन्होंने की बोलीवुड करियर +92 एक दीवाना था से की शुरुआत बोलीवुड करियर +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 इस रोग के प्रतिषेधात्मक उपचार में भी है +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग है मुंबई से सीधी बस सेवा +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 छपाई में प्रयोग होता था लकड़ी के ब्लाकों का +96 शिल्पी -- सुथार करते थे जिसका निर्माण +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द प्रयोग में विधि +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने नहीं करवाई हत्या +99 उसेक बाद नहीं करवाई हत्या +99 अन्य सम्राट किया करते थे हत्या +99 उन्होने नहीं करवाई हत्या उसेक बाद +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की +100 प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण +100 स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है पासा +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 प्रसिद्ध है यही कारण +102 यही कारण है कि +102 विश्व भर में प्रसिद्ध केरल +102 केरल अपनी आयुर्वेदिक चिकित्सा शैली +102 प्रसिद्ध है यही कारण कि +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका है उदगम स्थान +103 उदगम स्थान है सिरमोर राज्य के +103 सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का +103 अंतगर्त हिमालय पर्वत के नीचे का है ढलुवा भाग +103 इसका है उदगम स्थान सिरमोर राज्य के +103 उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का +103 सिरमोर राज्य के है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में था प्राधान्य +104 उन दिनों था प्राधान्य +104 परम्परागत चित्रकला का ही था प्राधान्य +104 दक्षिण भारत में था प्राधान्य उन दिनों +104 दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही +104 उन दिनों था प्राधान्य परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 उनका देहांत हो गया 47 वर्ष की +108 उनका देहांत हो गया अल्पायु में +108 उनका देहांत हो गया रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +108 दिन उनका देहांत हो गया 47 वर्ष की +108 दिन उनका देहांत हो गया रथयात्रा के +108 47 वर्ष की उनका देहांत हो गया अल्पायु में +108 47 वर्ष की उनका देहांत हो गया रथयात्रा के +108 उनका देहांत हो गया अल्पायु में दिन +108 अल्पायु में उनका देहांत हो गया रथयात्रा के +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 इसे कहा जाता है पाण्सिल्क भी +109 यह देखा जाता है तालाब में +109 यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +110 एकाधिक अवसर पर तीसरे ब्रिटिश प्रबंधक जीता यूरोपीय कप +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस से से मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत का है वर्तमान रूप +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 महाभारत का है वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm.txt new file mode 100644 index 0000000..843ace5 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm.txt @@ -0,0 +1,342 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new.txt new file mode 100644 index 0000000..a00d0ea --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new.txt @@ -0,0 +1,411 @@ +1 कार्यरूप जगत है शक्तिरूपी माया की सििद्ध +1 शक्तिरूपी माया की है सििद्ध +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +2 ( 1958 से ) समय में अखिल भारतीय पुलिस डयूटी मीट +3 केन्द्रीय सरकार के द्वारा विभागों +3 भारत सरकार के द्वारा उपक्रमों द्वारा +3 विवादित अंगुलि चिह्नों का परीक्षण करना केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +4 007 के है गुप्त नाम से प्रसिद्ध यह एजेंट +4 यह एजेंट मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +4 फ़्लेमिंग की बारह पुस्तकों मौजूद है दो लघुकथाओं में +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से लागू किया गया है नवीनतम वेतनमानों को +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को 01 अप्रैल 2009 से +7 गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर +7 01 जून शुरू हुई गोधरा ट्रेन कांड की सुनवाई +8 वे नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश +8 वे नियुक्त हुई 06 अक्टूबर 1989 को +8 सर्वोच्च न्यायालय की न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत है ऐसे लोग +9 ऐसे लोग था कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस जारी किया पहला डाक टिकट +10 1 अक्टूबर 1854 को द्वारा पहला डाक टिकट जारी किया गया +11 आंध्र है कर्नूल को अपनी राजधानी के साथ +11 आंध्र पाया राज्य का दर्जा +11 1 अक्टूबर 1953 को समय में आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया +12 1 अक्टूबर 2008 को जारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न +12 न्यूजीलैंड और ऑस्ट्रेलिया में है दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया . +13 रॉबर्ट आइगर लिया माइकल आइजनर का स्थान +13 1 अक्टूबर को समय में रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया +14 1 अक्टूबर , 1960 को आजाद हुआ यह देश +14 यह देश है इंग्लैंड के शासन से +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 अन्य गढ़वाली सैनिकों के साथ भेज दिया गया चन्द्रसिंह +15 चन्द्रसिंह भेज दिया गया अंग्रेज द्वारा +15 अंग्रेज द्वारा भेज दिया गया 1 अगस्त 1915 में +15 चन्द्रसिंह भेज दिया गया फ्रांस अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस चन्द्रसिंह भेज दिया गया अंग्रेज द्वारा +15 अन्य गढ़वाली सैनिकों के साथ भेज दिया गया चन्द्रसिंह अंग्रेज द्वारा +15 चन्द्रसिंह भेज दिया गया अंग्रेज द्वारा 1 अगस्त 1915 में +16 1 अप्रैल 1946 को घोषित किया गया इसे स्वायत्तशासी प्रान्त +16 इसे बने गोविन्द बल्लभ पन्त मुख्य मन्त्री +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 हिन्दी प्रचार सभा आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही +18 बाल्यकाल से ही है कर्मा के चेहरे पर +18 कर्मा के चेहरे पर है एक अनूठी आभा +18 बाल्यकाल से ही है कर्मा के चेहरे पर एक अनूठी आभा +19 सोनू है भारतीय संगीत जगत में एक प्रमुख हस्ती +19 सोनू बन चुके हैं भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग +21 बर्लिन पर है आज़ाद कराया +21 चेकोस्लोवाकिया की है प्राग +22 राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले +22 वे हैं प्रथम भारतीय +22 योग एवं शिक्षा के क्षेत्र में हैं पद्म श्री सम्मान प्राप्त करने वाले +23 सभी बच्चों को दी जाती है वित्तीय सहायता +23 वित्तीय सहायता दी जाती है स्कूल की पढ़ाई पूरी करने तक +23 सभी बच्चों को दी जाती है वित्तीय सहायता स्कूल की पढ़ाई पूरी करने तक +24 यह स्थान है दर्शनीय केन्द्र +24 दर्शनीय केन्द्र है क्षेत्र के लोगों के लिए +24 आज भी है यह स्थान +24 यह स्थान है दर्शनीय केन्द्र क्षेत्र के लोगों के लिए +24 दर्शनीय केन्द्र यह स्थान है आज भी +25 पाणिनीय व्याकरण है वेदाङ्ग का प्रतिनिधित्व करता है +25 इस सम्बन्ध में है पाणिनीय व्याकरण +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण है इस सम्बन्ध में +26 मैं उपासना करता हूं शब्द की आत्मा +26 शब्द की आत्मा उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 मैं उपासना करता हूं शब्द की आत्मा इस श्रेष्ठ तत्त्व की +28 उन्होंने देने से स्पष्ट इंकार कर दिया +28 बच्चे को है स्पष्ट इंकार कर दिया +29 शिक्षा जुड़ा है तुलनात्मक अध्ययन +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 शिक्षा जुड़ा है तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से +30 गुजरात क्वीन एक्स्प्रेस है एक मेल एक्स्प्रेस ट्रेन +30 गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल +30 9110 है गुजरात क्वीन एक्स्प्रेस +30 एक मेल एक्स्प्रेस ट्रेन गुजरात क्वीन एक्स्प्रेस है 9110 +31 यह शहर है पश्चिम बंगाल का +31 यह शहर है प्रमुख हिल स्टेशन +31 पश्चिम बंगाल का है प्रमुख हिल स्टेशन +31 पश्चिम बंगाल का यह शहर है प्रमुख हिल स्टेशन +32 सिलकोट है गंगोलीहाट तहसील में +32 सिलकोट है भारत के उत्तराखण्ड राज्य के अन्तर्गत +32 सिलकोट है कुमाऊँ मण्डल के +32 सिलकोट है पिथोरागढ जिले का +32 सिलकोट है एक गाँव +32 गंगोलीहाट तहसील में सिलकोट है भारत के उत्तराखण्ड राज्य के अन्तर्गत +32 गंगोलीहाट तहसील में सिलकोट है कुमाऊँ मण्डल के +32 गंगोलीहाट तहसील में सिलकोट है पिथोरागढ जिले का +32 गंगोलीहाट तहसील में सिलकोट है एक गाँव +32 भारत के उत्तराखण्ड राज्य के अन्तर्गत सिलकोट है कुमाऊँ मण्डल के +32 भारत के उत्तराखण्ड राज्य के अन्तर्गत सिलकोट है पिथोरागढ जिले का +32 भारत के उत्तराखण्ड राज्य के अन्तर्गत सिलकोट है एक गाँव +32 कुमाऊँ मण्डल के सिलकोट है पिथोरागढ जिले का +32 कुमाऊँ मण्डल के सिलकोट है एक गाँव +32 पिथोरागढ जिले का सिलकोट है एक गाँव +33 एयर लाइन के तकनीकी केंद्र है तिरुवनंतपुरम में +33 स्थानापन्न करना है है एयर लाइन के तकनीकी केंद्र +33 तिरुवनंतपुरम में एयर लाइन के तकनीकी केंद्र है स्थानापन्न करना है +34 चीफ कोर्ट के में है मुख्य न्यायाधीश सर लुइस शर्ट +34 मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +34 विशेष न्यायाधीश मोहम्मद रजा के सामने में है दोनों मामले +34 दोनों मामले पेश हुए . +35 किसी बीमारी की वजह से मृत्यु बाशो +35 बाशो की मृत्यु 28 नवम्बर 1694 को +35 28 नवम्बर 1694 को हो गई बाशो की मृत्यु +36 विक्रम सोचा एक हल +36 विक्रम है एक हल +37 सन 1696 में हुआ मुकाबला +37 शाही सेना से हुआ मुकाबला +37 एक बार हुआ मुकाबला +37 पंचायती सेना का हुआ मुकाबला +37 सन 1696 में हुआ मुकाबला शाही सेना से +37 सन 1696 में हुआ मुकाबला एक बार +37 सन 1696 में हुआ मुकाबला पंचायती सेना का +37 शाही सेना से हुआ मुकाबला एक बार +37 शाही सेना से हुआ मुकाबला पंचायती सेना का +37 एक बार हुआ मुकाबला पंचायती सेना का +38 मर्लगोंड है कुभीर मण्डल में +38 मर्लगोंड है भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 मर्लगोंड है अदिलाबादु जिले का +38 मर्लगोंड है एक गाँव +38 कुभीर मण्डल में मर्लगोंड है भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 कुभीर मण्डल में मर्लगोंड है अदिलाबादु जिले का +38 कुभीर मण्डल में मर्लगोंड है एक गाँव +38 भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के मर्लगोंड है अदिलाबादु जिले का +38 भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के मर्लगोंड है एक गाँव +38 अदिलाबादु जिले का मर्लगोंड है एक गाँव +39 बाद में लिखे गये व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ +40 1975 में बना नवनिर्मित मेहता अनुसंधान संस्थान +40 नवनिर्मित मेहता अनुसंधान संस्थान में है इलाहाबाद में +40 इलाहाबाद में बना निदेशक +40 निदेशक बना 1975 में +40 नवनिर्मित मेहता अनुसंधान संस्थान 1975 में बना निदेशक +40 इलाहाबाद में बना निदेशक 1975 में +41 उनके है रखा गया +41 नाम पर है इस जगह का +41 नाम है रступа खान +41 रступа खान है इस जगह का +41 नाम पर है इस जगह का रступа खान +41 नाम है रступа खान इस जगह का +42 कुछ लोग पसंद करते हैं अपने घर पर ही +42 कुछ लोग पसंद करते हैं इस आपाधापी से दूर +42 अपने है घर पर ही +42 अपने घर पर ही कुछ लोग पसंद करते हैं इस आपाधापी से दूर +43 मार्च 2001 में वापसी हुई अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी +43 अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी है वापसी +43 उनकी वापसी हुई मार्च 2001 में +43 अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी मार्च 2001 में वापसी हुई उनकी +44 इसकी रचना की है 3 मार्च 1884 को +44 3 मार्च 1884 को रखी गयी थी सर वाईकर के द्वारा +44 सर वाईकर के द्वारा रखी गयी थी आधारशिला +44 3 मार्च 1884 को रखी गयी थी सर वाईकर के द्वारा आधारशिला +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 विभिन्न टेलीविजन कंपनियों से संपर्क में है इस तकनीक के लिए +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से इस तकनीक के लिए +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था पद्मा भूषण +46 पद्मा भूषण मिला 1961 में +46 1961 में है सन 1961 में +47 मराठी के अतिरिक्त रचना की हिन्दी फिल्मों के लिए भी +47 उन्होने रचना की संगीत रचना की +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं में +48 काइटिन है औद्योगिक रूप से उपयोग किया जाता है +49 हिंदूओं है मुस्लिमों के +49 सभी पर्व मिलजुल कर मनाए जाते हैं . +49 मनाए जाते हैं है सभी पर्व +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 अमेरिका , द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +50 कनाडा में द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को +51 यह है लगाया जाता है +51 लगाया जाता है है जर्मनी के फ्रैंकफर्ट शहर मे +51 जर्मनी के फ्रैंकफर्ट शहर मे है हर साल +51 यह है लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर मे +51 लगाया जाता है है जर्मनी के फ्रैंकफर्ट शहर मे हर साल +52 द्रौपदी ने अर्जुन के गले में वरमाला डाल दिया +52 अर्जुन के गले में है वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 पूरे उत्तर भारत में है राम नवमी के दौरान +53 पूरे उत्तर भारत में यह त्यौहार मनाया जाता है राम नवमी के दौरान +54 तटीय कर्नाटक के भोजन में है समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग +54 समुद्री भोजन , है नारियल और नारियल तेल का व्यापक उपयोग +55 कार्ल सुधारा उपेक्षित जीवविज्ञान उद्यान को +55 उपेक्षित जीवविज्ञान उद्यान को सुधारा वहां के +55 वहां के है उपेक्षित जीवविज्ञान उद्यान को +55 कार्ल सुधारा उपेक्षित जीवविज्ञान उद्यान को वहां के +56 सिफियस चतुर्थ की है तारों को +56 तारों को कहते हैं सिफीड +56 सिफीड है तारों को +56 सिफियस चतुर्थ की है तारों को सिफीड +57 प्रारंभिक विधि अध्यारोप है प्रसिद्ध +57 नाम से है प्रारंभिक विधि अध्यारोप +57 प्रसिद्ध प्रारंभिक विधि अध्यारोप है नाम से +58 चीन है जापान से इस देश का अधिक संपर्क रहा है +58 जापान है चीन से इस देश का अधिक संपर्क रहा है +59 कश्यप पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +59 कश्यप पता लगाया राजा की आयु में कुछ घड़ी शेष हैं कश्यप ने +60 अभ्रक आदि की है खानों में +60 खानों में प्रयुक्त होती है मोमबत्तियाँ भी +60 मोमबत्तियाँ भी है अभ्रक आदि की +60 खानों में अभ्रक आदि की है मोमबत्तियाँ भी +61 उन्होंने लिखे हैं कहानियाँ +61 उन्होंने लिखे हैं उपन्यास +61 इस शैली में है उन्होंने +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +62 वो है पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 उन्होंने पेश किया सरकार का +63 6 जुलाई 2009 को समय में उन्होंने पेश किया वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया सरकार का +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 चाय के व्यापार पर निर्भर रहती है स्थानीय आबादी +65 लागू किया जाता है है इसे साथ ही +65 लागू किया जाता है है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही लागू किया जाता है है आधारभूत प्रोफ़ाइल में भी +65 लागू किया जाता है है आधारभूत प्रोफ़ाइल में भी इसे साथ ही +66 उन्हें है उत्कल मणि +66 उत्कल मणि के नाम से +66 नाम से जाना जाता है उन्हें +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को +67 फ्रेंच फ्लेमिश को देखें . +67 अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को . +68 इस नदी का प्रवाहित होता है ज्यादातर अंश +68 ज्यादातर अंश है पाकिस्तान में +68 पाकिस्तान में प्रवाहित होता है इस नदी का +68 ज्यादातर अंश इस नदी का प्रवाहित होता है पाकिस्तान में +69 मत्रूह मुहाफ़ज़ाह है लीबियाई रेगिस्तान का हिस्सा +69 अंदरूनी भाग है लीबियाई रेगिस्तान का हिस्सा +69 सीवा नख़लिस्तान है लीबियाई रेगिस्तान का हिस्सा +69 सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का हिस्सा +69 मत्रूह मुहाफ़ज़ाह है लीबियाई रेगिस्तान का हिस्सा अंदरूनी भाग +69 मत्रूह मुहाफ़ज़ाह है लीबियाई रेगिस्तान का हिस्सा सीवा नख़लिस्तान +69 अंदरूनी भाग है लीबियाई रेगिस्तान का हिस्सा सीवा नख़लिस्तान +70 बंगलुरु शहर है राज्य की राजधानी +70 बंगलुरु शहर में है भारत +70 बंगलुरु शहर है त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +70 राज्य की राजधानी बंगलुरु शहर है त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +71 ये है अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध +71 अपनी रहस्यमयी और भयावह कहानियों के लिए है प्रसिद्ध +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह +72 उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह है उनका +72 दो निबंध संग्रह है उनका +72 एक कहानी संग्रह उनका प्रकाशित हुए हैं दो निबंध संग्रह +72 एक कहानी संग्रह है उनका दो निबंध संग्रह +73 पद्मनाभ दत्त लिखा है सुपद्य व्याकरण +73 15 वीं शताब्दी समय में सुपद्य व्याकरण +74 इसके स्थित है पश्चिम में +74 इसके स्थित है दक्षिण में +74 इसके स्थित है अलबामा +74 इसके स्थित है फ्लोरिडा राज्य +74 अलबामा स्थित है दक्षिण में +74 फ्लोरिडा राज्य स्थित है दक्षिण में +74 पश्चिम में इसके स्थित है दक्षिण में +74 पश्चिम में इसके स्थित है अलबामा +74 पश्चिम में इसके स्थित है फ्लोरिडा राज्य +74 दक्षिण में इसके स्थित है अलबामा +74 दक्षिण में इसके स्थित है फ्लोरिडा राज्य +74 अलबामा इसके स्थित है फ्लोरिडा राज्य +74 अलबामा स्थित है दक्षिण में फ्लोरिडा राज्य +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में स्थित है ऑस्ट्रेलिया के +75 ऑस्ट्रेलिया के यह क्रिकेट मैदान स्थित है होबार्ट शहर में +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश +76 एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश पूरी प्रतिलिपि नहीं है +78 जंगलों की है विशेषता +78 कुछ लोगों ने विभाजित किया इसे +78 इसे है इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 उनको है प्रश्रय देने लगी होंगी +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों को +80 ईसा मसीह के जन्म से पूर्व के वर्षों को है . +80 वर्षों को दर्शाता है . +81 विश्वामित्र द्वारा सीता राम को जयमाल पहनाती हैं +81 सीता राम को जयमाल पहनाती हैं +82 विभिन्न स्रोत है इस तथ्य पर बटे हुए हैं +82 इस तथ्य पर है बटे हुए हैं +82 बटे हुए हैं है कि किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा +82 कि किस वर्ष में है स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा +82 इस तथ्य पर है बटे हुए हैं कि किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा +83 प्रत्येक भाग के अंतर्गत है विभिन्न विभाग +83 विभिन्न विभाग है अध्यक्ष +83 अध्यक्ष है अलगअलग +83 प्रत्येक भाग के अंतर्गत है विभिन्न विभाग अध्यक्ष +83 विभिन्न विभाग है अध्यक्ष अलगअलग +84 एल्बम से है तीसरा कट +84 तीसरा कट जारी किया गया 2006 के मध्य में +84 2006 के मध्य में है एक लंबे अंतराल के बाद , +85 चूंकि है उस दौर में +85 उनके सामने है कोई और मानक नहीं थे +85 अतः है सब कामचलाऊ व्यवस्था +85 सब कामचलाऊ व्यवस्था है उन्हें +85 उन्हें है स्वयं करनी पड़ी +85 अतः है सब कामचलाऊ व्यवस्था उन्हें +85 सब कामचलाऊ व्यवस्था है उन्हें स्वयं करनी पड़ी +86 1900 के आसपास है बहुत से विकासों ने +86 बहुत से विकासों ने मिला परिणामों को +86 परिणामों को है बेहतर कर दिया था +86 बेहतर कर दिया था से निमोनिया से +87 अपने पिता के समान है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में योगदान +87 आपका है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में योगदान +87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में है आपका योगदान +87 अपने पिता के समान है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में योगदान आपका +88 उदाहरणार्थ है केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 मामले लेखबद्ध किये गये हैं . +89 जहां है इश -- डू में +89 इश -- डू में में है दो प्राणियों का +89 दो प्राणियों का सामना होता है इश -- एस में +89 इश -- एस में में है प्राणी +89 प्राणी वास्तव में मिलते नहीं है +90 ये तीनों अक्ष है एकबिन्दुगामी भी +90 होने चाहिये है उस तल में +91 विकासशील देशों में बदल रहे हैं अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके +91 किसानों के दूध विपणन के पुराने तरीके बदल रहे हैं अपने ही पड़ोस में +92 उन्होंने की शुरुआत एक दीवाना था से +92 उन्होंने है एक दीवाना था से +92 एक दीवाना था से है 17 फ़रवरी 2012 को +92 17 फ़रवरी 2012 को है रिलीज किया गया +92 उन्होंने है एक दीवाना था से 17 फ़रवरी 2012 को +92 एक दीवाना था से है 17 फ़रवरी 2012 को रिलीज किया गया +93 इस रोग के है प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +93 मक्खियों से बचाना खाद्य एवं पेय पदार्थो को +93 खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है +93 मक्खियों से बचाना खाद्य एवं पेय पदार्थो को अत्यंत आवश्यक है +94 प्रतिस्पर्धी टीम की है राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है कोई नहीं +94 गाड़ी निर्माता है राष्ट्रीयता को +94 चालक की है राष्ट्रीयता को +94 प्रतिस्पर्धी टीम की है राष्ट्रीयता को गाड़ी निर्माता +94 प्रतिस्पर्धी टीम की है राष्ट्रीयता को चालक की +94 गाड़ी निर्माता है राष्ट्रीयता को चालक की +95 सड़क मार्ग है रत्नागिरी के लिए +95 रत्नागिरी के लिए है मुंबई से +95 मुंबई से है सीधी बस सेवा +95 सड़क मार्ग है रत्नागिरी के लिए मुंबई से +95 रत्नागिरी के लिए है मुंबई से सीधी बस सेवा +96 छपाई में है लकड़ी के ब्लाकों का प्रयोग होता था +96 शिल्पी है सुथार +96 सुथार करता है निर्माण +97 यह शब्द प्रयोग में आता है विधि बनाने वाली सरकारी इकाई के लिये +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +98 उत्तर प्रदेश के बलिया जिले में स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया शहर से थोड़ी दूर पश्चिम में स्थित है है +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में स्थित है बलिया शहर से थोड़ी दूर पश्चिम में है +99 उन्होने हत्या नहीं करवाई पिता की +99 उन्होने किया करते थे अन्य सम्राट किया करते थे +99 उन्होने किया करते थे जैसाकि +99 अन्य सम्राट किया करते थे उन्होने किया करते थे जैसाकि +100 प्रत्येक खिलाड़ी के लिये निर्धारित किया जाता है हवाओं की स्थिति +100 हवाओं की स्थिति है प्रत्येक खिलाड़ी के लिये +100 पासा फेंककर किया जाता है हवाओं की स्थिति का निर्धारण +101 हाइपरयूरीसेमिया है वात रोग का मूल कारण +101 वात रोग का मूल कारण होता है हाइपरयूरीसेमिया +102 केरल है विश्व भर में +102 केरल प्रसिद्ध अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 अपनी आयुर्वेदिक चिकित्सा शैली के कारण है केरल को प्रसिद्ध +103 इसका है उदगम स्थान +103 उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है ढलुवा भाग +103 इसका है उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग ढलुवा भाग +104 दक्षिण भारत में है उन दिनों +104 उन दिनों है परम्परागत चित्रकला का ही +104 परम्परागत चित्रकला का ही है प्राधान्य +104 प्राधान्य है था +104 दक्षिण भारत में है उन दिनों परम्परागत चित्रकला का ही +104 उन दिनों है परम्परागत चित्रकला का ही प्राधान्य +104 परम्परागत चित्रकला का ही है प्राधान्य था +105 ये कहानियाँ है किसी देश +105 ये कहानियाँ है या समय की +105 हो सकती हैं है कहानियाँ +105 किसी देश ये कहानियाँ है या समय की +106 और भी कुछ निम्नलिखित कारण हैं प्रकृति आधारित निर्माण को +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं कुछ निम्नलिखित कारण +107 2010 को सम्पन्न हुआ दर्शन -- परिषद् +108 यहीं पर देहांत हो गया सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया +108 सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन देहांत हो गया . +108 यहीं पर है सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया +109 इसे है पांसिल्क भी +109 इसे कहा जाता है पांसिल्क भी +109 पांसिल्क भी है कहा जाता है +109 यह देखा जाता है तालाब में +109 तालाब में देखा जाता है यह +109 इसे है पांसिल्क भी कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 वे हैं यूरोपीय कप विजेता +110 यूरोपीय कप मिला 2008 में +111 मिट्टी में जल रोक रखा जाता है मॉस +112 महाभारत है वर्तमान रूप +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार +112 भण्डार है वर्तमान रूप +112 महाभारत है वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का +112 महाभारत है वर्तमान रूप भण्डार +112 वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new2.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new2.txt new file mode 100644 index 0000000..415b9a8 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_llm_new2.txt @@ -0,0 +1,642 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +1 शक्तिरूपी माया की है कार्यरूप जगत को देखकर ही +1 कार्यरूप जगत को देखकर शक्तिरूपी माया की +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +2 अंगुलि चिह्न विज्ञान प्रतियोगिता है प्रकार की अखिल भारतीय पुलिस डयूटी मीट +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 विवादित अंगुलि चिह्नों का परीक्षण किया गया केन्द्रीय सरकार के विभागों द्वारा +3 केन्द्रीय सरकार के विभागों से संबंधित विवादित अंगुलि चिह्नों का +3 भारत सरकार के उपक्रमों द्वारा विवादित अंगुलि चिह्नों का परीक्षण किया गया +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 007 के property गुप्त नाम से +4 फ़्लेमिंग की property बारह पुस्तकों +4 फ़्लेमिंग की property दो लघुकथाओं में +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 कंपनी में नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से कंपनी में +6 नवीनतम वेतनमानों को की लागू किया गया है +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई स्थान साबरमती केंद्रीय जेल के अंदर +7 गोधरा ट्रेन कांड की प्रकार सुनवाई +7 01 जून तिथि सुनवाई +7 अहमदाबाद के स्थान साबरमती केंद्रीय जेल के अंदर +7 सुनवाई संबंध 01 जून +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +7 सुनवाई स्थान साबरमती केंद्रीय जेल के अंदर अहमदाबाद के +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 वे नियुक्त हुई सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 को समय वे +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +8 न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय +8 06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +9 06 प्रतिशत संख्या है ऐसे लोग +9 ऐसे लोग धर्म का पालन नहीं करते थे कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 इम्पीरियल पोस्टल सर्विस स्थापित 1 अक्टूबर 1854 को +10 1 अक्टूबर 1854 को जारी पहला डाक टिकट +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +11 आंध्र राजधानी है कर्नूल +11 कर्नूल राज्य है आंध्र +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न शुरू हुआ 1 अक्टूबर 2008 को +12 न्यूजीलैंड में दूसरा सीज़न +12 ऑस्ट्रेलिया में हुआ दूसरा सीज़न +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 रॉबर्ट आइगर सीईओ माइकल आइजनर +13 1 अक्टूबर को तिथि रॉबर्ट आइगर का पदभार +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +14 1 अक्टूबर , 1960 को आजाद हुआ से इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 चन्द्रसिंह स्थान फ्रांस +15 1 अगस्त 1915 में समय चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +16 1 अप्रैल 1946 को एक स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त मुख्य मन्त्री 1 अप्रैल 1946 को +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +17 हिन्दी प्रचार सभा был स्वतंत्रता आन्दोलन +17 स्वतंत्रता आन्दोलन был भारत के +17 हिन्दी प्रचार सभा आरम्भ हुई स्वतंत्रता आन्दोलन के साथ ही +17 हिन्दी प्रचार सभा был स्वतंत्रता आन्दोलन भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +18 एक अनूठी आभा है कर्मा के +18 बाल्यकाल से ही दिखाई देता है एक अनूठी आभा +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 सोनू है भारतीय संगीत जगत में एक प्रमुख हस्ती +19 सोनू बन गए हैं भारतीय संगीत जगत में +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 सोवियत दस्तों ने नियंत्रण किया बर्लिन पर +21 सोवियत दस्तों ने आज़ादी दी प्राग को +21 प्राग को राजधानी है चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +22 राष्ट्रपति सम्मानित पद्म श्री +22 योग एवं शिक्षा क्षेत्र पद्म श्री +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +23 सभी बच्चों को प्राप्त करते हैं वित्तीय सहायता +23 वित्तीय सहायता दी जाती है सभी बच्चों को +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +24 यह स्थान है क्षेत्र के लोगों के लिए +24 क्षेत्र के लोग हैं दर्शनीय केन्द्र +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 पाणिनीय व्याकरण है वेदाङ्ग +25 वेदाङ्ग प्रतिनिधित्व करता है पाणिनीय व्याकरण +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +26 मैं समझना शब्द की आत्मा +26 शब्द की आत्मा उपासना करना इस श्रेष्ठ तत्त्व की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 हिमाचल प्रदेश स्थित है पांच नदियों में से +27 पांच नदियों में से में चार का उल्लेख +27 ऋग्वेद में मिलता है चार का उल्लेख +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +27 उल्लेख ऋग्वेद में मिलता है चार का उल्लेख +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने दिए बच्चे को +28 बच्चे को दिए देने से +28 उन्होंने दिए बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +29 तुलनात्मक अध्ययन संबंध है शिक्षा के साथ +29 शिक्षा विषय है तुलनात्मक अध्ययन +30 9110 भारतीय रेल द्वारा संचालित +30 गुजरात क्वीन एक्स्प्रेस is a मेल एक्स्प्रेस ट्रेन +30 9110 is a ट्रेन नंबर +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +31 यह शहर स्थित है पश्चिम बंगाल में +31 यह शहर हिल स्टेशन है वर्तमान में +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 सिलकोट स्थित है गंगोलीहाट तहसील में +32 सिलकोट अंश है कुमाऊँ मण्डल के +32 सिलकोट अंश है पिथोरागढ जिले का +32 गंगोलीहाट तहसील में अंश है उत्तराखण्ड राज्य के अन्तर्गत +32 उत्तराखण्ड राज्य के अन्तर्गत अंश है भारत के +32 पिथोरागढ जिले का अंश है कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +32 कुमाऊँ मण्डल के सिलकोट अंश है पिथोरागढ जिले का +32 गंगोलीहाट तहसील में अंश है उत्तराखण्ड राज्य के अन्तर्गत भारत के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट कार्य करता है मुख्य न्यायाधीश +34 मोहम्मद रजा कार्य करता है विशेष न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 बाशो मृत्यु के कारण किसी बीमारी की वजह से +35 मृत्यु समय 28 नवम्बर 1694 को +35 28 नवम्बर 1694 को समय मृत्यु +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +36 विक्रम सोचा एक हल +36 तो हुआ कोई मतैक्य +36 विक्रम ने सोचा एक हल विक्रम +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +37 सन 1696 में हुआ मुकाबला +37 शाही सेना से मुकाबला हुआ +37 पंचायती सेना से मुकाबला हुआ +37 शाही सेना से मुकाबला हुआ पंचायती सेना +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 मर्लगोंड स्थित है कुभीर मण्डल में +38 मर्लगोंड अंश है आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड अंश है अदिलाबादु जिले का +38 मर्लगोंड अंश है भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड अंश है अदिलाबादु जिले का +38 आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड अंश है भारत के +38 अदिलाबादु जिले का मर्लगोंड अंश है भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +39 अनेक ग्रन्थ विषय है व्याकरण के दर्शन पक्ष +39 व्याकरण के दर्शन पक्ष प्रकार है अनेक ग्रन्थ +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +40 निदेशक कार्य नवनिर्मित मेहता अनुसंधान संस्थान में +40 नवनिर्मित मेहता अनुसंधान संस्थान में स्थित इलाहाबाद में +40 1975 में संस्था नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +41 रुस्तम खान नाम इस जगह का +41 उनके नाम रुस्तम खान +41 इस जगह का रुस्तम खान नाम उनके +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +42 कुछ लोग पसंद करते हैं अपने घर पर रहना +42 इस आपाधापी से दूर स्थान अपने घर पर +42 रहना कुछ लोग पसंद करते हैं अपने घर पर रहना +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 मार्च 2001 में समय एक बार फिर वापसी +43 अट्ठाइसवें रक्षा सचिव के रूप में पद उनकी +43 अमरीका के देश अट्ठाइसवें रक्षा सचिव के रूप में +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा रचना की आधारशिला 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +45 वह संपर्क स्थापित करता है इस तकनीक के लिए +45 इस तकनीक के लिए लक्ष्य विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था पद्म भूषण +46 पद्म भूषण सम्मानित किया गया था सन 1961 में +46 पद्म भूषण से सन 1961 में सम्मानित किया गया था पद्म भूषण +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था पद्म भूषण सन 1961 में +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 उन्होने रचना की मराठी के अतिरिक्त +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +47 हिन्दी फिल्मों के लिए भी उन्होने संगीत रचना की मराठी के अतिरिक्त +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +48 काइटिन उपयोग किया जाता है अनेक प्रक्रियाओं में +48 काइटिन औद्योगिक रूप से उपयोग किया जाता है +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं और मुस्लिमों के +49 सभी पर्व संबंध हिंदूओं और मुस्लिमों के +49 सभी पर्व मनाए जाते हैं हिंदूओं और मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका , +50 द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , द डार्क नाईट राइसेस +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , द डार्क नाईट राइसेस +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा में +50 कनाडा में द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 को अमेरिका , +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 को संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया 20 जुलाई 2012 को कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +51 यह स्थित है जर्मनी के फ्रैंकफर्ट शहर मे +51 फ्रैंकफर्ट शहर मे एक हिस्सा है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +52 द्रौपदी दिला वरमाला +52 अर्जुन प्राप्त वरमाला +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार होता है राम नवमी के दौरान +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 तटीय कर्नाटक के भोजन में उपयोग समुद्री भोजन +54 तटीय कर्नाटक के भोजन में उपयोग नारियल +54 तटीय कर्नाटक के भोजन में उपयोग नारियल तेल का +54 नारियल तेल का में उपयोग व्यापक उपयोग +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन तटीय कर्नाटक के भोजन में उपयोग नारियल +54 समुद्री भोजन तटीय कर्नाटक के भोजन में उपयोग नारियल तेल का +54 नारियल तटीय कर्नाटक के भोजन में उपयोग नारियल तेल का +54 तटीय कर्नाटक के भोजन में उपयोग नारियल तेल का व्यापक उपयोग +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +55 कार्ल सुधारा उपेक्षित जीवविज्ञान उद्यान +55 कार्ल अध्ययन के साथ उपेक्षित जीवविज्ञान उद्यान +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +56 सिफियस चतुर्थ की is_a श्रेणी के +56 श्रेणी के related_to तारों को +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +57 प्राथमिक विधि अध्यारोप है नाम से यह +57 प्राथमिक विधि अध्यारोप प्रसिद्ध है यह +57 नाम से यह प्रसिद्ध है प्राथमिक विधि अध्यारोप +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन स्थान इस देश +58 जापान स्थान इस देश +58 चीन अधिक संपर्क रहा है जापान से +58 चीन स्थान इस देश जापान +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +59 कश्यप जांच किया राजा की आयु +59 राजा मृत्यु के निकट कुछ घड़ी +59 ज्योतिष गणना राजा की आयु के बारे में कश्यप +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 मोमबत्तियाँ उपयोग अभ्रक आदि की खानों में +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 उपन्यास लिखे हैं उन्होंने +61 कहानियाँ में इस शैली में +61 उपन्यास में इस शैली में +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +61 उपन्यास लिखे हैं उन्होंने कहानियाँ +61 कहानियाँ में इस शैली में उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +62 वो है पहले दलित +62 वो है पहले मलयाली +62 मुख्य न्यायाधीश है पहले दलित +62 मुख्य न्यायाधीश है पहले मलयाली +62 पहले दलित वो है पहले मलयाली +62 वो है पहले दलित मुख्य न्यायाधीश +62 वो है पहले मलयाली मुख्य न्यायाधीश +62 पहले दलित मुख्य न्यायाधीश है पहले मलयाली +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 वार्षिक बजट है सरकार का +63 6 जुलाई 2009 को हुआ उन्होंने पेश किया वार्षिक बजट +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +64 स्थानीय आबादी निर्भर है पर चाय का व्यापार +64 चाय का व्यापार आधार है स्थानीय आबादी +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी इसे +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +66 उन्हें नाम दिया गया है उत्कल मणि +66 उन्हें รู้จัก किया जाता है उत्कल मणि +67 कृपया देखें फ्रेंच फ्लेमिश को +67 कृपया जानकारी मांगता है अधिक जानकारी के लिए +67 अधिक जानकारी के लिए भाषा फ्रेंच फ्लेमिश +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +68 नदी प्रवाहित होता है पाकिस्तान +68 अंश में स्थित है पाकिस्तान +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +69 अंदरूनी भाग स्थान है लीबियाई रेगिस्तान का +69 मत्रूह मुहाफ़ज़ाह स्थित है लीबियाई रेगिस्तान का हिस्सा +69 सीवा नख़लिस्तान प्रकार है ओएसिस +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +70 बंगलुरु शहर स्थित है भारत में +70 बंगलुरु शहर है त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं कहानियों के लिए +71 कहानियों के लिए प्रसिद्ध ये +71 ये रहस्यमयी कहानियों के लिए +71 ये भयावह कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 उनका प्रकाशित कहानी संग्रह +72 उनका प्रकाशित निबंध संग्रह +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +72 कहानी संग्रह उनका प्रकाशित निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +73 पद्मनाभ दत्त ने लेखक है सुपद्य व्याकरण +73 सुपद्य व्याकरण भाषा है हि +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 इसके स्थित हैं फ्लोरिडा राज्य +74 इसके पश्चिम में अलबामा +74 इसके दक्षिण में फ्लोरिडा राज्य +74 पश्चिम में फ्लोरिडा राज्य स्थित हैं इसके +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +75 होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +76 निम्नलिखित सूचना नियम का सारांश है एक सरलीकृत प्रतिलिपि +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता is इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 5364 ईसा पूर्व पूर्व के ईसा मसीह के जन्म से +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +81 विश्वामित्र प्रायोजित सीता राम +81 सीता राम जयमाल प्राप्त करें +81 सीता राम वैदिक मन्त्रों श्रव्य +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर स्थान का नाम एजिंकोर्ट स्क्वायर +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 विभिन्न विभाग अध्यक्ष प्रत्येक भाग के अंतर्गत +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +84 एल्बम जारी किया गया 2006 के मध्य में +84 2006 के मध्य में เกิดขึ้น एल्बम +84 एल्बम से जारी किया गया 2006 के मध्य में एल्बम +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +85 उस दौर में was in दौर में +85 उनके सामने situation कोई और मानक नहीं थे , +85 सब कामचलाऊ व्यवस्था needed to manage उन्हें स्वयं करनी पड़ी +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 बहुत से विकासों ने बेहतर किया परिणामों को +86 1900 के आसपास प्रभावित थे निमोनिया से पीड़ित लोगों के लिये +86 निमोनिया से पीड़ित लोगों के लिये लाभ हुआ परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार संबंध सांप्रदायिक +87 आपके संबंध पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +88 संपर्क में भी संबंध मेसोथेलियोमा +88 मेसोथेलियोमा उत्पन्न संपर्क में भी +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- डू में सामना होता है दो प्राणियों का +89 इश -- एस में वास्तव में प्राणी +89 दो प्राणियों का सामना होता है इश -- डू में +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 ये तीनों अक्ष स्थित हैं उस तल में +90 ये तीनों अक्ष एक बिन्दु पर एकबिन्दुगामी भी +90 उस तल में आवश्यक है ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +91 दूध विपणन में विकासशील देशों में +91 किसानों के दूध विपणन +91 पुराने तरीके से तेजी से बदल रहे हैं +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 उन्होंने शुरुआत एक दीवाना था से +92 एक दीवाना था से शैली बोलीवुड +92 17 फ़रवरी 2012 को रिलीज़ किया गया अपने बोलीवुड करियर की शुरुआत +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को अपने बोलीवुड करियर की शुरुआत +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +93 प्रतिषेधात्मक उपचार के लिए इस रोग +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 प्रतिस्पर्धी टीम की राष्ट्रीयता +94 गाड़ी निर्माता की राष्ट्रीयता +94 चालक की राष्ट्रीयता +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +94 प्रतिस्पर्धी टीम की राष्ट्रीयता गाड़ी निर्माता +94 प्रतिस्पर्धी टीम की राष्ट्रीयता चालक +94 गाड़ी निर्माता की राष्ट्रीयता चालक +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +95 सड़क मार्ग सेवा प्रदान करता है रत्नागिरी के लिए +95 मुंबई से बस सेवा है रत्नागिरी के लिए +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +96 शिल्पी निर्माण करते थे सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द बनाने वाली है विधि +97 सरकारी इकाई प्रयोग में है यह शब्द +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +98 बलिया जिले में स्थित है उत्तर प्रदेश के +98 बलिया शहर से दूर है पश्चिम में +98 पश्चिम में स्थित है बलिया शहर से +98 यह स्थित है बलिया जिले में उत्तर प्रदेश के +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +99 उन्होने हत्या की उसेक बाद +99 उसेक बाद हत्या नहीं उन्होने +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति +100 पासा फेंककर स्थिति का निर्धारण +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा स्थिति का निर्धारण +101 हाइपरयूरीसेमिया , होता है मूल कारण +101 हाइपरयूरीसेमिया कारण है वात रोग +102 प्रसिद्ध है यही कारण +102 केरल प्रसिद्ध है विश्व भर में +102 केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 आयुर्वेदिक चिकित्सा शैली कारण है केरल की प्रसिद्धि +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +103 इसका स्थित है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 सिरमोर राज्य में स्थित है अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +104 दक्षिण भारत में स्थान है उन दिनों +104 परम्परागत चित्रकला का ही प्रकार है प्राधान्य +104 उन दिनों समय है परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 ये कहानियाँ परिवेश किसी देश +105 ये कहानियाँ समय हो सकती हैं +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +106 प्रकृति आधारित निर्माण आधारित है प्रकृति +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 रथयात्रा के हो गया देहांत +108 सन 1533 में देहांत 47 वर्ष की +108 47 वर्ष की property अल्पायु में +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +109 यह कहा जाता है इसे +109 तालाब में स्थान है यह +109 यह कहा जाता है तालाब में +109 यह देखा जाता है अक्सर इसे कहा जाता है यह +109 इसे यह कहा जाता है तालाब में +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 वे जीता यूरोपियन कप +110 वे स्थान ब्रिटेन +110 2008 में समय 2008 में +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप वे +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +111 मॉस स्थित है मिट्टी में +111 मिट्टी में मॉस +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का +112 महाभारत है प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार +112 महाभारत आधारित है प्राचीन इतिहास कथाओं उपदेशों आदि का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_original.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_original.txt new file mode 100644 index 0000000..843ace5 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_indie_converted_original.txt @@ -0,0 +1,342 @@ +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही +2 अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट +2 अखिल भारतीय पुलिस डयूटी मीट property ( 1958 से ) +3 विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा +3 उपक्रमों द्वारा property विभागों +3 विभागों property केन्द्रीय सरकार के +3 भारत सरकार के property केन्द्रीय सरकार के +3 उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के +3 विभागों property केन्द्रीय सरकार के भारत सरकार के +4 यह एजेंट मौजूद है बारह पुस्तकों +4 गुप्त नाम से property 007 के +4 बारह पुस्तकों property फ़्लेमिंग की +4 दो लघुकथाओं में property फ़्लेमिंग की +4 बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में +5 उन्होंने की एक पत्रिका ' साधु ' शुरू +5 01 अगस्त 1907 को की उन्होंने +5 एक पत्रिका ' साधु ' शुरू property अपनी +5 एक पत्रिका ' साधु ' शुरू उन्होंने की 01 अगस्त 1907 को +6 नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से +6 कंपनी में लागू किया गया है नवीनतम वेतनमानों को +6 01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में +7 सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर +7 सुनवाई property गोधरा ट्रेन कांड की +7 गोधरा ट्रेन कांड की property 01 जून : +7 साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के +7 सुनवाई property गोधरा ट्रेन कांड की 01 जून : +8 वे नियुक्त हुई न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई वे +8 न्यायाधीश property सर्वोच्च न्यायालय की +8 न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को +9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था +10 इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को +11 आंध्र ने पाया कर्नूल को +11 दर्जा पाया 1 अक्टूबर 1953 को +11 दर्जा property राज्य का +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को +12 ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड +12 दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +12 न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में +13 रॉबर्ट आइगर ने लिया स्थान +13 1 अक्टूबर को , लिया रॉबर्ट आइगर ने +13 स्थान property माइकल आइजनर का +13 स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को , +14 यह देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन से आजाद हुआ इंग्लैंड के +15 अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस +16 इसे घोषित किया गया 1 अप्रैल 1946 को +16 गोविन्द बल्लभ पन्त बने मुख्य मन्त्री +16 इसके पहले बने घोषित किया गया +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई +17 एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही +17 स्वतन्त्रता आन्दोलन के साथ ही property भारत के +18 एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 चेहरे पर दिखाई पड़ती थी कर्मा के +19 सोनू बन चुके हैं एक प्रमुख हस्ती +19 तब से बन चुके हैं अब तक , +19 भारतीय संगीत जगत में बन चुके हैं अब तक , +19 तब से बन चुके हैं अब तक , भारतीय संगीत जगत में +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर +21 प्राग को property राजधानी +21 राजधानी property चेकोस्लोवाकिया की +21 प्राग को property राजधानी चेकोस्लोवाकिया की +22 वे प्रथम भारतीय हैं क्षेत्र में +22 पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से +23 वित्तीय सहायता भी दी जाती है पूरी करने तक +23 सभी बच्चों को पूरी करने तक दी जाती है +23 पूरी करने तक दी जाती है पढ़ाई स्कूल की +24 यह स्थान दर्शनीय केन्द्र है आज भी +24 दर्शनीय केन्द्र property लोगों के लिए +25 पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में +25 वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही +25 इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा +26 आत्मा property शब्द की +27 उल्लेख मिलता है पांच नदियों में से +27 ऋग्वेद में मिलता है उल्लेख +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से +27 उल्लेख property चार का +27 पांच नदियों में से उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +29 तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 तुलनात्मक अध्ययन property शिक्षा का +30 9110 भारतीय रेल द्वारा संचालित +31 यह शहर प्रमुख हिल स्टेशन है वर्तमान में +31 प्रमुख हिल स्टेशन property पश्चिम बंगाल का +32 सिलकोट , एक गाँव है गंगोलीहाट तहसील में +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत +32 एक गाँव property पिथोरागढ जिले का +32 उत्तराखण्ड राज्य के अन्तर्गत property भारत के +32 पिथोरागढ जिले का property कुमाऊँ मण्डल के +32 उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का +32 एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के +32 एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के +33 तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +33 तकनीकी केंद्र को property एयर लाइन के +34 दोनों मामले पेश हुए सर लुइस शर्ट +34 सर लुइस शर्ट property मुख्य न्यायाधीश +34 विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश +34 सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने +35 मृत्यु हो गई किसी बीमारी की वजह से +35 28 नवम्बर 1694 को हो गई मृत्यु +35 मृत्यु property बाशो की +35 किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम ने सोचा एक हल +36 तो नहीं हुआ कोई मतैक्य +37 सन 1696 में मुकाबला हुआ फिर एक बार +37 शाही सेना से मुकाबला हुआ फिर पंचायती सेना का +38 मर्लगोंड , एक गाँव है कुभीर मण्डल में +38 एक गाँव property अदिलाबादु जिले का +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के +38 एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के +38 अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के +39 अनेक ग्रन्थ लिखे गये बाद में +39 दर्शन पक्ष पर लिखे गये व्याकरण के +40 निदेशक बने 1975 में +40 इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में +41 नाम रखा गया नाम पर +41 नाम पर property उनके +41 नाम property इस जगह का +42 कुछ लोग पसंद करते हैं रहना +42 इस आपाधापी से दूर रहना घर पर ही +42 घर पर ही property अपने +43 मार्च 2001 में वापसी हुई फिर एक बार +43 अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी +43 अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को +44 इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को +44 सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की +45 वह संपर्क में है इस तकनीक के लिए +45 संपर्क में property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में +46 सन 1961 में सम्मानित किया गया था पद्म भूषण से +46 क्षेत्र में property चिकित्सा विज्ञान के +47 उन्होने संगीत रचना की मराठी के अतिरिक्त +47 हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने +47 मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी +48 औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में +48 औद्योगिक रूप से property काइटिन का +49 सभी पर्व property हिंदूओं +49 सभी पर्व property मुस्लिमों के +49 हिंदूओं सभी पर्व property मुस्लिमों के +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया अमेरिका , +50 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका , 20 जुलाई 2012 को +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही +50 अमेरिका , 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +50 संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में +51 यह लगाया जाता है हर साल +51 फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के +52 द्रौपदी ने वरमाला डाल दिया गले में +52 गले में property अर्जुन के +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 व्यापक उपयोग उल्लेखनीय है भोजन में +54 भोजन में property तटीय कर्नाटक के +54 व्यापक उपयोग property समुद्री भोजन , +54 व्यापक उपयोग property नारियल +54 व्यापक उपयोग property नारियल तेल का +54 समुद्री भोजन , व्यापक उपयोग property नारियल +54 समुद्री भोजन , व्यापक उपयोग property नारियल तेल का +54 नारियल व्यापक उपयोग property नारियल तेल का +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी +55 उपेक्षित जीवविज्ञान उद्यान को भी property वहां के +56 तारों को कहते हैं श्रेणी के +56 श्रेणी के property सिफियस चतुर्थ की +57 यह प्रसिद्ध है नाम से +57 नाम से property ' प्राथमिक विधि अध्यारोप ' के +58 अधिक संपर्क रहा है चीन +58 अधिक संपर्क रहा है जापान से +58 अधिक संपर्क property इस देश का +58 चीन अधिक संपर्क रहा है जापान से +59 कश्यप ने पता लगाया शेष +59 कुछ घड़ी शेष हैं आयु में +60 मोमबत्तियाँ भी प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +61 उन्होंने लिखे हैं कहानियाँ +61 इस शैली में लिखे हैं उन्होंने +61 उन्होंने लिखे हैं उपन्यास +61 कहानियाँ उन्होंने लिखे हैं इस शैली में +61 कहानियाँ उन्होंने लिखे हैं उपन्यास +61 इस शैली में लिखे हैं उन्होंने उपन्यास +62 वो मुख्य न्यायाधीश हैं पहले दलित +63 उन्होंने पेश किया वार्षिक बजट +63 6 जुलाई 2009 को पेश किया उन्होंने +63 वार्षिक बजट property सरकार का +63 वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से +64 व्यापार पर निर्भर रहती है चाय के +65 इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +66 उन्हें जाना जाता है नाम से +66 नाम से property उत्कल मणि के +67 कृपया देखें फ्रेंच फ्लेमिश को +68 ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 ज्यादातर अंश property इस नदी का +69 अंदरूनी भाग हिस्सा है , लीबियाई रेगिस्तान का +69 अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का +69 सीवा नख़लिस्तान स्थित है जिसमें +69 सीवा नख़लिस्तान property ( ओएसिस ) +70 राजधानी बंगलुरु शहर है , जो अग्रणी योगदानकर्त्ता +70 त्वरित आर्थिक हो रही भारत में +71 ये प्रसिद्ध हैं कहानियों के लिए +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका +72 दो निबंध संग्रह प्रकाशित हुए हैं उनका +72 एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी ) +74 फ्लोरिडा राज्य स्थित हैं पश्चिम में +74 स्थित property अलबामा +74 स्थित property दक्षिण में +74 अलबामा स्थित property दक्षिण में +75 यह क्रिकेट मैदान स्थित है होबार्ट शहर में +75 होबार्ट शहर में property ऑस्ट्रेलिया के +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है +78 कुछ लोगों ने विभाजित किया है इसे +78 दृष्टि से विभाजित किया है इंडोचायनीज़ +78 दृष्टि से property विशेषता की +78 दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +80 वर्षों को दर्शाता है 5364 ईसा पूर्व +80 वर्षों को property जन्म से पूर्व के +80 जन्म से पूर्व के property ईसा मसीह के +80 वर्षों को property जन्म से पूर्व के ईसा मसीह के +81 विश्वामित्र द्वारा पहनाती हैं जयमाल +81 सीता राम को पहनाती हैं स्वरघोष के मध्य +81 स्वरघोष के मध्य property वैदिक मन्त्रों के +82 विभिन्न स्रोत बटे हुए हैं इस तथ्य पर +82 इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर +82 इस तथ्य पर पड़ा आखिर नाम +82 इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम property स्थान का +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम +82 एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में +82 नाम इस तथ्य पर पड़ा आखिर किस वर्ष में +83 विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत +83 विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष +84 एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद , +84 एल्बम से जारी किया गया 2006 के मध्य में +85 उस दौर में कोई और मानक नहीं थे , उनके सामने +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 बहुत से विकासों ने बेहतर कर दिया था परिणामों को +86 1900 के आसपास बेहतर कर दिया था निमोनिया से +86 पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से +86 1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +87 प्रचार बहुत योगदान है पिता के समान +87 बहुत योगदान property आपका भी +87 प्रसार में बहुत योगदान है पिता के समान +87 प्रचार बहुत योगदान है पिता के समान प्रसार में +88 मामले लेखबद्ध किये गये हैं उदाहरणार्थ , +88 संपर्क में भी लेखबद्ध किये गये हैं केवल 1 -- 3 माह के +88 मामले property उत्पन्न होने के +88 मेसोथेलियोमा उत्पन्न होने के मामले +89 प्राणी मिलते नहीं है इश -- एस में +89 वास्तव में मिलते नहीं है प्राणी +89 इश -- एस में सामना होता है , इश -- डू में +89 इश -- एस में सामना होता है , दो प्राणियों का +89 इश -- एस में प्राणी मिलते नहीं है वास्तव में +89 इश -- डू में इश -- एस में सामना होता है , दो प्राणियों का +90 ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी +90 उस तल में होने चाहिये ये तीनों अक्ष +90 एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में +91 पुराने तरीके बदल रहे हैं विकासशील देशों में , +91 अपने ही पड़ोस में बदल रहे हैं तेजी से +91 पुराने तरीके property दूध विपणन के +92 उन्होंने एक दीवाना था से शुरुआत +92 शुरुआत property बोलीवुड करियर की +92 शुरुआत रिलीज़ किया गया जिसे +92 शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +92 जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को +93 बचाना है अत्यंत आवश्यक +93 खाद्य एवं पेय पदार्थो को बचाना मक्खियों से +94 यह , संदर्भित करता है , राष्ट्रीयता को +94 राष्ट्रीयता को संदर्भित करता है , गाड़ी निर्माता +94 राष्ट्रीयता को property प्रतिस्पर्धी टीम की +94 राष्ट्रीयता को संदर्भित करता है , चालक की +94 यह , संदर्भित करता है , राष्ट्रीयता को गाड़ी निर्माता +94 यह , संदर्भित करता है , राष्ट्रीयता को चालक की +94 गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है , चालक की +95 सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए +95 सीधी बस सेवा property मुंबई से +96 छपाई में प्रयोग होता था , ब्लाकों का +96 ब्लाकों का जिसका निर्माण करते थे शिल्पी -- सुथार +97 यह शब्द आता है सरकारी इकाई के लिये +97 प्रयोग में आता है सरकारी इकाई के लिये +97 विधि बनाने वाली सरकारी इकाई के लिये +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +98 यह स्थित है बलिया जिले में +98 बलिया जिले में property उत्तर प्रदेश के +98 बलिया शहर से स्थित है पश्चिम में +99 उन्होने हत्या नहीं करवाई उसेक बाद +99 हत्या नहीं करवाई property पिता की +100 सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण +100 प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +100 निर्धारण property स्थिति का +100 निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा +101 हाइपरयूरीसेमिया , होता है मूल कारण +102 प्रसिद्ध है यही कारण +103 उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का +103 उदगम स्थान property इसका +103 अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के +104 दक्षिण भारत में प्राधान्य था उन दिनों +104 प्राधान्य property परम्परागत चित्रकला का ही +105 ये कहानियाँ हो सकती हैं किसी देश +105 ये कहानियाँ हो सकती हैं समय की +105 किसी देश ये कहानियाँ हो सकती हैं समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण +107 2010 को ' ' दर्शन -- परिषद् ' ' के सम्पन्न हुआ नाम से +108 यहीं पर देहांत हो गया सन 1533 में +108 अल्पायु में देहांत हो गया दिन +108 उनका देहांत हो गया दिन +108 अल्पायु में property 47 वर्ष की +108 दिन property रथयात्रा के +108 अल्पायु में देहांत हो गया दिन उनका +109 इसे कहा जाता है यह देखा जाता है अक्सर +109 तालाब में देखा जाता है अक्सर कहा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने वे +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 तीसरे ब्रिटिश प्रबंधक वे बने 2008 में +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने +110 यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +110 जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर +111 मॉस से जल रोक रखा जाता है मिट्टी में +112 वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का +112 वर्तमान रूप property महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_keshav.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_keshav.txt new file mode 100644 index 0000000..631ee11 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_keshav.txt @@ -0,0 +1,278 @@ +1 शक्तिरूपी माया की सििद्ध होती है देखकर कार्यरूप जगत को +1 शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर +1 कार्यरूप जगत को देखकर शक्तिरूपी माया की सििद्ध होती है x +2 अखिल भारतीय पुलिस आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +3 x परीक्षण करना विवादित अंगुलि चिह्नों का +3 विवादित अंगुलि चिह्नों का परीक्षण करना x +3 विवादित अंगुलि चिह्नों का परीक्षण करना भेजे गए केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट मौजूद है x +4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +5 अपनी एक पत्रिका शुरू x +5 उन्होंने शुरू की अपनी एक पत्रिका +5 01 अगस्त 1907 को शुरू की अपनी एक पत्रिका +6 नवीनतम वेतनमानों को लागू किया गया है कंपनी में +6 01 अप्रैल 2009 से लागू किया गया है कंपनी में +6 कंपनी में नवीनतम वेतनमानों को लागू किया गया है x 01 अप्रैल 2009 से +7 गोधरा ट्रेन कांड की सुनवाई x अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई +7 गोधरा ट्रेन कांड की सुनवाई शुरू हुई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर +8 वे नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश +8 06 अक्टूबर 1989 को नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश +8 वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुईं x 06 अक्टूबर 1989 को +9 06 प्रतिशत थे ऐसे लोग +9 06 प्रतिशत थे जिनका कोई विशेष धर्म नहीं था +10 पहला डाक टिकट जारी किया गया +10 पहला डाक टिकट जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +11 कर्नूल ने अपनी राजधानी के साथ राज्य का दर्जा पाया +11 आंध्र पाया ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा +11 1 अक्टूबर 1953 को पाया ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा +12 दूसरा सीज़न ज़ारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया में +12 1 अक्टूबर 2008 को ज़ारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया में +12 दूसरा सीज़न ज़ारी 1 अक्टूबर 2008 को +13 रॉबर्ट आइगर स्थान लिया ने सीईओ के रूप में माइकल आइजनर का +13 1 अक्टूबर को स्थान लिया ने सीईओ के रूप में माइकल आइजनर का +13 रॉबर्ट आइगर x ने सीईओ के रूप में माइकल आइजनर का स्थान लिया +13 1 अक्टूबर को x ने सीईओ के रूप में माइकल आइजनर का स्थान लिया +14 यह देश इंग्लैंड के शासन से आजाद हुआ +14 यह देश हुआ इंग्लैंड के शासन से आजाद +14 1 अक्टूबर को हुआ इंग्लैंड के शासन से आजाद +15 चन्द्रसिंह भेज दिया गया को अंग्रेजों द्वारा फ्रांस +15 1 अगस्त 1915 में भेज दिया गया को अंग्रेजों द्वारा फ्रांस +15 चन्द्रसिंह को अंग्रेजों द्वारा फ्रांस भेज दिया गया +16 इसे घोषित किया गया स्वायत्तशासी प्रान्त +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविंद बल्लभ पंत बने इसके पहले मुख्य मंत्री +17 एक आंदोलन आरम्भ हुई भारत के स्वतंत्रता आंदोलन के साथ ही +17 एक आंदोलन आरम्भ हुआ जो भारत के स्वतंत्रता आंदोलन के साथ ही आरम्भ हुआ +18 कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही +18 एक अनूठी आभा दिखाई पड़ती थी कर्मा के चेहरे पर +18 बाल्यकाल से ही दिखाई पड़ती थी कर्मा के चेहरे पर +19 सोनू हैं भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके +19 तब से अब तक हैं भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके +19 सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +19 तब से अब तक बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +20 कोप्पेन मौसम वर्गीकरण है x +20 कोप्पेन मौसम वर्गीकरण है मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण +20 वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण प्रयोग किया जाने मौसम आकलन के लिए +21 सोवियत दस्तों ने x चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया +21 सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +21 बर्लिन पर क़ब्ज़ा करने के बाद आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को +22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे हैं प्रथम भारतीय +22 वे प्रथम भारतीय प्राप्त करने वाले योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान +22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं x x +23 सभी बच्चों x को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता दी जाती है +23 सभी बच्चों भी दी जाती है को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता +23 वित्तीय सहायता पूरी करने तक स्कूल की पढ़ाई +24 यह स्थान है क्षेत्र के लोगों के लिए दर्शनीय केंद्र +24 यह स्थान है क्षेत्र के लोगों के लिए दर्शनीय केंद्र +24 आज भी है क्षेत्र के लोगों के लिए दर्शनीय केंद्र +25 पाणिनीय व्याकरण ही वेदाङ्ग का +25 पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +26 मैं समझकर इस श्रेष्ठ तत्त्व की उपासना करता हूं +26 मैं समझकर इस श्रेष्ठ तत्त्व की उपासना करता हूं शब्द की आत्मा +27 पांच नदियां बहने वाली हिमाचल प्रदेश में +27 पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख मिलता है ऋग्वेद में +28 उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से +28 उन्होंने x बच्चे को देने से स्पष्ट इंकार कर दिया +28 उन्होंने देने से स्पष्ट इंकार कर दिया बच्चे को +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है x +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +30 गुजरात क्वीन एक्स्प्रेस है x +30 एक मेल एक्स्प्रेस ट्रेन संचालित भारतीय रेल द्वारा +30 गुजरात क्वीन एक्स्प्रेस है 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन +31 वर्तमान में यह शहर है पश्चिम बंगाल का प्रमुख हिल स्टेशन +31 में यह शहर है पश्चिम बंगाल का प्रमुख हिल स्टेशन +31 वर्तमान है पश्चिम बंगाल का प्रमुख हिल स्टेशन +32 सिलकोट है भारत के उत्तराखंड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव +32 गंगोलीहाट तहसील है भारत के उत्तराखंड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव +33 एयर लाइन के तकनीकी केंद्र को है तिरुवनंतपुरम में स्थानापन्न करना +33 एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में +34 दोनों मामले पेश हुए चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +34 सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए +35 बाशो की मृत्यु हो गई किसी बीमारी की वजह से 28 नवम्बर 1694 को +35 बाशो की मृत्यु 28 नवम्बर 1694 को हो गई +36 विक्रम सोचा ने एक हल +36 जब कोई मतैक्य नहीं हुआ तो सोचा ने एक हल +36 कोई मतैक्य नहीं हुआ x +36 विक्रम ने एक हल सोचा +37 शाही सेना से पंचायती सेना का मुकाबला हुआ x +37 x मुकाबला हुआ शाही सेना से पंचायती सेना का +37 सन 1696 में मुकाबला हुआ शाही सेना से पंचायती सेना का +38 मर्लगोंड है अदिलाबादु जिले का एक गाँव +38 मर्लगोंड है x +39 अनेक ग्रन्थ लिखे गए में व्याकरण के दर्शन पक्ष पर +39 बाद लिखे गए में व्याकरण के दर्शन पक्ष पर +39 व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गए x +40 x बने इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक +40 1975 में बने इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक +40 नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने x +41 उनके नाम पर इस जगह का नाम रखा गया रुस्तम खान +41 रुस्तम खान का नाम रुस्तम खान रखा गया +42 कुछ लोग रहना पसंद करते हैं अपने घर पर ही +42 कुछ लोग पसंद करते हैं इस आपाधापी से दूर अपने घर पर ही रहना +43 उनकी वापसी हुई अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +43 मार्च 2001 में हुई अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +43 मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई x x +44 इसकी रचना की आधारशिला रखी गई थी सर वाईकर के द्वारा +45 इस तकनीक के लिए वह है विभिन्न टेलीविजन कंपनियों से संपर्क में +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था पद्म भूषण से +46 को सन 1961 में सम्मानित किया गया था पद्म भूषण से +47 उन्होने संगीत रचना की हिन्दी फिल्मों के लिए +47 उन्होने x हिन्दी फिल्मों के लिए संगीत रचना की +48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में +48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है x x +49 हिंदूओं और मुस्लिमों के सभी पर्व मनाए जाते हैं x +49 हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं x +50 द डार्क नाईट राइसेस रिलीज़ किया गया को अमेरिका, संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को +50 द डार्क नाईट राइसेस रिलीज़ अमेरिका, संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया +51 यह है जर्मनी के फ्रैंकफर्ट शहर में लगाया जाता +51 हर साल है जर्मनी के फ्रैंकफर्ट शहर में लगाया जाता +51 यह लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर में +51 हर साल लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर में +52 अर्जुन बढ़ रहा है आगे +52 द्रौपदी डाल दिया ने अर्जुन के गले में वरमाला +52 द्रौपदी x ने अर्जुन के गले में वरमाला डाल दिया +53 यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है +53 यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान +54 तटीय कर्नाटक के भोजन में समुद्री भोजन, नारियल और नारियल तेल का व्यापक उपयोग है उल्लेखनीय +54 तटीय कर्नाटक के भोजन में समुद्री भोजन, नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है +55 कार्ल सुधारा ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को +55 कार्ल ने सुधारा x +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +57 प्राथमिक विधि प्रसिद्ध है +57 यह है प्राथमिक विधि अध्यारोप के नाम से प्रसिद्ध +58 चीन तथा जापान से इस देश का अधिक संपर्क रहा है x +59 कश्यप गणना करके पता लगाया ने तत्काल ज्योतिष +59 कश्यप पता लगाया ने तत्काल ज्योतिष गणना करके +59 कुछ घड़ी शेष हैं राजा की आयु में +59 राजा की आयु में कुछ घड़ी शेष हैं x +60 अभ्रक आदि की खानों में मोमबत्तियाँ प्रयुक्त होती हैं +60 अभ्रक आदि की खानों प्रयुक्त होती है में मोमबत्तियाँ +61 उन्होंने लिखे हैं कहानियाँ और उपन्यास +61 इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं x x +62 वो हैं पहले दलित और पहले मलयाली मुख्य न्यायाधीश +63 उन्होंने पेश किया सरकार का वार्षिक बजट +63 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट +63 सरकार का वार्षिक बजट पेश किया +64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती +64 स्थानीय आबादी रहती है लगभग पूरी तरह से चाय के व्यापार पर निर्भर +65 इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में +66 उत्कल मणि को उत्कल मणि के नाम से जाना जाता है +66 उन्हें जाना जाता है उत्कल मणि के नाम से +67 कृपया देखें फ्रेंच फ्लेमिश को +67 अधिक जानकारी के लिए कृपया फ्रेंच फ्लेमिश को देखें +68 इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 इस नदी का ज्यादातर अंश है पाकिस्तान में प्रवाहित होता +69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग है लीबियाई रेगिस्तान का हिस्सा +69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग है x +69 लीबियाई रेगिस्तान भी स्थित है में सीवा नख़लिस्तान +70 त्वरित आर्थिक एवं प्रौद्योगिकी हो रही भारत में +70 बंगलुरु शहर है x +70 राज्य की राजधानी है बंगलुरु शहर +71 ये हैं अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध +72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित x +72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं x +73 पद्मनाभ दत्त ने लिखा है x +73 पद्मनाभ दत्त लिखा है ने सुपद्य व्याकरण +74 अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं x +74 इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं x +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +76 निम्नलिखित सूचना है x +76 निम्नलिखित सूचना है नियम का एक सरलीकृत सारांश +76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि +77 आत्यन्तिक प्रलय कहते हैं कि योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं +77 आत्यन्तिक प्रलय कहते हैं योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को +77 आत्यन्तिक प्रलय लीन हो गया योगीजनों के ज्ञान के द्वारा ब्रह्म में +78 जंगलों की विशेषता की दृष्टि से कुछ लोगों विभाजित किया है ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है x x +79 प्रयोगशील प्रवृत्तियाँ लगी होंगी x +79 प्रयोगशील प्रवृत्तियाँ लगी होंगी उनको प्रश्रय देने +79 पर लगी होंगी उनको प्रश्रय देने +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +79 पर प्रश्रय देने लगी होंगी उनको +80 5364 ईसा दर्शाता है पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को +81 सीता राम पहनाती हैं +81 सीता राम पहनाती हैं को जयमाल +82 विभिन्न स्रोत बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा +82 स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +82 स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +82 आखिर किस वर्ष में पड़ा एजिंकोर्ट स्क्वायर +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं +84 एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +84 एकलों के बीच एक लंबे अंतराल के बाद जारी किया गया 2006 के मध्य में +84 एल्बम से तीसरा कट जारी 2006 के मध्य में +85 सब कामचलाऊ व्यवस्था x उन्हें स्वयं करनी पड़ी +85 उनके सामने थे कोई और मानक नहीं +85 सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें +86 1900 के आसपास बहुत से विकासों ने x निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था +86 1900 के आसपास बहुत से विकासों बेहतर कर दिया था ने निमोनिया से पीड़ित लोगों के लिये परिणामों को +86 लोग पीड़ित निमोनिया से +87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है x x +87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है x +88 मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किए गए हैं केवल 1 -- 3 माह के संपर्क में +88 केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किए गए हैं x x +88 मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किए गए हैं केवल 1 -- 3 माह के संपर्क में +89 प्राणी मिलते नहीं हैं इश -- एस में +89 इश -- एस में प्राणी मिलते x +89 इश -- डू सामना होता है में दो प्राणियों का +90 ये तीनों अक्ष x उस तल में एकबिंदुगामी भी होने चाहिए +90 ये तीनों अक्ष भी होने चाहिए उस तल में एकबिंदुगामी +91 अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं x +91 अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके x तेजी से बदल रहे हैं +92 एक दीवाना रिलीज़ किया गया था 17 फ़रवरी 2012 को +92 एक दीवाना रिलीज़ x +92 उन्होंने शुरुआत की अपने बोलीवुड करियर की +93 इस रोग के प्रतिषेधात्मक उपचार में भी है मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक +93 इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना है अत्यंत आवश्यक +93 इस रोग के प्रतिषेधात्मक उपचार में भी बचाना अत्यंत आवश्यक है मक्खियों से खाद्य एवं पेय पदार्थो को +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता को +94 प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है, न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को संदर्भित करता है कि गाड़ी निर्माता या चालक की राष्ट्रीयता को +95 सड़क मार्ग है रत्नागिरी के लिए मुंबई से सीधी बस सेवा +96 x निर्माण करने वाले लकड़ी के ब्लाकों का प्रयोग होता था शिल्पी का +96 छपाई का प्रयोग होता था में लकड़ी के ब्लाकों +96 लकड़ी के ब्लाकों का प्रयोग शिल्पी करते थे +97 यह शब्द आता है सरकारी इकाई के लिये प्रयोग में +97 यह शब्द है सरकारी इकाई के लिये प्रयोग में आता +97 वाली सरकारी इकाई बनाने विधि +98 यह स्थित है उत्तर प्रदेश के बलिया जिले में +99 उन्होने हत्या नहीं करवाई पिता की +99 उसेक बाद हत्या नहीं करवाई पिता की +99 अन्य सम्राट किया करते थे x +99 अन्य सम्राट किया x +100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण फेंककर किया जाता है पासा +100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण किया जाता है x +100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है +101 हाइपरयूरीसेमिया x वात रोग का मूल कारण होता है +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +102 विश्व भर में केरल प्रसिद्ध है +102 विश्व भर में केरल है अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध +103 इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 दक्षिण भारत में था परम्परागत चित्रकला का प्राधान्य +104 उन दिनों था परम्परागत चित्रकला का प्राधान्य +104 दक्षिण भारत में था परम्परागत चित्रकला का ही प्राधान्य +104 उन दिनों था परम्परागत चित्रकला का ही प्राधान्य +105 ये कहानियाँ हैं किसी देश या समय की हो सकती +105 ये कहानियाँ हो सकती हैं किसी देश या समय की +106 निम्नलिखित कारण हैं जो प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं +106 निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को +107 2010 को दर्शन परिषद् के नाम से +107 दर्शन संपन्न हुआ परिषद् के नाम से +107 2010 को संपन्न हुआ परिषद् के नाम से +108 उनका देहांत हो गया रथयात्रा के दिन +108 सन 1533 में 47 वर्ष की अल्पायु में हो गया रथयात्रा के दिन +108 उनका देहांत हो गया सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन +109 यह देखा जाता है तालाब में अक्सर +109 इसे कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है +109 इसे भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 2008 में बने तीसरे ब्रिटिश प्रबंधक +110 वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता +110 तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप +110 ने एकाधिक अवसर पर जीता यूरोपियन कप +111 जल रोक रखा जाता है मॉस से मिट्टी में +111 मॉस से मिट्टी में जल रोक रखा जाता है x x +112 महाभारत का वर्तमान रूप है प्राचीन इतिहास कथाओं उपदेशों आदि का भंडार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_multi2oie.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_multi2oie.txt new file mode 100644 index 0000000..9b89425 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_multi2oie.txt @@ -0,0 +1,59 @@ +6 कंपनी में नवीनतम वेतनमानों लागू किया +7 ट्रेन कांड की सुनवाई शुरू के साबरमती केंद्रीय जेल के अंदर +9 06 प्रतिशत लोग थे ऐसे जिनका कोई विशेष धर्म नहीं था +9 विशेष धर्म था कोई नहीं +11 कर्नूल राजधानी पाया अपनी राज्य +15 अन्य गढ़वाली सैनिकों अंग्रेजों द्वारा भेज दिया फ्रांस +16 1 अप्रैल 1946 इसे घोषित किया स्वायत्तशासी प्रान्त +16 गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई +17 आन्दोलन भारत स्वतन्त्रता हुई आन्दोलन +20 मौसम वर्गीकरण मौसम सबसे अधिक मौसम वर्गीकरण प्रयोग जाने +21 सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया +21 सोवियत दस्तों चेकोस्लोवाकिया की राजधानी प्राग आज़ाद +25 पाणिनीय व्याकरण करता का प्रतिनिधित्व +26 शब्द की आत्मा ही श्रेष्ठ तत्त्व +27 नदियों चार का उल्लेख ऋग्वेद +28 बच्चे को कर से स्पष्ट इंकार +29 तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों +30 भारतीय रेल एक द्वारा मेल एक्स्प्रेस ट्रेन +30 भारतीय रेल संचालित एक मेल एक्स्प्रेस ट्रेन +37 सन एक बार फिर शाही सेना से पंचायती सेना हुआ मुकाबला +40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान बने निदेशक +46 सन भूषण +47 मराठी हिन्दी फिल्मों के लिए भी संगीत रचना की +49 हिंदूओं और मुस्लिमों के सभी पर्व कर मनाए +51 जर्मनी लगाया शहर +52 द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया +53 त्यौहार उत्तर भारत मनाया राम नवमी के दौरान जाता +55 कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा +58 इस देश रहा अधिक +59 कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा आयु में कुछ घड़ी +59 पता कि राजा की आयु में कुछ घड़ी शेष हैं +63 सरकार का पेश वार्षिक +66 उन्हें जाना मणि के नाम जाता +68 नदी अंश पाकिस्तान होता +72 कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए +73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा +73 15 वीं शताब्दी लिखा सुपद्य व्याकरण +75 यह क्रिकेट मैदान स्थित के होबार्ट शहर +78 कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया +78 इसे विभाजित और इंडोमलायन उपक्षेत्रों +82 विभिन्न स्रोत इस तथ्य हुए हैं किस वर्ष स्थान नाम +82 वर्ष स्थान का नाम पड़ा स्क्वायर +83 विभिन्न विभाग होते अलगअलग अध्यक्ष +84 एल्बम से तीसरा कट जारी के मध्य में +85 उनके और नहीं कोई मानक +85 उनके सामने और थे कोई मानक +92 17 2012 गया +94 प्रतिस्पर्धी टीम संदर्भित करता राष्ट्रीयता +97 विधि सरकारी बनाने इकाई में +99 पिता की हत्या नहीं करवाई किया +99 हत्या नहीं पिता की +99 करवाई पिता की हत्या नहीं +99 अन्य सम्राट किया करते थे +101 वात रोग कारण होता मूल +109 इसे कहा जाता तालाब +110 2008 वे बने तीसरे ब्रिटिश प्रबंधक जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता +110 ब्रिटिश प्रबंधक एकाधिक अवसर पर यूरोपियन कप जीता +110 पर जीता अवसर यूरोपियन कप diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_predpatt.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_predpatt.txt new file mode 100644 index 0000000..bb116f5 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/benchie_predpatt.txt @@ -0,0 +1,48 @@ +4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट में मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं +5 01 अगस्त 1907 को अपनी एक पत्रिका ' साधु ' शुरू की उन्होंने +8 वे की न्यायाधीश नियुक्त हुई सर्वोच्च न्यायालय +11 आंध्र ने कर्नूल +13 1 अक्टूबर को , ने सीईओ के रूप में माइकल आइजनर का स्थान लिया रॉबर्ट आइगर +14 1 अक्टूबर , 1960 को इंग्लैंड के शासन से आजाद हुआ यह देश +18 बाल्यकाल से कर्मा के चेहरे पर दिखाई पड़ती थी एक अनूठी आभा +19 तब से अब तक , भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं सोनू +21 बर्लिन पर क़ब्ज़ा करने के बाद ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया सोवियत दस्तों +22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे +25 इस सम्बन्ध में वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से ऋग्वेद में मिलता है चार का उल्लेख +34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले +35 बीमारी की वजह से 28 नवम्बर 1694 को हो गई बाशो की मृत्यु +36 जब नहीं हुआ कोई मतैक्य +36 तो ने एक हल सोचा विक्रम +40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में बने निदेशक +47 मराठी के अतिरिक्त हिन्दी फिल्मों के लिए संगीत रचना की उन्होने +54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +57 यह से प्रसिद्ध है प्राथमिक विधि अध्यारोप ' के नाम +58 चीन तथा जापान से रहा है इस देश का अधिक संपर्क +59 राजा की आयु में कुछ घड़ी +60 अभ्रक की खानों में प्रयुक्त होती है मोमबत्तियाँ +61 इस शैली में कहानियाँ और उपन्यास लिखे हैं उन्होंने +63 6 जुलाई 2009 को सरकार का वार्षिक बजट पेश किया उन्होंने +67 अधिक जानकारी के लिए , फ्रेंच फ्लेमिश को देखें कृपया +69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग , जिसमें सीवा नख़लिस्तान ( ओएसिस ) स्थित है का हिस्सा है लीबियाई रेगिस्तान +69 जिसमें स्थित है सीवा नख़लिस्तान ( ओएसिस +71 ये के लिए प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों +75 यह क्रिकेट मैदान में स्थित है ऑस्ट्रेलिया के होबार्ट शहर +78 जंगलों की विशेषता की दृष्टि से ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है कुछ लोगों +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको +81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल +82 स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +83 प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग जिनके अलगअलग अध्यक्ष होते हैं +86 1900 के आसपास ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था बहुत विकासों +89 इश -- एस में वास्तव में मिलते नहीं है प्राणी +91 विकासशील देशों में , अपने पड़ोस में तेजी से बदल रहे हैं किसानों के दूध विपणन के पुराने तरीके +93 इस रोग के प्रतिषेधात्मक उपचार में अत्यंत आवश्यक है मक्खियों से खाद्य एवं पेय पदार्थो को बचाना +94 यह प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता या चालक की राष्ट्रीयता को +96 जिसका निर्माण करते थे शिल्पी -- सुथार +98 यह में स्थित है उत्तर प्रदेश के बलिया जिले +99 उसेक बाद जैसाकि अन्य सम्राट किया करते थे उन्होने +101 हाइपरयूरीसेमिया का मूल कारण होता है वात रोग +103 इसका उदगम स्थान के नीचे का ढलुवा भाग है सिरमोर राज्य के अंतगर्त हिमालय पर्वत +110 2008 में तीसरे ब्रिटिश प्रबंधक बने वे +112 महाभारत का वर्तमान रूप का भण्डार है प्राचीन इतिहास कथाओं उपदेशों diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/convert.py b/GSoC25_H/IndIE/hindi-benchie/extractions/convert.py new file mode 100644 index 0000000..4466a7b --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/convert.py @@ -0,0 +1,94 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import pandas as pd +import sys +import os + +def convert_hdf5_to_tab_format(hdf5_file='benchie_indie_new.h5', lang='hi', output_file='benchie_indie_converted_llm.txt'): + """ + Convert HDF5 extractions to tab-separated format expected by code.py + + Args: + hdf5_file: Path to the HDF5 file containing extractions + lang: Language key for the HDF5 data + output_file: Output file path for tab-separated data + """ + + print(f"Reading HDF5 file: {hdf5_file}") + + try: + # Read the HDF5 file + df = pd.read_hdf(hdf5_file, key=lang) + print(f"Loaded {len(df)} sentences") + + # Open output file for writing + with open(output_file, 'w', encoding='utf-8') as f: + + # Process each row + for idx, row in df.iterrows(): + sentence_number = str(idx + 1) # 1-indexed sentence numbers + + # Process regular extractions + if isinstance(row['extractions'], list) and len(row['extractions']) > 0: + # extractions is [[extraction1, extraction2, ...]] + for extraction_list in row['extractions']: + if isinstance(extraction_list, list): + for ext in extraction_list: + if isinstance(ext, (list, tuple)) and len(ext) >= 3: + # Each extraction is [arg1, relation, arg2] + arg1 = str(ext[0]).strip() + relation = str(ext[1]).strip() + arg2 = str(ext[2]).strip() + # Format: sentence_number \t arg1 \t relation \t arg2 + line = f"{sentence_number}\t{arg1}\t{relation}\t{arg2}" + f.write(line + '\n') + + # Process augmented extractions + if isinstance(row['augmented_exts'], list) and len(row['augmented_exts']) > 0: + # augmented_exts is [[extraction1, extraction2, ...]] + for extraction_list in row['augmented_exts']: + if isinstance(extraction_list, list): + for ext in extraction_list: + if isinstance(ext, (list, tuple)) and len(ext) >= 3: + # Each extraction is [arg1, relation, arg2] + arg1 = str(ext[0]).strip() + relation = str(ext[1]).strip() + arg2 = str(ext[2]).strip() + # Format: sentence_number \t arg1 \t relation \t arg2 + line = f"{sentence_number}\t{arg1}\t{relation}\t{arg2}" + f.write(line + '\n') + + print(f"Conversion complete! Output written to: {output_file}") + print(f"You can now run code.py with this file") + + except Exception as e: + print(f"Error during conversion: {e}") + return False + + return True + +def main(): + # Default parameters + hdf5_file = 'benchie_indie_new.h5' + lang = 'hi' + output_file = 'benchie_indie_converted_gemma3_12b_rule_react_original_filtering_PreFilter.txt' + + # Check if HDF5 file exists + if not os.path.exists(hdf5_file): + print(f"Error: HDF5 file '{hdf5_file}' not found!") + return + + # Convert the file + success = convert_hdf5_to_tab_format(hdf5_file, lang, output_file) + + if success: + print("\nNext steps:") + print(f"1. Check the output file: {output_file}") + print("2. Modify code.py to read from this file instead of the original extractions") + print("3. Run code.py to get your statistics") + else: + print("Conversion failed. Please check the error messages above.") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/english_explicit.text b/GSoC25_H/IndIE/hindi-benchie/extractions/english_explicit.text new file mode 100644 index 0000000..27d8b9a --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/english_explicit.text @@ -0,0 +1,2 @@ +1 He served as the Prime Minister of Australia +1 He became justice of the High Court of Australia \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets.txt new file mode 100644 index 0000000..21b0cfd --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets.txt @@ -0,0 +1,305 @@ +1 कार्यरूप जगत को देखकर शक्तिरूपी माया की सििद्ध होती है +1 शक्तिरूपी माया की सििद्ध होती है property कार्यरूप जगत को +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +2 अखिल भारतीय पुलिस डयूटी मीट property 1958 से +2 अंगुलि चिह्न विज्ञान प्रतियोगिता property 1958 से +3 विवादित अंगुलि चिह्नों का परीक्षण भेजे गए केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +3 परीक्षण property केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +3 विभाग property केन्द्रीय सरकार के +3 उपक्रम property भारत सरकार के +3 विभाग property केन्द्रीय सरकार +3 उपक्रम property भारत सरकार +3 विभाग property केन्द्रीय सरकार +3 उपक्रम property भारत सरकार +4 007 प्रसिद्ध गुप्त नाम से +4 007 मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +4 एजेंट property फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +4 फ़्लेमिंग property एजेंट +5 उन्होंने शुरू की अपनी एक पत्रिका ' साधु ' +5 पत्रिका property ' साधु' +5 property property एक +6 कंपनी लागू किया गया नवीनतम वेतनमानों +6 वेतनमान property नवीनतम +8 वे appointment सर्वोच्च न्यायालय की न्यायाधीश +8 न्याधीश property सर्वोच्च न्यायालय की +8 न्याधीश appointment 1989 को +9 लोग धर्म कोई विशेष नहीं +9 धर्म property विशेष +10 पहला डाक टिकट जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 इम्पीरियल पोस्टल सर्विस property 1 अक्टूबर 1854 को +11 आंध्र के साथ कर्नूल को अपनी राजधानी +11 आंध्र राज्य का दर्जा राज्य का +11 आंध्र की 1 अक्टूबर 1953 को +11 राज्य का राज्य +11 राज्य के साथ कर्नूल को अपनी राजधानी +11 राज्य के साथ राज्य का दर्जा +11 राज्य के साथ 1 अक्टूबर 1953 को +12 दूसरा सीज़न जारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में +12 सीज़न property दूसरा +13 रॉबर्ट आइगर ने स्थान लिया माइकल आइजनर +13 माइकल आइजनर सीईओ अक्टूबर को +13 अक्टूबर को property 1 +14 देश आजाद हुआ 1 अक्टूबर , 1960 को +14 शासन property इंग्लैंड के +14 शासन property इंग्लैंड के +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 चन्द्रसिंह property अन्य गढ़वाली सैनिकों के साथ +15 सैनिक property गढ़वाली +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 गोविंद बल्लभ पन्त property इसके पहले मुख्य मन्त्री +16 1 अप्रैल 1946 को property स्वायत्तशासी प्रान्त +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 हिन्दी प्रचार सभा आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ +17 आन्दोलन property भारत के स्वतन्त्रता आन्दोलन के साथ +18 आभा दिखाई देती है कर्म के चेहरे पर +18 आभा property अनूठी +19 सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +19 सोनू property तब से अब तक +20 कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम वर्गीकरण +20 कोप्पेन मौसम वर्गीकरण property मौसम आकलन के लिए +20 मौसम वर्गीकरण property मौसम आकलन के लिए +21 सोवियत दस्तों ने क़ब्ज़ा करने के बाद बर्लिन पर +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 प्राग को property चेकोस्लोवाकिया की राजधानी +21 प्राग property प्राग +22 राष्ट्रपति प्राप्त करने वाले योग एवं शिक्षा के क्षेत्र में +22 राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +22 राष्ट्रपति property योग एवं शिक्षा के क्षेत्र में +22 राष्ट्रपति property पद्म श्री सम्मान +23 वित्तीय सहायता दी जाती है सभी बच्चों को +23 पूरी करने तक property स्कूल की पढ़ाई +23 पूरी करने तक property स्कूल की पढ़ाई +24 यह स्थान है क्षेत्र के लोगों के लिए दर्शनीय केन्द्र +24 क्षेत्र के लोगों के property लोगों के +24 लोग property के +25 पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +25 पाणिनीय व्याकरण property वेदाङ्ग +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 मैं समझकर शब्द की आत्मा +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +27 हिमाचल प्रदेश में बहने वाली पांच नदियों उल्लेख ऋग्वेद में +27 पांच नदियों स्थान हिमाचल प्रदेश में +27 पांच नदियों property पांच +28 उन्होंने इंकार कर दिया बच्चे को +28 बच्चे को property देने से +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 अध्ययन property तुलनात्मक +30 गुजरात क्वीन एक्स्प्रेस संचालित भारतीय रेल द्वारा +30 गुजरात क्वीन एक्स्प्रेस प्रकार मेल एक्स्प्रेस ट्रेन +31 यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +31 हिल स्टेशन location पश्चिम बंगाल का +32 गंगोलीहाट तहसील में कुमाऊँ मण्डल +32 पिथोरागढ जिले का गंगोलीहाट तहसील +32 पिथोरागढ जिले का उत्तराखण्ड राज्य +32 गंगोलीहाट तहसील में सिलकोट +32 पिथोरागढ जिले का उत्तराखण्ड राज्य +33 एयर लाइन के तकनीकी केंद्र को स्थापना तिरकुवनंतपुरम में +33 एयर लाइन property के तकनीकी केंद्र को +34 मामले पेश हुए चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मामले property मुख्य न्यायाधीश सर लुइस शर्ट +34 मामले property विशेष न्यायाधीश मोहम्मद रजा के सामने +35 बाशो मृत्यु 28 नवम्बर 1694 को +35 बाशो कारण किसी बीमारी की वजह से +36 विक्रम ने सोचा एक हल +36 विक्रम ने हल एक +37 शाही सेना मुकाबला पंचायती सेना +37 मुकाबला property 1696 में +37 मुकाबला property एक बार फिर +38 मर्लगोंड एक गाँव +38 मर्लगोंड स्थान कुभीर मण्डल +38 मर्लगोंड स्थान भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +38 मर्लगोंड स्थान अदिलाबादु जिले +38 अदिलाबादु जिले स्थान अदिलाबादु +38 अदिलाबादु स्थान अदिलाबादु जिले +38 अदिलाबादु स्थान आंध्र प्रदेश राज्य +38 आंध्र प्रदेश राज्य स्थान भारत +39 व्याकरण के दर्शन पक्ष पर लिखे गये अनेक ग्रन्थ +39 ग्रन्थ property अनेक +40 मेजबान बना इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में +40 मेजबान property निदेशक +40 निदेशक location इलाहाबाद में +40 निदेशक time 1975 में +41 उनके नाम पर रखा गया इस जगह का नाम +41 इस जगह का नाम property रुस्तम खान +41 इस जगह का नाम property रुस्तम खान +42 कुछ लोग पसंद करते हैं इस आपाधापी से दूर अपने घर पर ही रहना +42 घर पर property अपने +42 घर property अपने +42 घर location इस आपाधापी से दूर +43 उनकी वापसी हूँ अमरीका के अट्ठाइसवें +43 उनकी वापसी property मार्च 2001 में एक बार फिर +43 उनकी वापसी property अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +44 सर वाईकर रखी गयी थी इसकी रचना की आधारशिला +44 आधारशिला property 3 मार्च 1884 को +44 आधारशिला property 3 मार्च 1884 को +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 उसका property इस तकनीक के लिए +45 इस तकनीक property विभिन्न टेलीविजन कंपनियों से +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था सन 1961 में पद्म भूषण से +46 पद्म भूषण property सन 1961 में +46 पद्म भूषण property चिकित्सा विज्ञान के क्षेत्र में +47 उन्होने रचना की मराठी के अतिरिक्त हिन्दी फिल्मों के लिए +47 मराठी के अतिरिक्त property हिन्दी फिल्मों के लिए +47 मराठी के अतिरिक्त property हिन्दी फिल्मों के लिए +48 काइटिन उपयोग किया जाता है औद्योगिक रूप से अनेक प्रक्रियाओं में +48 काइटिन property औद्योगिक रूप से अनेक प्रक्रियाओं में +49 हिंदू मनाए जाते हैं मुस्लिम के सभी पर्व +49 पर्व मनाए जाते हैं हिंदू और मुस्लिमों के +49 पर्व मनाए जाते हैं सभी +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका, संयुक्त राजशाही व कनाडा में +50 रिलीज़ किया गया रिलीज़ 20 जुलाई 2012 को +50 रिलीज़ रिलीज़ 20 जुलाई 2012 को +50 रिलीज़ रिलीज़ अमेरिका, संयुक्त राजशाही व कनाडा में +51 यह लगाया जाता है जर्मनी के फ्रैंकफर्ट शहर मे +51 यह property हर साल +52 द्रौपदी ने डाल दिया अर्जुन के गले में वरमाला +52 वरमाला property द्रौपदी ने +52 वरमाला property आगे बढ़ कर +52 द्रौपदी ने property आगे बढ़ कर +53 त्यौहार मनाया जाता है पूरे उत्तर भारत में +53 त्यौहार property राम नवमी के दौरान +53 त्यौहार location पूरे उत्तर भारत में +54 तटीय कर्नाटक के भोजन में उपयोग समुद्री भोजन +54 तटीय कर्नाटक के भोजन में उपयोग नारियल +54 तटीय कर्नाटक के भोजन में उपयोग नारियल तेल +54 नारियल तेल property नारियल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को +55 कार्ल ने अध्ययन के साथ उपेक्षित जीवविज्ञान उद्यान को +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +56 सिफीड property सिफियस चतुर्थ की श्रेणी के तारों को +56 सिफियस चतुर्थ की श्रेणी के तारों को property सिफीड +57 अध्यारोप प्रसिद्ध है विधि प्राथमिक +57 विधि property प्राथमिक +58 चीन तथा जापान से संपर्क रहा है इस देश का +58 इस देश property अधिक +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +59 ज्योतिष गणना property कश्यप ने +60 मोमबत्तियाँ प्रयुक्त होती है खानों में +60 खानों में property अभ्रक आदि की +60 अभ्रक आदि की property खानों में +61 उन्होंने लिखे हैं कहानियाँ और उपन्यास +61 उपन्यास property इस शैली में +61 कहानियाँ property इस शैली में +62 मुख्य न्यायाधीश पहला दलित +62 मुख्य न्यायाधीश पहला मलयाली +62 मुख्य न्यायाधीश property दलित +62 मुख्य न्यायाधीश property मलयाली +63 उन्होंने पेश किया सरकार का वार्षिक बजट +63 बजट property सरकार का +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 चाय के व्यापार property स्थानीय आबादी +65 इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में +65 प्रोफ़ाइल property आधारभूत +66 उन्हें जाना जाता है उत्कल मणि +66 उत्कल मणि property उन्हें +67 फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +67 अधिक जानकारी के लिए property फ्रेंच फ्लेमिश को +68 इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 इस नदी का ज्यादातर अंश property नदी +69 मत्रूह मुहाफ़ज़ाह अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा +69 मत्रूह मुहाफ़ज़ाह जिसमें सीवा नख़लिस्तान ( ओएसिस ) +69 सीवा नख़लिस्तान property ओसिस +70 राज्य की राजधानी है बंगलुरु शहर +70 बंगलुरु property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्ता +70 बंगलुरु property भारत +71 कहानियों के लिए प्रसिद्ध हैं ये +71 कहानियों property रहस्यमयी और भयावह +71 कहानियों property प्रसिद्ध +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह और दो निबंध संग्रह +72 एक कहानी संग्रह property उनका +72 दो निबंध संग्रह property उनका +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी +74 अलबामा स्थित हैं दक्षिण में फ्लोरिडा राज्य +74 अलबामा पश्चिम में इसके +74 फ्लोरिडा पश्चिम में इसके +75 क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +75 होबार्ट property ऑस्ट्रेलिया के +77 योगीजनों के ज्ञान लीन हो जाने को कहते हैं ब्रह्म में +77 योगीजनों के ज्ञान property आत्यन्तिक प्रलय +78 जंगलों की विशेषता विभाजित किया है इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में property जंगलों की विशेषता की दृष्टि से +81 सीता राम पहनती हैं जयमाल +81 सीता राम property विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य +81 विश्वामित्र property वैदिक मन्त्रों के स्वरघोष के मध्य +82 स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +82 स्थान का नाम property एजिंकोर्ट स्क्वायर +83 विभिन्न विभाग होते हैं अलग-अलग अध्यक्ष +83 अध्यक्ष property अलग-अलग +83 अलग-अलग property अलग-अलग +84 एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +84 एल्बम से तीसरा कट property एकलों के बीच एक लंबे अंतराल के बाद +85 सब बनाए व्यवस्था +85 व्यवस्था property चलाने की +85 व्यवस्था property स्वयं +85 सब property बनाने के लिए +86 विकासों ने बेहतर कर दिया था परिणामों को +86 विकासों ने property 1900 के आसपास +86 परिणामों को property निमोनिया से पीड़ित लोगों के लिये +87 आप योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +87 आप योगदान अपने पिता के समान +87 आप योगदान सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +88 मेसोथेलियोमा उत्पन्न होने के मामले 1 -- 3 माह के संपर्क में भी +88 मेसोथेलियोमा property 1 -- 3 माह के संपर्क में +89 प्राणी सामना होता है दो प्राणियों का +89 प्राणी वास्तव में मिलते नहीं है प्राणी +89 प्राणी वास्तव में मिलते नहीं है प्राणी +90 तीनों अक्ष होने चाहिए एक बिन्दुगामी भी +90 एक बिन्दुगामी property तल में +91 किसानों के दूध विपणन बदल रहे हैं अपने ही पड़ोस में +91 किसानों के दूध विपणन property विकासशील देशों में +91 किसानों के दूध विपणन property तेजी से +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +93 इस रोग के प्रतिषेधात्मक उपचार में property मक्खियों से खाद्य एवं पेय पदार्थो को +94 राष्ट्रीयता को संदर्भित करता है संदर्भित करता है टीम की +94 गाड़ी निर्माता property राष्ट्रीयता को +94 गाड़ी निर्माता property टीम की +95 मुंबई से सीधी बस सेवा है रत्नागिरी के लिए +95 बस सेवा मार्ग सड़क मार्ग +95 मार्ग property रत्नागिरी के लिए +96 शिल्पी निर्माण करते थे लकड़ी के ब्लाकों का +96 लकड़ी के ब्लाकों का property छपाई में प्रयोग होता था +97 सरकारी इकाई के लिये प्रयोग में आता है प्रयोग में आता है विधि बनाने वाली +97 विधि property विधि बनाने वाली +98 उत्तर प्रदेश के बलिया जिले में स्थित है स्थित है बलिया जिले में +98 बलिया जिले में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया शहर से थोड़ी दूर पश्चिम में स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने नहीं किया करते थे हत्या +99 हत्या property पिता की +99 हत्या property उसे +100 प्रत्येक खिलाड़ी के लिये निर्धारण हवाओं की स्थिति का +100 हवाओं की स्थिति का property पासा फेंककर +100 पासा फेंककर method हवाओं की स्थिति का +101 हाइपरयूरीसेमिया कारण वात रोग का मूल कारण +101 हाइपरयूरीसेमिया property वात रोग का मूल कारण +101 हाइपरयूरीसेमिया property रोग +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 केरल property विश्व भर में +103 इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम property सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +105 कहानियाँ हो सकती हैं किसी देश या समय की +105 कहानियाँ property किसी देश या समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं प्रोत्साहित करते हैं कुछ और कारण हैं +106 कारण property प्रकृति आधारित निर्माण को +106 प्रकृति आधारित निर्माण property प्रकृति +107 2010 को सम्पन्न हुआ ' ' दर्शन -- परिषद् ' ' +107 ' ' दर्शन -- परिषद् ' ' property ' ' +107 ' ' property ' ' +107 ' ' property ' ' +109 पंतन कहा जाता है पंतन +109 पंतन property पंतन +109 पंतन location पंतन +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 वे property एकाधिक अवसर पर यूरोपियन कप जीता +110 वे property एकाधिक अवसर पर +110 वे property एकाधिक अवसर +110 वे property एकाधिक अवसर +110 वे property एकाधिक अवसर +110 वे property एकाधिक अवसर +111 मॉस जल रोक रखा जाता है मिट्टी में +111 मिट्टी property मिट्टी में जल रोक रखा जाता है +112 महाभारत है वर्तमान रूप +112 महाभारत property प्राचीन इतिहास कथाओं +112 महाभारत property उपदेशों +112 महाभारत property भण्डार diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000.txt new file mode 100644 index 0000000..be208a8 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000.txt @@ -0,0 +1,333 @@ +1 कार्यरूप जगत को देखकर शक्तिरूपी माया की सििद्ध होती है +1 शक्तिरूपी माया की सििद्ध होती है property कार्यरूप जगत को +2 अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +2 अंगुलि चिह्न विज्ञान प्रतियोगिता property 1958 से +3 विवादित अंगुलि चिह्नों का परीक्षण भेजे गए केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा +4 007 के गुप्त नाम से प्रसिद्ध है एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है +4 एजेंट फ़्लेमिंग property 12 पुस्तकों व दो लघुकथाओं में +4 एजेंट फ़्लेमिंग property 12 +4 एजेंट फ़्लेमिंग property दो +4 एजेंट फ़्लेमिंग property लघुकथाओं में +5 उन्होंने शुरू की अपनी एक पत्रिका ' साधु' +5 उन्होंने property एक +6 कंपनी में लागू किया गया नवीनतम वेतनमानों को +6 वेतनमानों property नवीनतम +7 गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई +7 गोधरा ट्रेन कांड property 01 जून +8 वे appointment सर्वोच्च न्यायालय की न्यायाधीश +8 न्याधीश property सर्वोच्च न्यायालय की +9 ऐसे लोग थे धर्म नहीं था कोई विशेष +9 ऐसे लोग थे धर्म नहीं था कोई +10 पहला डाक टिकट जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा +10 पहला डाक टिकट property 1 अक्टूबर 1854 को +11 आंध्र के साथ कर्नूल को अपनी राजधानी +11 आंध्र के साथ राज्य का दर्जा पाया +12 दूसरा सीज़न जारी किया गया न्यूजीलैंड और ऑस्ट्रेलिया में +12 दूसरा सीज़न property 1 अक्टूबर 2008 को +13 रॉबर्ट आइगर ने पद संभाला सीईओ +13 रॉबर्ट आइगर property 1 अक्टूबर को +14 यह देश आज़ाद हुआ 1 अक्टूबर , 1960 को +14 यह देश शासन से इंग्लैंड के +14 शासन property इंग्लैंड के +15 चन्द्रसिंह भेज दिया गया फ्रांस +15 चन्द्रसिंह property अन्य गढ़वाली सैनिकों के साथ +15 सैनिकों property गढ़वाली +16 1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त +16 इसके property गोविंद बल्लभ पन्त +16 गोविंद बल्लभ पन्त property इसके पहले मुख्य मन्त्री +17 हिन्दी प्रचार सभा थी एक आन्दोलन +17 हिन्दी प्रचार सभा आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ +17 आन्दोलन property भारत के स्वतन्त्रता आन्दोलन के साथ +18 आभा दिखाई पड़ती थी चेहरे पर +18 आभा property कर्म के +19 सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +19 सोनू property तब से अब तक +20 कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम आकलन के लिए +20 कोप्पेन मौसम वर्गीकरण property मौसम आकलन के लिए +20 मौसम वर्गीकरण property सबसे अधिक प्रयोगनीय +21 सोवियत दस्तों ने क़ब्ज़ा करने के बाद बर्लिन पर +21 सोवियत दस्तों ने प्राग को चेकोस्लोवाकिया की राजधानी +21 प्राग को आज़ाद कराया बर्लिन पर क़ब्ज़ा करने के बाद +21 प्राग property चेकोस्लोवाकिया की राजधानी +22 राष्ट्रपति प्राप्त करने वाले पद्म श्री सम्मान +22 राष्ट्रपति property योग एवं शिक्षा के क्षेत्र में +22 राष्ट्रपति property प्रथम भारतीय +23 सभी बच्चों को वित्तीय सहायता दी जाती है स्कूल की पढ़ाई पूरी करने तक +23 सभी बच्चों को property स्कूल की पढ़ाई +23 सभी बच्चों को property पूरी करने तक +24 यह स्थान के लिए दर्शनीय केन्द्र है क्षेत्र के लोगों के लिए +24 यह property आज +25 पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +25 पाणिनीय व्याकरण property वेदाङ्ग +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +26 मैं समझकर शब्द की आत्मा +26 मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की +27 हिमाचल प्रदेश में बहने वाली पांच नदियों में बहने वाली पांच नदियों +27 पांच नदियों property ऋग्वेद में उल्लेखित +27 पांच नदियों property पांच नदियों में से चार +27 पांच नदियों property ऋग्वेद में +27 पांच नदियों property पांच नदियों +28 उन्होंने इंकार कर दिया बच्चे को देने से +28 बच्चे को property देने से +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +29 सामाजिक विज्ञानों property सभी +30 गुजरात क्वीन एक्स्प्रेस संचालित भारतीय रेल द्वारा +30 गुजरात क्वीन एक्स्प्रेस property 9110 +31 यह शहर प्रमुख हिल स्टेशन है पश्चिम बंगाल का +31 हिल स्टेशन location पश्चिम बंगाल का +32 सिलकोट एक गाँव है गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का +32 गंगोलीहाट property तहसील में +32 उत्तराखण्ड राज्य property भारत के अन्तर्गत +32 कुमाऊँ मण्डल property गंगोलीहाट तहसील में +32 पिथोरागढ जिले property कुमाऊँ मण्डल के +32 पिथोरागढ property उत्तराखण्ड राज्य के अन्तर्गत +32 गंगोलीहाट property भारत के +32 पिथोरागढ property उत्तराखण्ड राज्य के +32 पिथोरागढ property भारत के +32 पिथोरागढ property भारत के +32 पिथोरागढ property भारत के +32 पिथोरागढ property भारत के +33 एयर लाइन के तकनीकी केंद्र को स्थापना तिरुवनंतपुरम में +33 एयर लाइन property तकनीकी केंद्र को +34 दोनों मामले पहुंचे चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +34 मामले property चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने +35 बाशो मृत्यु 28 नवम्बर 1694 को +35 बाशो कारण किसी बीमारी की वजह से +36 विक्रम ने सोचा एक हल +36 विक्रम ने property जब कोई मतैक्य नहीं हुआ तो +36 विक्रम ने property एक हल +37 शाही सेना मुकाबला हुआ पंचायती सेना +37 पंचायती सेना property सन 1696 में +37 मुकाबला property एक बार फिर +38 मर्लगोंड है कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव +38 आंध्रप्रदेश राज्य property अदिलाबादु जिले का +38 अदिलाबादु जिले property अदिलाबादु जिले का +38 अदिलाबादु जिले property अदिलाबादु जिले का +39 व्याकरण के दर्शन पक्ष पर लिखे गये अनेक ग्रन्थ +39 ग्रन्थ property व्याकरण के दर्शन पक्ष पर +40 नवनिर्मित मेहता अनुसंधान संस्थान बने निदेशक +40 निदेशक property 1975 में इलाहाबाद में +40 इलाहाबाद location 1975 में +40 नवनिर्मित property 1975 में +41 उनके नाम पर रखा गया इस जगह का नाम +41 इस जगह का नाम property रुस्तम खान +42 कुछ लोग पसंद करते हैं इस आपाधापी से दूर अपने घर पर ही रहना +42 घर पर property अपने +42 घर property अपने +42 घर location इस आपाधापी से दूर +43 उनकी वापसी होई अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +43 उनकी वापसी property मार्च 2001 में एक बार फिर +43 उनकी वापसी property अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में +43 अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +43 अमरीका के property अट्ठाइसवें +43 अट्ठाइसवें property रक्षा सचिव के रूप में +44 इसकी रचना की आधारशिला के द्वारा रखी गयी थी सर वाईकर के द्वारा +44 आधारशिला property 3 मार्च 1884 को +45 वह संपर्क में है विभिन्न टेलीविजन कंपनियों से +45 उसका property इस तकनीक के लिए +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था सन 1961 में पद्म भूषण से +46 पद्म भूषण property चिकित्सा विज्ञान के क्षेत्र में +47 उन्होने रचना की संगीत +47 संगीत property मराठी के अतिरिक्त +47 मराठी property अतिरिक्त +47 मराठी property हिंदी फिल्मों के लिए +48 काइटिन उपयोग किया जाता है औद्योगिक रूप से अनेक प्रक्रियाओं में +49 हिंदू मनाए जाते हैं पर्व +49 मुस्लिम मनाए जाते हैं पर्व +49 पर्व मनाए जाते हैं सभी +49 पर्व मनाए जाते हैं मनाए जाते हैं +50 द डार्क नाईट राइसेस रिलीज़ किया गया अमेरिका +50 द डार्क नाईट राइसेस रिलीज़ किया गया संयुक्त राजशाही +50 द डार्क नाईट राइसेस रिलीज़ किया गया कनाडा +50 रिलीज़ किया गया कब 20 जुलाई 2012 को +51 यह लगा जाता है जर्मनी के फ्रैंकफर्ट शहर मे +51 यह property हर साल +52 द्रौपदी ने गले में वरमाला डाल दिया अर्जुन के +52 वरमाला property द्रौपदी ने +53 यह त्यौहार मनाया जाता है राम नवमी के दौरान +53 यह त्यौहार location पूरे उत्तर भारत में +54 तटीय कर्नाटक के भोजन उपयोग समुद्री भोजन +54 तटीय कर्नाटक के भोजन उपयोग नारियल +54 तटीय कर्नाटक के भोजन उपयोग नारियल तेल +54 नारियल property नारियल +55 कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को +55 कार्ल ने property अध्ययन के साथ +55 अध्ययन के साथ property उपेक्षित जीवविज्ञान उद्यान को +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड कहते हैं +56 सिफीड property सिफियस चतुर्थ की श्रेणी के तारों को +57 प्राथमिक विधि के नाम से प्रसिद्ध है अध्यारोप +57 अध्यारोप property प्राथमिक विधि +58 चीन से संपर्क रहा है जापान से +58 इस देश property अधिक संपर्क +58 इस देश property चीन तथा जापान से +59 कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +59 ज्योतिष गणना property कश्यप ने +60 खानों में प्रयुक्त होती है मोमबत्तियाँ +60 मोमबत्तियाँ property अभ्रक आदि की +60 मोमबत्तियाँ property खानों में +61 उन्होंने लिखे हैं कहानियाँ और उपन्यास +61 उन्होंने property इस शैली में +61 उन्होंने property इस शैली में +62 मुख्य न्यायाधीश पहला दलित +62 मुख्य न्यायाधीश पहला मलयाली +63 उन्होंने पेश किया सरकार का वार्षिक बजट +63 बजट property सरकार का +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 चाय के व्यापार property पूरी तरह से +65 इसे लागू किया जाता है आधारभूत प्रोफ़ाइल में +65 प्रोफ़ाइल property आधारभूत +66 उन्हें जाना जाता है उत्कल मणि +66 उत्कल मणि property उन्हें +67 फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +67 अधिक जानकारी के लिए property फ्रेंच फ्लेमिश को +68 इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 इस नदी का ज्यादातर अंश property इस नदी का +69 मत्रूह मुहाफ़ज़ाह अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा +69 लीबियाई रेगिस्तान का हिस्सा property मत्रूह मुहाफ़ज़ाह +69 मत्रूह मुहाफ़ज़ाह contains सीवा नख़लिस्तान ( ओएसिस) +70 राज्य की राजधानी है बंगलुरु शहर +70 बंगलुरु शहर property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +71 ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए +71 कहानियों के लिए property ये +71 property property अपनी रहस्यमयी और भयावह +72 उनका प्रकाशित हुए हैं एक कहानी संग्रह और दो निबंध संग्रह +72 एक कहानी संग्रह property उनका +73 पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण +73 सुपद्य व्याकरण property 15 वीं शताब्दी +74 अलबामा स्थित हैं फ्लोरिडा राज्य +74 अलबामा property इसके पश्चिम में +74 फ्लोरिडा राज्य property इसके दक्षिण में +75 क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +77 योगीजनों कहते हैं आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं +77 ज्ञान के द्वारा आत्यन्तिक प्रलय +77 आत्यन्तिक प्रलय property योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं +78 जंगलों की विशेषता विभाजित किया है इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में +78 इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में property कुछ लोगों ने +79 प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी पर +80 5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों को +80 जन्म property ईसा मसीह के +80 वर्षों property पूर्व +81 सीता राम पहनती हैं जयमाल +81 सीता राम property विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य +81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष property सीता राम को +82 स्थान का नाम पड़ा एजिंकोर्ट स्क्वायर +82 स्थान का नाम property विभिन्न स्रोत इस तथ्य पर बटे हुए हैं +83 विभिन्न विभाग होते हैं अलग-अलग अध्यक्ष +83 अध्यक्ष property अलग-अलग +83 अलग-अलग property विभिन्न +84 एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +84 एल्बम से तीसरा कट property एकलों के बीच एक लंबे अंतराल के बाद +85 सब बनाए व्यवस्था +85 व्यवस्था property चलाने की +85 व्यवस्था property स्वयं करनी पड़ी +86 विकासों बेहतर कर दिया था परिणामों +86 विकासों property 1900 के आसपास +86 परिणामों property निमोनिया से पीड़ित लोगों के लिये +87 आपके योगदान है सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में +87 आपके property अपने पिता के समान +88 मेसोथेलियोमा उत्पन्न होने के मामले 1 -- 3 माह के संपर्क में भी +88 मेसोथेलियोमा property उदाहरण +89 प्राणी मिलते नहीं है वास्तव में प्राणी +89 प्राणी सामना होता है जहां +90 अक्ष होने चाहिये बिन्दुगामी +90 अक्ष property बिन्दुगामी +91 किसानों के दूध विपणन बदल रहे हैं अपने ही पड़ोस में +91 किसानों के दूध विपणन property तेजी से बदल रहे हैं +91 किसानों के दूध विपणन location विकासशील देशों में +92 उन्होंने की शुरुआत अपने बोलीवुड करियर की +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +92 उन्होंने की शुरुआत +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +93 इस रोग के प्रतिषेधात्मक उपचार में property बचाना +94 राष्ट्रीयता संदर्भित करता है टीम की +94 राष्ट्रीयता संदर्भित करता है गाड़ी निर्माता या चालक की +95 सड़क मार्ग से रत्नागिरी के लिए मुंबई से सीधी बस सेवा है +95 बस सेवा property सीधी +96 शिल्पी निर्माण करते थे लकड़ी के ब्लाकों का +96 शिल्पी property छपाई में +97 सरकारी इकाई के लिये प्रयोग में आता है विधि बनाने वाली +97 विधि property विधि बनाने वाली +98 उत्तर प्रदेश के बलिया जिले में स्थित है स्थित है बलिया जिले में +98 बलिया जिले में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +98 बलिया शहर से थोड़ी दूर पश्चिम में स्थित है स्थित है बलिया शहर से थोड़ी दूर पश्चिम में +99 उन्होने नहीं किया करते थे हत्या +99 हत्या property पिता की +99 अन्य सम्राट property सम्राट +99 उन्होने property उसे +100 प्रत्येक खिलाड़ी के लिये निर्धारण हवाओं की स्थिति का +100 स्थिति property हवाओं की +100 पासा फेंककर method निर्धारण +101 हाइपरयूरीसेमिया कारण होता है वात रोग का मूल कारण +101 हाइपरयूरीसेमिया property वात रोग का मूल कारण +101 हाइपरयूरीसेमिया property वाता रोग का मूल कारण +102 केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण +102 केरल property विश्व भर में +103 इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 उदगम property सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +104 परम्परागत चित्रकला प्राधान्य था दक्षिण भारत में +104 परम्परागत चित्रकला property दक्षिण भारत में +104 परम्परागत चित्रकला property उन दिनों +105 कहानियाँ हो सकती हैं किसी देश या समय की +105 कहानियाँ property किसी देश या समय की +106 प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं प्रोत्साहित करते हैं और भी कुछ +106 प्रकृति property निर्माण को +107 ' ' दर्शन -- परिषद् ' ' सम्पन्न हुआ 2010 को +107 ' ' दर्शन -- परिषद् ' ' property 2010 को +108 रथयात्रा के दिन देहांत हो गया यहीं पर +108 देहांत property 47 वर्ष की अल्पायु में +108 देहांत property सन 1533 में +109 पंतन कहा जाता है पंतन +109 पंतन कहा जाता है पंतन +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 वे property एकाधिक अवसर पर यूरोपियन कप जीता +110 वे property तीसरे ब्रिटिश प्रबंधक +111 मॉस जल रोक रखा जाता है मिट्टी में +111 मिट्टी property मिट्टी में +111 मिट्टी property मिट्टी +112 महाभारत भण्डार है वर्तमान रूप प्राचीन इतिहास कथाओं आदि +112 महाभारत property प्राचीन इतिहास कथाओं +112 महाभारत property उपदेशों diff --git a/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000_04_new.txt b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000_04_new.txt new file mode 100644 index 0000000..a83f71d --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/extractions/formatted_triplets_6000_04_new.txt @@ -0,0 +1,235 @@ +1 कार्यरूप जगत देखकर शक्तिरूपी माया की सििद्ध होती है +1 शक्तिरूपी सििद्ध होती है +1 शक्तिरूपी की सििद्ध होती है +2 अखिल भारतीय पुलिस डयूटी मीट (1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता +2 1958 से गुण अखिल भारतीय पुलिस डयूटी मीट +2 अंगुलि चिह्न विज्ञान प्रकार अंगुलि चिह्न विज्ञान प्रतियोगिता +3 केन्द्रीय सरकार के विभागों परीक्षण करना विवादित अंगुलि चिह्नों +3 भारत सरकार के उपक्रमों परीक्षण करना विवादित अंगुलि चिह्नों +4 007 मौजूद है फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में +5 उन्होंने शुरू की अपनी एक पत्रिका +5 साधु property अपनी +7 गोधरा ट्रेन कांड की सुनवाई की अहमदाबाद के साबरमती केंद्रीय जेल के अंदर +7 अहमदाबाद के साबरमती केंद्रीय जेल केंद्रीय के अंदर +7 अहमदाबाद के साबरमती केंद्रीय जेल में गोधरा ट्रेन कांड की सुनवाई +7 अहमदाबाद के साबरमती केंद्रीय जेल property केंद्रीय +7 अहमदाबाद के साबरमती केंद्रीय जेल property के अंदर +8 वे नियुक्त हुई सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई +8 वे property सर्वोच्च न्यायालय की +9 ऐसे लोग property 06 प्रतिशत +9 06 प्रतिशत property कोई विशेष धर्म नहीं +11 आंध्र पाया कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा +11 राज्य का दर्जा पाया कर्नूल को +11 कर्नूल को प्राप्त राज्य का दर्जा +13 रॉबर्ट आइगर लिया माइकल आइजनर का स्थान +13 माइकल आइजनर property सीईओ +13 1 अक्टूबर को temporal property +14 यह देश आज़ाद हुआ इंग्लैंड के शासन से +14 स्वतंत्र property स्वतंत्र +15 चन्द्रसिंह भेज दिया गया अन्य गढ़वाली सैनिकों के साथ +15 फ्रांस property अन्य गढ़वाली सैनिकों के साथ +15 1 अगस्त 1915 में temporal भेज दिया गया +17 हिन्दी प्रचार सभा आरम्भ हुई एक आन्दोलन +17 भारत के property स्वतंत्रता आन्दोलन के +17 हिन्दी प्रचार सभा property भारत के +17 हिन्दी प्रचार सभा property स्वतंत्रता आन्दोलन के +19 सोनू बन चुके हैं भारतीय संगीत जगत में एक प्रमुख हस्ती +19 प्रमुख गुण-आधारित भारतीय संगीत जगत में +20 कोप्पेन मौसम वर्गीकरण प्रयोग किया जाने वाला मौसम आकलन के लिए +20 कोप्पेन मौसम वर्गीकरण गुण-आधारित सबसे अधिक प्रयोगनीय +20 मौसम आकलन के लिए कोप्पेन मौसम वर्गीकरण +21 सोवियत दस्तों ने आज़ाद कराया प्राग को +21 बर्लिन पर क़ब्ज़ा करने के बाद प्राग को +22 राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं प्राप्त करने राष्ट्रपति से पद्म श्री सम्मान +22 योग एवं शिक्षा के क्षेत्र में property प्राप्त करने +22 राष्ट्रपति से पद्म श्री सम्मान property प्रथम +23 सभी बच्चों को दी जाती है स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता +23 स्कूल की पढ़ाई पूरी करने तक property वित्तीय सहायता +23 स्कूल की पढ़ाई पूरी करने तक condition वित्तीय सहायता +25 इस सम्बन्ध में पाणिनीय व्याकरण प्रतिनिधित्व करता है वेदाङ्ग का +25 इस गुण प्रतिनिधित्व करता है +27 हिमाचल प्रदेश में बहने वाली पांच नदियों उल्लेख ऋग्वेद +27 चार का property उल्लेख +27 चार का property उल्लेख +28 उन्होंने देने बच्चे को +28 स्पष्ट इंकार कर दिया property give +29 शिक्षा का तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से +30 गुजरात क्वीन एक्स्प्रेस 9110 संचालित भारतीय रेल द्वारा +30 गुजरात क्वीन एक्स्प्रेस 9110 property एक मेल एक्स्प्रेस ट्रेन है +30 एक मेल एक्स्प्रेस ट्रेन है property गुजरात क्वीन एक्स्प्रेस 9110 +31 यह पश्चिम बंगाल का प्रमुख हिल स्टेशन +31 पश्चिम बंगाल का प्रमुख हिल स्टेशन +32 सिलकोट is_located_in गंगोलीहाट तहसील में +32 सिलकोट is_part_of भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का +32 सिलकोट is_a एक गाँव +33 एयर लाइन के तकनीकी केंद्र स्थापना तिरुवनंतपुरम में +33 एयर लाइन के तकनीकी केंद्र स्थापना तिरुवनंतपुरम में +33 एयर लाइन के तकनीकी केंद्र स्थापना तिरुवनंतपुरम में +34 मुख्य न्यायाधीश के सामने दोनों मामले +34 विशेष न्यायाधीश के सामने दोनों मामले +34 विशेष न्यायाधीश के सामने मोहम्मद रजा +35 बाशो की मृत्यु कारण किसी बीमारी की वजह से +35 बाशो की मृत्यु हो गई 28 नवम्बर 1694 को +36 विक्रम सोचा एक हल +36 एक property हल +37 शाही सेना मुकाबला हुआ पंचायती सेना +37 सन 1696 में काल मुकाबला +37 शाही गुण सेना +37 पंचायती गुण सेना +38 मर्लगोंड is a कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव +39 अनेक ग्रन्थ लिखे गये व्याकरण के दर्शन पक्ष पर +39 बाद में क्रिया के समय +39 व्याकरण के विशेषण दर्शन पक्ष पर +40 नवनिर्मित मेहता अनुसंधान संस्थान बने निदेशक +40 नवनिर्मित property मेधा अनुसंधान संस्थान +40 1975 में property इलाहाबाद में +41 इस जगह का नाम रखा गया रुस्तम खान +41 उनके नाम पर property इस जगह का नाम +41 इस property इस जगह का नाम +42 कुछ लोग पसंद करते हैं अपने घर पर ही रहना +42 इस आपाधापी से property दूर +43 एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव वापसी हुई मार्च 2001 में +43 मार्च 2001 में property एक बार फिर +43 एक बार फिर property अमरीका के अट्ठाइसवें रक्षा सचिव +46 त्रिदेवनाथ बैनर्जी सम्मानित किया गया था चिकित्सा विज्ञान के क्षेत्र में +47 उन्होने रचना की संगीत +47 संगीत मराठी के अतिरिक्त हिन्दी फिल्मों के लिए +50 द डार्क नाईट राइसेस रिलीज किया गया अमेरिका, संयुक्त राजशाही व कनाडा में +50 20 जुलाई 2012 को समय-संबंधी गुण रिलीज किया गया +51 यह लगा जाता है जर्मनी के फ्रैंकफर्ट शहर मे +51 हर साल property लगा जाता है +53 यह त्यौहार मनाया जाता है उत्तर भारत में +53 पूरे property उत्तर भारत +53 राम नवमी के दौरान property काल +56 सिफियस चतुर्थ की श्रेणी के तारों को कहते हैं सिफीड +56 सिफियस विशेष सिफीड +57 प्राथमिक विधि अध्यारोप के नाम से प्रसिद्ध है None +57 प्राथमिक property विधि +57 अध्यारोप property विधि +57 प्राथमिक property अध्यारोप +58 इस देश का संपर्क रहा है चीन तथा जापान से +58 अधिक property संपर्क +59 कश्यप पता लगाया राजा की आयु में कुछ घड़ी शेष हैं +59 राजा की गुण कुछ +59 कुछ गुण घड़ी +59 घड़ी शेष कुछ +60 मोमबत्तियाँ प्रयुक्त होती है खानों में +60 अभ्रक आदि की विशेषण खानों में +61 इस शैली में लिखे हैं कहानियाँ और उपन्यास +61 उन्होंने लिखे हैं कहानियाँ और उपन्यास +63 उन्होंने पेश किया सरकार का वार्षिक बजट +63 उन्होंने property वार्षिक +63 उन्होंने temporal 6 जुलाई 2009 को +64 स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर +64 स्थानीय गुण आबादी +64 लगभग पूरी तरह से गुण निर्भरता +64 स्थानीय गुण आबादी +64 लगभग पूरी तरह से गुण निर्भरता +64 स्थानीय गुण आबादी +64 लगभग पूरी तरह से गुण निर्भरता +65 इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है आधारभूत प्रोफ़ाइल में भी +65 आधारभूत property प्रोफ़ाइल +66 उन्हें जाना जाता है उत्कल मणि +66 उत्कल मणि नाम-आधारित उन्हें +67 फ्रेंच फ्लेमिश को देखें अधिक जानकारी के लिए +67 अधिक गुण जानकारी के लिए +68 इस नदी का ज्यादातर अंश प्रवाहित होता है पाकिस्तान में +68 प्रवाहित होता है property इस नदी का ज्यादातर अंश +68 प्रवाहित होता है property पाकिस्तान में +69 मत्रूह मुहाफ़ज़ाह स्थित है लीबियाई रेगिस्तान का हिस्सा +69 सीवा नख़लिस्तान स्थित है ओसिस +69 ओसिस स्थित है लीबियाई रेगिस्तान का हिस्सा +70 राज्य की राजधानी property बंगलुरु शहर +70 बंगलुरु शहर property भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता +70 भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता property प्रौद्योगिकी का +72 उनका प्रकाशित हुआ एक कहानी संग्रह +72 उनका प्रकाशित हुआ दो निबंध संग्रह +73 पद्मनाभ दत्त लिखा है सुपद्य व्याकरण +73 15 वीं शताब्दी लिखा है सुपद्य व्याकरण +74 अलबामा पश्चिम में फ्लोरिडा +74 फ्लोरिडा दक्षिण में अलबामा +75 यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के होबार्ट शहर में +75 यह property ऑस्ट्रेलिया के होबार्ट शहर में +75 यह property होबार्ट शहर में +75 होबार्ट property शहर में +77 योगीजनों के ज्ञान के द्वारा लीना ब्रह्म में लीन हो जाने को +77 ब्रह्म में property लीन हो जाने को +77 ब्रह्म में property लीन हो जाने को +78 कुछ लोगों ने विभाजित किया इसे +78 इंडोचायनीज़ property इसे +78 इंडोमलायन property इसे +79 प्रयोगशील property_of प्रवृत्तियाँ +79 प्रश्रय देने लगी होंगी property प्रयोगशील +79 प्रश्रय देने लगी होंगी property प्रवृत्तियाँ +80 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है वर्षों की संख्या +80 ईसा पूर्व गुण-विशेषण वर्षों की संख्या +80 ईसा मसीह के जन्म से पूर्व गुण-विशेषण वर्षों की संख्या +81 विश्वामित्र द्वारा सजावट सीता राम को +81 जयमाल property सीता राम को +82 स्थान का नाम पड़ा वर्ष +82 विभिन्न स्रोत बटे हुए हैं तथ्य +83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग +83 विभिन्न विभाग के अलग-अलग अध्यक्ष +83 अलग-अलग होते हैं अध्यक्ष +84 एल्बम से तीसरा कट जारी किया गया 2006 के मध्य में +84 एकलों के बीच property जारी किया गया +84 एक property जारी किया गया +86 1900 के आसपास बहुत से विकासों ने बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये +86 परिणाम बेहतर निमोनिया से पीड़ित लोगों के लिये +86 1900 के आसपास बहुत से विकासों ने बेहतर कर दिया था परिणाम +86 निमोनिया से पीड़ित लोगों के लिये बेहतर परिणाम +87 आप प्रचार और प्रसार में योगदान है अपने पिता के समान +87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार प्रचार और प्रसार में योगदान है अपने पिता के समान +88 मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं +88 केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के +93 मक्खियों से खाद्य एवं पेय पदार्थो को बचाना इस रोग के प्रतिषेधात्मक उपचार में +93 इस property रोग +93 इस property प्रतिषेधात्मक +93 इस property प्रतिषेधात्मक +93 इस property प्रतिषेधात्मक +94 यह संदर्भित करता है प्रतिस्पर्धी टीम की राष्ट्रीयता +94 राष्ट्रीयता property राष्ट्रीयता +95 सड़क मार्ग रत्नागिरी के लिए सीधी बस सेवा है +95 बस सेवा रत्नागिरी के लिए सीधी +95 बस सेवा है रत्नागिरी के लिए +96 शिल्पी निर्माण लकड़ी के ब्लाकों +96 छपाई गुण लकड़ी के ब्लाकों +96 जिसका उत्पादन लकड़ी के ब्लाकों +97 विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है विधि बनाने वाली प्रयोग में आता है +97 सरकारी property विधि बनाने वाली +98 उत्तर प्रदेश के बलिया जिले में स्थित है स्थित बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में स्थान बलिया शहर से थोड़ी दूर पश्चिम में +98 उत्तर प्रदेश के बलिया जिले में property थोड़ी दूर +98 उत्तर प्रदेश के बलिया जिले में property पश्चिम में +99 उसे किया करते थे पिता की हत्या +99 अन्य सम्राट किया करते थे पिता की हत्या +100 प्रत्येक खिलाड़ी के लिये निर्धारित हवाओं की स्थिति +100 पासा फेंककर निर्धारित हवाओं की स्थिति +101 हाइपरयूरीसेमिया होता है वात रोग का मूल कारण +101 वात रोग का property मूल +101 मूल property वात रोग का +103 इसका उदगम स्थान है सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग +103 सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है हिमालय पर्वत के नीचे का ढलुवा भाग +104 परम्परागत चित्रकला का प्राधान्य था +104 उन दिनों पर गुण-संबंधी परम्परागत चित्रकला का +104 प्राधान्य काल-विशेषण उन दिनों पर +105 कहानियाँ हो सकती हैं किसी देश या समय की +105 समय हो सकती हैं किसी देश या समय की +107 2010 को सम्पन्न हुआ दर्शन -- परिषद् +107 दर्शन -- परिषद् के नाम से सम्पन्न हुआ +108 उनका देहांत हो गया रथयात्रा के दिन +108 उनका आयु 47 वर्ष की अल्पायु में +108 देहांत समय सन 1533 में +109 इसे कहा जाता है पांसिल्क +109 यह अक्सर देखा जाता है तालाब में +110 वे बने तीसरे ब्रिटिश प्रबंधक +110 जिनने एकाधिक अवसर पर यूरोपियन कप जीता property वे +110 जिनने एकाधिक अवसर पर यूरोपियन कप जीता property वे +110 जिनने एकाधिक अवसर पर यूरोपियन कप जीता property वे +110 जिनने एकाधिक अवसर पर यूरोपियन कप जीता property वे +111 मॉस रोक रखा जाता है मिट्टी में +111 जल रोकने का मॉस से +112 महाभारत property प्राचीन इतिहास कथाओं आदि का भण्डार +112 प्राचीन property इतिहास +112 इतिहास property कथाओं +112 कथाओं property उपदेशों diff --git a/GSoC25_H/IndIE/hindi-benchie/gen_extractions.py b/GSoC25_H/IndIE/hindi-benchie/gen_extractions.py new file mode 100644 index 0000000..dbf35d2 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/gen_extractions.py @@ -0,0 +1,39 @@ + +''' +this file generates benchie compatible extractions from munnwar data +sirf munnwar wale data ke liye applicable hai +''' + +import pandas as pd +df = pd.read_hdf('../../allData/indie-extractions/extractions_run6_hindi_benchie.h5',key='hi') +# file = open('indie_explicit.txt','w') +# for i, row in df.iterrows(): +# ml = [] +# for e in row['extractions']: +# ml += e +# for m in ml: +# file.write(str(i+1)+'\t'+m[0]+'\t'+m[1]+'\t'+m[2]+'\n') +# file.close() + +df2 = pd.read_hdf('../../allData/indie-extractions/munnwar.h5',key='hi') +print(df2) +df3 = pd.read_hdf('../../allData/indie-extractions/munnwar_rand.h5',key='hi') +df4 = pd.concat([df2,df3]).reset_index(drop=True) +df4['sentence'] = df4['sentence'].apply(lambda d: d.strip()) +print(df4) +df4.at[1,'sentence'] = "अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना ." +df4.at[2,'sentence'] = "केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना ." + + +file = open('sents.txt','r') +content = file.readlines() +file.close() + +file = open('extractions/benchie_faruqui.txt','w') +for i, sent in enumerate(content): + sent = sent.split('\t')[1].strip() + for m in df4.loc[list(df4['sentence'] == sent).index(True)]['extractions']: + file.write(str(i+1)+'\t'+m[0]+'\t'+m[1]+'\t'+m[2]+'\n') + # print('<'+df4.loc[i]['sentence']+'>') + # input('wait') +file.close() \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/gen_sents.py b/GSoC25_H/IndIE/hindi-benchie/gen_sents.py new file mode 100644 index 0000000..0492b2a --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/gen_sents.py @@ -0,0 +1,22 @@ +import pickle + +file = open('hindi_benchie_gold.txt','r') +content = file.readlines() +file.close() + +ml = [] +file = open('sents.txt','w') +for line in content: + if 'sent_id:' in line: + file.write(line) + ml.append(' '.join(line.split('\t')[1:]).strip()) +file.close() + +# print(ml[:3]) +# file = open('sents.pkl','wb') +# pickle.dump(ml,file) +# file.close() + +# file = open('sents.txt','w') +# file.write('\n'.join(ml)) +# file.close() diff --git a/GSoC25_H/IndIE/hindi-benchie/hindi_benchie_gold.txt b/GSoC25_H/IndIE/hindi-benchie/hindi_benchie_gold.txt new file mode 100644 index 0000000..afa3387 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/hindi_benchie_gold.txt @@ -0,0 +1,963 @@ +sent_id:1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +------ Cluster 1 ------ +[शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] +{a} शक्तिरूपी --> property --> माया [की] +{b} कार्यरूप --> property --> जगत [को] +================================================================================================================================================================================== +sent_id:2 अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +------ Cluster 1 ------ +अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता +{a} ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट +{b} अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता +================================================================================================================================================================================== +sent_id:3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +------ Cluster 1 ------ +[विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा +[केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +[भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +{a} विवादित --> property --> अंगुलि चिह्नों [का] +{b} केन्द्रीय --> property --> सरकार के विभागों +{c} भारत --> property --> सरकार के उपक्रमों +================================================================================================================================================================================== +sent_id:4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +------ Cluster 1 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} प्रसिद्ध --> property --> 007 के गुप्त नाम से +------ Cluster 2 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट +[फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{c} प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से +{d} 007 [के] --> property --> गुप्त नाम [से] +------ Cluster 3 ------ +[007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में +{a} यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध +{b} फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +================================================================================================================================================================================== +sent_id:5 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +------ Cluster 1 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +------ Cluster 2 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +================================================================================================================================================================================== +sent_id:6 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +------ Cluster 1 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को +{a} 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में +------ Cluster 2 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{b} नवीनतम --> property --> वेतनमानों [को] +------ Cluster 3 ------ +[01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल --> property --> 2009 से +{b} नवीनतम --> property --> वेतनमानों [को] +================================================================================================================================================================================== +sent_id:7 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +------ Cluster 1 ------ +[गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर +01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की +{c} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] +------ Cluster 2 ------ +[गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर +01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल +================================================================================================================================================================================== +sent_id:8 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +------ Cluster 1 ------ +[06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +------ Cluster 2 ------ +[06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +================================================================================================================================================================================== +sent_id:9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +------ Cluster 1 ------ +06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था +------ Cluster 2 ------ +06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म +------ Cluster 3 ------ +06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} +{a} 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था +================================================================================================================================================================================== +sent_id:10 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट +{a} 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया +{b} पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट +================================================================================================================================================================================== +sent_id:11 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +------ Cluster 1 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +{c} कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} +------ Cluster 2 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +[1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +================================================================================================================================================================================== +sent_id:12 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{a} 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में +{b} [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{c} दूसरा --> property --> सीज़न +================================================================================================================================================================================== +sent_id:13 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +------ Cluster 1 ------ +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का +{a} 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया +================================================================================================================================================================================== +sent_id:14 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +------ Cluster 1 ------ +[1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से +{a} 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ +{b} शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:15 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +------ Cluster 1 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस +अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +------ Cluster 2 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा +अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +================================================================================================================================================================================== +sent_id:16 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +------ Cluster 1 ------ +[1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त +गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री +{a} 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया +{b} स्वायत्तशासी --> property --> प्रान्त +{c} इसके पहले --> property --> मुख्य मन्त्री +================================================================================================================================================================================== +sent_id:17 हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +------ Cluster 1 ------ +हिन्दी प्रचार सभा --> थी --> एक आन्दोलन +हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ +{a} भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] +================================================================================================================================================================================== +sent_id:18 बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +------ Cluster 1 ------ +[बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा +{a} बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा +{b} कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर +{c} एक अनूठी --> property --> आभा +================================================================================================================================================================================== +sent_id:19 तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +------ Cluster 1 ------ +सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +------ Cluster 2 ------ +सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] +तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू +{a} सोनू --> बन चुके हैं --> अब तक +------ Cluster 3 ------ +सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +================================================================================================================================================================================== +sent_id:20 कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +------ Cluster 1 ------ +कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण +कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] +{a} [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण +{b} सबसे अधिक --> property --> प्रयोगनीय +================================================================================================================================================================================== +sent_id:21 बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +------ Cluster 1 ------ +सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +{a} [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] +{b} राजधानी --> property --> चेकोस्लोवाकिया की +================================================================================================================================================================================== +sent_id:22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +------ Cluster 1 ------ +वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +------ Cluster 2 ------ +वे --> हैं --> प्रथम भारतीय +[राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +------ Cluster 3 ------ +[योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] +{a} योग एवं --> property --> शिक्षा +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +================================================================================================================================================================================== +sent_id:23 सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +------ Cluster 1 ------ +[सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +[स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +{a} स्कूल की --> property --> पढ़ाई [पूरी करने तक] +{b} वित्तीय --> property --> सहायता [भी] +================================================================================================================================================================================== +sent_id:24 आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +------ Cluster 1 ------ +यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए +यह स्थान --> दर्शनीय केन्द्र है --> आज भी +{a} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 2 ------ +यह स्थान --> है --> [दर्शनीय]{a} केन्द्र +[दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए +[दर्शनीय]{a} केन्द्र --> है --> आज भी +{a} दर्शनीय --> property --> केन्द्र +{b} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 3 ------ +यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय +{a} दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए +{b} लोगों के लिए --> property --> क्षेत्र के +------ Cluster 4 ------ +यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र +{a} दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए +{b} क्षेत्र के --> property --> लोगों के लिए +================================================================================================================================================================================== +sent_id:25 इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +------ Cluster 1 ------ +पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का +इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] +{a} प्रतिनिधित्व --> property --> करता है +------ Cluster 2 ------ +इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण +================================================================================================================================================================================== +sent_id:26 मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +------ Cluster 1 ------ +मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की +[शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं +{a} शब्द की --> property --> आत्मा [समझकर ही] +{b} इस श्रेष्ठ --> property --> तत्त्व की +================================================================================================================================================================================== +sent_id:27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +------ Cluster 1 ------ +[हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में +{a} हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] +================================================================================================================================================================================== +sent_id:28 उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +------ Cluster 1 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 2 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 3 ------ +उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को +{a} बच्चे को --> देने से --> स्पष्ट इंकार कर दिया +================================================================================================================================================================================== +sent_id:29 शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +------ Cluster 1 ------ +[शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से +{a} तुलनात्मक अध्ययन --> property --> शिक्षा का +================================================================================================================================================================================== +sent_id:30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +------ Cluster 1 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा +{a} भारतीय --> property --> रेल [द्वारा संचालित] +{b} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 2 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 3 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +================================================================================================================================================================================== +sent_id:31 वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +------ Cluster 1 ------ +यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 2 ------ +[यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 3 ------ +यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +------ Cluster 4 ------ +[वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन +{a} पश्चिम बंगाल का --> property --> यह शहर +{b} वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +================================================================================================================================================================================== +sent_id:32 सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +------ Cluster 1 ------ +सिलकोट --> है --> एक गाँव +सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +{a} गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} +{c} कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] +{d} उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +------ Cluster 2 ------ +सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का +{a} सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के +------ Cluster 3 ------ +सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का +{a} सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] +------ Cluster 4 ------ +सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव +{a} सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का +================================================================================================================================================================================== +sent_id:33 एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +------ Cluster 1 ------ +[एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में +{a} तकनीकी केंद्र [को] --> property --> एयर लाइन [के] +================================================================================================================================================================================== +sent_id:34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +------ Cluster 1 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] +{c} [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{d} चीफ कोर्ट के --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा +================================================================================================================================================================================== +sent_id:35 किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +------ Cluster 1 ------ +बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को +बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से +================================================================================================================================================================================== +sent_id:36 जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +------ Cluster 1 ------ +विक्रम ने --> सोचा --> एक हल +विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल +================================================================================================================================================================================== +sent_id:37 सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +------ Cluster 1 ------ +शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 2 ------ +शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का +------ Cluster 3 ------ +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 4 ------ +सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +================================================================================================================================================================================== +sent_id:38 मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +------ Cluster 1 ------ +मर्लगोंड --> है --> एक गाँव +मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में +मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 2 ------ +मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में +एक गाँव है --> property --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 3 ------ +मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> कुभीर मण्डल में +भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] +------ Cluster 4 ------ +मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का +मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में +{a} अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +{b} कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +================================================================================================================================================================================== +sent_id:39 बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +------ Cluster 1 ------ +[व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ +बाद में --> लिखे गये --> अनेक ग्रन्थ +{a} व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर +================================================================================================================================================================================== +sent_id:40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +------ Cluster 1 ------ +[1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में +{a} 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में +{b} इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता +================================================================================================================================================================================== +sent_id:41 उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +------ Cluster 1 ------ +[उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम +इस जगह का नाम --> रखा गया --> रुस्तम खान +{a} उनके --> property --> नाम पर +------ Cluster 2 ------ +उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} +{a} रुस्तम खान --> रखा गया --> जगह का नाम +================================================================================================================================================================================== +sent_id:42 कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +------ Cluster 1 ------ +कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना +[अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +{a} [अपने] घर पर ही --> property --> रहना +------ Cluster 2 ------ +कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना +{a} [अपने] घर पर ही --> property --> रहना +{b} [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +================================================================================================================================================================================== +sent_id:43 मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +------ Cluster 1 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी +मार्च 2001 में --> वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 2 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी +मार्च 2001 में --> वापसी हुई [फिर] --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 3 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी +मार्च 2001 में --> [फिर] वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +================================================================================================================================================================================== +sent_id:44 इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +------ Cluster 1 ------ +[इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा +3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला +{a} आधारशिला --> property --> इसकी रचना की +------ Cluster 2 ------ +3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +[इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +{a} इसकी --> property --> रचना की +================================================================================================================================================================================== +sent_id:45 इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +------ Cluster 1 ------ +वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से +इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह +================================================================================================================================================================================== +sent_id:46 त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +------ Cluster 1 ------ +त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से +त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में +{a} सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से +------ Cluster 2 ------ +त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से +{a} चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से +================================================================================================================================================================================== +sent_id:47 मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +------ Cluster 1 ------ +उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] +{a} मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] +------ Cluster 2 ------ +उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} +{a} हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त +------ Cluster 3 ------ +मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने +================================================================================================================================================================================== +sent_id:48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +------ Cluster 1 ------ +काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में +{a} काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से +------ Cluster 2 ------ +काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} +{a} काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में +================================================================================================================================================================================== +sent_id:49 हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +------ Cluster 1 ------ +[हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर +{a} हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व +{b} [और] मुस्लिमों के --> property --> सभी पर्व +------ Cluster 2 ------ +हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व +{a} मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व +================================================================================================================================================================================== +sent_id:50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को +{a} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} +{b} 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} +{c} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में +{d} 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में +================================================================================================================================================================================== +sent_id:51 यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +------ Cluster 1 ------ +यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल +यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में +{a} फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:52 द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +------ Cluster 1 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 2 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 3 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 4 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +[आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +================================================================================================================================================================================== +sent_id:53 यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +------ Cluster 1 ------ +यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +------ Cluster 2 ------ +यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +================================================================================================================================================================================== +sent_id:54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +------ Cluster 1 ------ +[तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग +{a} समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +{b} तटीय --> property --> कर्नाटक [के] +{c} भोजन में --> property --> [तटीय]{b} कर्नाटक के +{d} नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +================================================================================================================================================================================== +sent_id:55 कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +------ Cluster 1 ------ +कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] +{a} वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] +================================================================================================================================================================================== +sent_id:56 सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +------ Cluster 1 ------ +[सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड +{a} सिफियस चतुर्थ की --> property --> श्रेणी +================================================================================================================================================================================== +sent_id:57 यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +------ Cluster 1 ------ +यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +------ Cluster 2 ------ +यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +================================================================================================================================================================================== +sent_id:58 चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +------ Cluster 1 ------ +इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} +{a} इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से +================================================================================================================================================================================== +sent_id:59 कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +------ Cluster 1 ------ +कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके +कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} +{a} कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में +{b} राजा की --> property --> आयु में +================================================================================================================================================================================== +sent_id:60 अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +------ Cluster 1 ------ +[अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] +{a} अभ्रक [आदि] की --> property --> खानों में +================================================================================================================================================================================== +sent_id:61 इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +------ Cluster 1 ------ +उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} उन्होंने --> लिखे हैं --> [और] उपन्यास +------ Cluster 2 ------ +इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +------ Cluster 3 ------ +इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +================================================================================================================================================================================== +sent_id:62 वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +------ Cluster 1 ------ +वो --> हैं --> मुख्य न्यायाधीश +पहले दलित --> property --> मुख्य न्यायाधीश +[और] पहले मलयाली --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश +{a} पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश +================================================================================================================================================================================== +sent_id:63 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +------ Cluster 1 ------ +[6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{a} 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +------ Cluster 2 ------ +6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने +{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +================================================================================================================================================================================== +sent_id:64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +------ Cluster 1 ------ +स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर +{a} [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी +{b} चाय के --> निर्भर रहती है --> व्यापार पर +================================================================================================================================================================================== +sent_id:65 इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +------ Cluster 1 ------ +इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] +================================================================================================================================================================================== +sent_id:66 उन्हें उत्कल मणि के नाम से जाना जाता है . +------ Cluster 1 ------ +उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से +{a} उत्कल मणि के --> property --> नाम से +------ Cluster 2 ------ +उन्हें --> के नाम से जाना जाता है --> उत्कल मणि +------ Cluster 3 ------ +उन्हें --> नाम से जाना जाता है --> उत्कल मणि के +================================================================================================================================================================================== +sent_id:67 अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +------ Cluster 1 ------ +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +------ Cluster 2 ------ +कृपया --> देखें --> फ्रेंच फ्लेमिश को +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +================================================================================================================================================================================== +sent_id:68 इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +------ Cluster 1 ------ +[इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में +{a} इस नदी का --> property --> ज्यादातर अंश +================================================================================================================================================================================== +sent_id:69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +------ Cluster 1 ------ +[मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का +जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} +{a} अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का +{b} [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) +================================================================================================================================================================================== +sent_id:70 राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +------ Cluster 1 ------ +[राज्य की]{a} राजधानी --> है --> बंगलुरु शहर +[जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का +{a} राज्य की --> property --> राजधानी +{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में +================================================================================================================================================================================== +sent_id:71 ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +------ Cluster 1 ------ +ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए +{b} [और] भयावह --> property --> कहानियों के लिए +------ Cluster 2 ------ +ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों +{b} [और] भयावह --> property --> कहानियों +================================================================================================================================================================================== +sent_id:72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +------ Cluster 1 ------ +उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} +{a} उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह +================================================================================================================================================================================== +sent_id:73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +------ Cluster 1 ------ +पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण +( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +------ Cluster 2 ------ +पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण +{a} ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने +------ Cluster 3 ------ +पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा +{a} ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +================================================================================================================================================================================== +sent_id:74 इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +------ Cluster 1 ------ +इसके पश्चिम में --> स्थित हैं --> अलबामा +[इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} +{a} राज्य --> property --> फ्लोरिडा +================================================================================================================================================================================== +sent_id:75 यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +------ Cluster 1 ------ +यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर में +------ Cluster 2 ------ +यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] +================================================================================================================================================================================== +sent_id:76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +------ Cluster 1 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +------ Cluster 2 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +================================================================================================================================================================================== +sent_id:77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +------ Cluster 1 ------ +आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को +{a} योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में +================================================================================================================================================================================== +sent_id:78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +------ Cluster 1 ------ +इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में +इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से +इसे --> विभाजित किया है --> कुछ लोगों ने +{a} इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में +{b} इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] +================================================================================================================================================================================== +sent_id:79 पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +------ Cluster 1 ------ +[पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +------ Cluster 2 ------ +[पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +================================================================================================================================================================================== +sent_id:80 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +------ Cluster 1 ------ +5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +------ Cluster 2 ------ +5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +================================================================================================================================================================================== +sent_id:81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +------ Cluster 1 ------ +सीता --> पहनाती हैं --> राम को जयमाल +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 2 ------ +सीता --> पहनाती हैं --> जयमाल +सीता --> पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 3 ------ +सीता --> जयमाल पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +================================================================================================================================================================================== +sent_id:82 विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +------ Cluster 1 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर +[इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +------ Cluster 2 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +================================================================================================================================================================================== +sent_id:83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +------ Cluster 1 ------ +प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +------ Cluster 2 ------ +प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +================================================================================================================================================================================== +sent_id:84 एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +------ Cluster 1 ------ +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद +{a} तीसरा कट --> property --> एल्बम [से] +================================================================================================================================================================================== +sent_id:85 चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +------ Cluster 1 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> नहीं थे --> [कोई] [और] मानक +[चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक +------ Cluster 2 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में +================================================================================================================================================================================== +sent_id:86 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +------ Cluster 1 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को +[1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +------ Cluster 2 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +================================================================================================================================================================================== +sent_id:87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +------ Cluster 1 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में +------ Cluster 2 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में +================================================================================================================================================================================== +sent_id:88 उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +------ Cluster 1 ------ +केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले +{a} मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा +================================================================================================================================================================================== +sent_id:89 जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +------ Cluster 1 ------ +इश -- डू में --> सामना होता है --> दो प्राणियों का +इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में +================================================================================================================================================================================== +sent_id:90 ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +------ Cluster 1 ------ +ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में +------ Cluster 2 ------ +ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] +उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] +================================================================================================================================================================================== +sent_id:91 विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +------ Cluster 1 ------ +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में +{a} किसानों के --> property --> दूध विपणन के [पुराने] तरीके +{b} [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के +================================================================================================================================================================================== +sent_id:92 उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +------ Cluster 2 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +================================================================================================================================================================================== +sent_id:93 इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +------ Cluster 1 ------ +[इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 2 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> बचाना [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 4 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को +================================================================================================================================================================================== +sent_id:94 यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +------ Cluster 1 ------ +यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को +यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को +{a} राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की +================================================================================================================================================================================== +sent_id:95 सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +------ Cluster 1 ------ +सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से +सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से +================================================================================================================================================================================== +sent_id:96 छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +------ Cluster 1 ------ +छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का +जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार +{a} ब्लाकों का --> प्रयोग होता था --> लकड़ी के +================================================================================================================================================================================== +sent_id:97 यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +------ Cluster 1 ------ +यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये +{a} सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली +{b} यह --> property --> शब्द +================================================================================================================================================================================== +sent_id:98 यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +------ Cluster 1 ------ +यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में +यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में +{a} बलिया जिले में --> property --> उत्तर प्रदेश के +{b} पश्चिम में --> स्थित है --> बलिया शहर से +================================================================================================================================================================================== +sent_id:99 उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +------ Cluster 1 ------ +उन्होने --> हत्या नहीं करवाई --> पिता की +उन्होने --> हत्या नहीं करवाई --> उसेक बाद +अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या +{a} हत्या --> करते थे --> पिता की +================================================================================================================================================================================== +sent_id:100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +------ Cluster 1 ------ +हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर +प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का +सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का +================================================================================================================================================================================== +sent_id:101 हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +------ Cluster 1 ------ +हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण +================================================================================================================================================================================== +sent_id:102 यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +------ Cluster 1 ------ +केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण +केरल --> प्रसिद्ध है --> विश्व भर में +================================================================================================================================================================================== +sent_id:103 इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +------ Cluster 1 ------ +इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} +{a} सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका +{b} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} +{c} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग +================================================================================================================================================================================== +sent_id:104 दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +------ Cluster 1 ------ +[उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] +उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में +================================================================================================================================================================================== +sent_id:105 ये कहानियाँ किसी देश या समय की हो सकती हैं . +------ Cluster 1 ------ +ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की +{a} ये --> property --> कहानियाँ +================================================================================================================================================================================== +sent_id:106 और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +------ Cluster 1 ------ +[और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को +================================================================================================================================================================================== +sent_id:107 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +------ Cluster 1 ------ +2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] +================================================================================================================================================================================== +sent_id:108 यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +------ Cluster 1 ------ +यहीं पर --> देहांत हो गया --> उनका +सन 1533 में --> देहांत हो गया --> उनका +47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका +रथयात्रा के दिन --> देहांत हो गया --> उनका +{a} अल्पायु [में] --> property --> 47 वर्ष [की] +================================================================================================================================================================================== +sent_id:109 इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +------ Cluster 1 ------ +इसे --> कहा जाता है --> पाण्सिल्क [भी] +यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] +================================================================================================================================================================================== +sent_id:110 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +------ Cluster 1 ------ +वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक +जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप +================================================================================================================================================================================== +sent_id:111 मॉस से मिट्टी में जल रोक रखा जाता है . +------ Cluster 1 ------ +मॉस से --> जल रोक रखा जाता है --> मिट्टी में +------ Cluster 2 ------ +मॉस से --> रोक रखा जाता है --> जल +मिट्टी में --> रोक रखा जाता है --> जल +================================================================================================================================================================================== +sent_id:112 महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +------ Cluster 1 ------ +महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का +{a} वर्तमान रूप --> property --> महाभारत का diff --git a/GSoC25_H/IndIE/hindi-benchie/indie_explicit_sample.txt b/GSoC25_H/IndIE/hindi-benchie/indie_explicit_sample.txt new file mode 100644 index 0000000..c85fa05 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/indie_explicit_sample.txt @@ -0,0 +1,4 @@ +52 Ram eats apple +52 Ram eats orange +52 apple eats and orange +52 Manohar is Ram \ No newline at end of file diff --git a/GSoC25_H/IndIE/hindi-benchie/left_out_sents.txt b/GSoC25_H/IndIE/hindi-benchie/left_out_sents.txt new file mode 100644 index 0000000..59e01ba --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/left_out_sents.txt @@ -0,0 +1,32 @@ +found to be ungrammatical by annotators +लेक एक्सप्रेस साल देर से मिशिगन झील के पार यात्रा प्रत्येक गिरावट के वसंत तक चलता है . +रंग रेगिस्तान रेत में दाईं ओर प्रदर्शित होता है . +एक अन्य फ़िल्म सोल्जर में देरी के कारण उनकी पहली रिलीज़ फ़िल्म दिल से ... +प्रालंब प्राकृतिक आसंजन द्वारा स्थिति में रहता है जब तक चिकित्सा पूरा हो गया है . + +repeated sentence structure +पोतुमर्रु ( कृष्णा ) में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के कृष्णा जिले का एक गाँव है . +तोपुदुर्ति ( अनंतपुर ) में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अनंतपुर जिले का एक गाँव है . +1881 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +4885 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +तडिगाँव , बाराकोट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के चम्पावत जिले का एक गाँव है . +च्यूडी , सल्ट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के अल्मोड़ा जिले का एक गाँव है . +कोयचिचल , बेज्जूर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +2005 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +4974 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +पगिडिरायि ( कर्नूलु ) में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के कर्नूलु जिले का एक गाँव है . + +improper script +गुरुमूर्ति का नाम स्व ç र्णम अक्षरों में लिखा जा सकता है . + +difficult sentence structure +प्रटीन , सेलूलोज और स्टार्च जैव -- तंत्रों में सामान्यतः जल -- विघटन और फिर आक्सीकरण द्वारा अवक्रमित किये जाते हैं . +उसे पत्रसंग्रह ' इपिसिल्स ' में से भी कई पत्रों में इसी आशय के विचार प्रकट किए गए हैं . +पोटैशियम क्लोराइड उर्वरक तथा अन्य पोटैशियम लवणों के बनाने के उद्योग में बड़ी मात्रा में काम आता है . +यहाँ पर जैन धर्म के प्रादुभाव भाटी शासकों के पूर्व के पुंवार शासक के समय से प्राप्त होता है . +पिछले चार मूल्यों को अपनाने के परिणामस्वरूप टीम के अन्य सदस्यों की ओर से सम्मान प्राप्त होता है . +इस प्रकार अपने इन उपविभागों की अपेक्षा विनयपिटक पाँच भागों में विभक्त है . + + + + diff --git a/GSoC25_H/IndIE/hindi-benchie/log.txt b/GSoC25_H/IndIE/hindi-benchie/log.txt new file mode 100644 index 0000000..8a9a7ed --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/log.txt @@ -0,0 +1,15060 @@ +---------------------------------------------------------------------------------------------------- extractions/benchie_indie_converted_gemma3_12b_rule_react_original_updated.txt ---------------------------------------------------------------------------------------------------- + +Extractions to evaluate are +{ + "1": [ + "शक्तिरूपी माया की\tसििद्ध होती है\tकार्यरूप जगत को देखकर ही", + "कार्यरूप जगत को\tसििद्ध होती है\tशक्तिरूपी माया की", + "कार्यरूप जगत को देखकर ही\tशक्तिरूपी माया की सििद्ध होती है\tकार्यरूप जगत को" + ], + "2": [ + "अंगुलि चिह्न विज्ञान प्रतियोगिता\tआयोजित करना\tअखिल भारतीय पुलिस डयूटी मीट", + "अखिल भारतीय पुलिस डयूटी मीट\tproperty\t 1958 से ", + "अखिल भारतीय पुलिस डयूटी मीट\tआयोजित करना\tअंगुलि चिह्न विज्ञान प्रतियोगिता" + ], + "3": [ + "विवादित अंगुलि चिह्नों का\tभेज + ... ... ... + ... ... ... + ... ... ... +Total sents 110 +The state of golden dict after processing of this extraction ("शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को देखकर ही"): 1 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कार्यरूप जगत को सििद्ध होती है शक्तिरूपी माया की"): 1 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है कार्यरूप जगत को"): 1 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['शक्तिरूपी माया की\tसििद्ध होती है\tकार्यरूप जगत को देखकर ही', 'कार्यरूप जगत को\tसििद्ध होती है\tशक्तिरूपी माया की', 'कार्यरूप जगत को देखकर ही\tशक्तिरूपी माया की सििद्ध होती है\tकार्यरूप जगत को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना अखिल भारतीय पुलिस डयूटी मीट"): 2 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अखिल भारतीय पुलिस डयूटी मीट property 1958 से "): 2 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अखिल भारतीय पुलिस डयूटी मीट आयोजित करना अंगुलि चिह्न विज्ञान प्रतियोगिता"): 2 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['अंगुलि चिह्न विज्ञान प्रतियोगिता\tआयोजित करना\tअखिल भारतीय पुलिस डयूटी मीट', 'अखिल भारतीय पुलिस डयूटी मीट\tproperty\t 1958 से ', 'अखिल भारतीय पुलिस डयूटी मीट\tआयोजित करना\tअंगुलि चिह्न विज्ञान प्रतियोगिता'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विवादित अंगुलि चिह्नों का भेजे गए उपक्रमों द्वारा"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपक्रमों द्वारा property विभागों"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विभागों property केन्द्रीय सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारत सरकार के property केन्द्रीय सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारत सरकार के भेजे गए विवादित अंगुलि चिह्नों का"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विभागों परीक्षण करना विवादित अंगुलि चिह्नों का"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए केन्द्रीय सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपक्रमों द्वारा विवादित अंगुलि चिह्नों का भेजे गए भारत सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपक्रमों द्वारा property विभागों केन्द्रीय सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विभागों property केन्द्रीय सरकार के भारत सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("केन्द्रीय सरकार के भेजे गए विवादित अंगुलि चिह्नों का भारत सरकार के"): 3 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['विवादित अंगुलि चिह्नों का\tभेजे गए\tउपक्रमों द्वारा', 'उपक्रमों द्वारा\tproperty\tविभागों', 'विभागों\tproperty\tकेन्द्रीय सरकार के', 'भारत सरकार के\tproperty\tकेन्द्रीय सरकार के', 'केन्द्रीय सरकार के\tभेजे गए\tविवादित अंगुलि चिह्नों का', 'भारत सरकार के\tभेजे गए\tविवादित अंगुलि चिह्नों का', 'विभागों\tपरीक्षण करना\tविवादित अंगुलि चिह्नों का', 'उपक्रमों द्वारा\tभेजे गए\tविवादित अंगुलि चिह्नों का', 'उपक्रमों द्वारा\tविवादित अंगुलि चिह्नों का भेजे गए\tकेन्द्रीय सरकार के', 'उपक्रमों द्वारा\tविवादित अंगुलि चिह्नों का भेजे गए\tभारत सरकार के', 'उपक्रमों द्वारा\tproperty विभागों\tकेन्द्रीय सरकार के', 'विभागों\tproperty केन्द्रीय सरकार के\tभारत सरकार के', 'केन्द्रीय सरकार के\tभेजे गए विवादित अंगुलि चिह्नों का\tभारत सरकार के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह एजेंट मौजूद है बारह पुस्तकों"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गुप्त नाम से property 007 के"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बारह पुस्तकों property फ़्लेमिंग की"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दो लघुकथाओं में property फ़्लेमिंग की"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("007 के प्रसिद्ध गुप्त नाम से"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह एजेंट मौजूद फ़्लेमिंग की"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ़्लेमिंग की मौजूद बारह पुस्तकों"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ़्लेमिंग की मौजूद दो लघुकथाओं में"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बारह पुस्तकों property फ़्लेमिंग की दो लघुकथाओं में"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह एजेंट मौजूद फ़्लेमिंग की बारह पुस्तकों"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह एजेंट मौजूद फ़्लेमिंग की दो लघुकथाओं में"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बारह पुस्तकों फ़्लेमिंग की मौजूद दो लघुकथाओं में"): 4 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह एजेंट\tमौजूद है\tबारह पुस्तकों', 'गुप्त नाम से\tproperty\t007 के', 'बारह पुस्तकों\tproperty\tफ़्लेमिंग की', 'दो लघुकथाओं में\tproperty\tफ़्लेमिंग की', '007 के\tप्रसिद्ध\tगुप्त नाम से', 'यह एजेंट\tमौजूद\tफ़्लेमिंग की', 'फ़्लेमिंग की\tमौजूद\tबारह पुस्तकों', 'फ़्लेमिंग की\tमौजूद\tदो लघुकथाओं में', 'बारह पुस्तकों\tproperty फ़्लेमिंग की\tदो लघुकथाओं में', 'यह एजेंट\tमौजूद फ़्लेमिंग की\tबारह पुस्तकों', 'यह एजेंट\tमौजूद फ़्लेमिंग की\tदो लघुकथाओं में', 'बारह पुस्तकों\tफ़्लेमिंग की मौजूद\tदो लघुकथाओं में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने की एक पत्रिका साधु शुरू"): 5 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("01 अगस्त 1907 को की उन्होंने"): 5 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक पत्रिका साधु शुरू property अपनी"): 5 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक पत्रिका साधु शुरू उन्होंने की 01 अगस्त 1907 को"): 5 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['उन्होंने\tकी\tएक पत्रिका साधु शुरू', '01 अगस्त 1907 को\tकी\tउन्होंने', 'एक पत्रिका साधु शुरू\tproperty\tअपनी', 'एक पत्रिका साधु शुरू\tउन्होंने की\t01 अगस्त 1907 को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नवीनतम वेतनमानों को लागू किया गया है 01 अप्रैल 2009 से"): 6 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कंपनी में लागू किया गया है नवीनतम वेतनमानों को"): 6 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("01 अप्रैल 2009 से लागू किया गया है कंपनी में"): 6 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नवीनतम वेतनमानों को लागू किया गया है कंपनी में"): 6 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("01 अप्रैल 2009 से नवीनतम वेतनमानों को लागू किया गया है कंपनी में"): 6 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['नवीनतम वेतनमानों को\tलागू किया गया है\t01 अप्रैल 2009 से', 'कंपनी में\tलागू किया गया है\tनवीनतम वेतनमानों को', '01 अप्रैल 2009 से\tलागू किया गया है\tकंपनी में', 'नवीनतम वेतनमानों को\tलागू किया गया है\tकंपनी में', '01 अप्रैल 2009 से\tनवीनतम वेतनमानों को लागू किया गया है\tकंपनी में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सुनवाई शुरू हुई साबरमती केंद्रीय जेल के अंदर"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सुनवाई property गोधरा ट्रेन कांड की"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गोधरा ट्रेन कांड की property 01 जून "): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("साबरमती केंद्रीय जेल के अंदर property अहमदाबाद के"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("01 जून हुआ गोधरा ट्रेन कांड की सुनवाई"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गोधरा ट्रेन कांड की शुरू हुई सुनवाई"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सुनवाई शुरू हुई अहमदाबाद के"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई गोधरा ट्रेन कांड की"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("साबरमती केंद्रीय जेल के अंदर सुनवाई शुरू हुई अहमदाबाद के"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सुनवाई property गोधरा ट्रेन कांड की 01 जून "): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गोधरा ट्रेन कांड की शुरू हुई सुनवाई अहमदाबाद के"): 7 +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['सुनवाई\tशुरू हुई\tसाबरमती केंद्रीय जेल के अंदर', 'सुनवाई\tproperty\tगोधरा ट्रेन कांड की', 'गोधरा ट्रेन कांड की\tproperty\t01 जून ', 'साबरमती केंद्रीय जेल के अंदर\tproperty\tअहमदाबाद के', '01 जून \tहुआ\tगोधरा ट्रेन कांड की सुनवाई', 'गोधरा ट्रेन कांड की\tशुरू हुई\tसुनवाई', 'सुनवाई\tशुरू हुई\tअहमदाबाद के', 'साबरमती केंद्रीय जेल के अंदर\tसुनवाई शुरू हुई\tगोधरा ट्रेन कांड की', 'साबरमती केंद्रीय जेल के अंदर\tसुनवाई शुरू हुई\tअहमदाबाद के', 'सुनवाई\tproperty गोधरा ट्रेन कांड की\t01 जून ', 'गोधरा ट्रेन कांड की\tशुरू हुई सुनवाई\tअहमदाबाद के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with b,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied", + "c": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वे नियुक्त हुई न्यायाधीश"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("06 अक्टूबर 1989 को नियुक्त हुई वे"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यायाधीश property सर्वोच्च न्यायालय की"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("06 अक्टूबर 1989 को हुआ नियुक्त हुई"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वे नियुक्त हुई सर्वोच्च न्यायालय की"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यायाधीश वे नियुक्त हुई 06 अक्टूबर 1989 को"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यायाधीश वे नियुक्त हुई सर्वोच्च न्यायालय की"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("06 अक्टूबर 1989 को नियुक्त हुई वे सर्वोच्च न्यायालय की"): 8 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['वे\tनियुक्त हुई\tन्यायाधीश', '06 अक्टूबर 1989 को\tनियुक्त हुई\tवे', 'न्यायाधीश\tproperty\tसर्वोच्च न्यायालय की', '06 अक्टूबर 1989 को\tहुआ\tनियुक्त हुई', 'वे\tनियुक्त हुई\tसर्वोच्च न्यायालय की', 'न्यायाधीश\tवे नियुक्त हुई\t06 अक्टूबर 1989 को', 'न्यायाधीश\tवे नियुक्त हुई\tसर्वोच्च न्यायालय की', '06 अक्टूबर 1989 को\tनियुक्त हुई वे\tसर्वोच्च न्यायालय की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था"): 9 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("06 प्रतिशत थे ऐसे लोग"): 9 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['06 प्रतिशत\tऐसे लोग थे\tजिनका कोई विशेष धर्म नहीं था', '06 प्रतिशत\tथे\tऐसे लोग'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया पहला डाक टिकट"): 10 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 1854 को जारी किया गया इम्पीरियल पोस्टल सर्विस द्वारा"): 10 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 1854 को हुआ जारी किया गया"): 10 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पहला डाक टिकट इम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया 1 अक्टूबर 1854 को"): 10 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['इम्पीरियल पोस्टल सर्विस द्वारा\tजारी किया गया\tपहला डाक टिकट', '1 अक्टूबर 1854 को\tजारी किया गया\tइम्पीरियल पोस्टल सर्विस द्वारा', '1 अक्टूबर 1854 को\tहुआ\tजारी किया गया', 'पहला डाक टिकट\tइम्पीरियल पोस्टल सर्विस द्वारा जारी किया गया\t1 अक्टूबर 1854 को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आंध्र ने पाया कर्नूल को"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्जा पाया 1 अक्टूबर 1953 को"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्जा property राज्य का"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आंध्र ने पाया राज्य का दर्जा"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कर्नूल को पाया राजधानी के साथ"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आंध्र ने पाया 1 अक्टूबर 1953 को"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कर्नूल को आंध्र ने पाया राज्य का दर्जा"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आंध्र ने पाया कर्नूल को राजधानी के साथ"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कर्नूल को आंध्र ने पाया 1 अक्टूबर 1953 को"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्जा पाया 1 अक्टूबर 1953 को आंध्र ने"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राज्य का दर्जा आंध्र ने पाया 1 अक्टूबर 1953 को"): 11 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['आंध्र ने\tपाया\tकर्नूल को', 'दर्जा\tपाया\t1 अक्टूबर 1953 को', 'दर्जा\tproperty\tराज्य का', 'आंध्र ने\tपाया\tराज्य का दर्जा', 'कर्नूल को\tपाया\tराजधानी के साथ', 'आंध्र ने\tपाया\t1 अक्टूबर 1953 को', 'कर्नूल को\tआंध्र ने पाया\tराज्य का दर्जा', 'आंध्र ने\tपाया कर्नूल को\tराजधानी के साथ', 'कर्नूल को\tआंध्र ने पाया\t1 अक्टूबर 1953 को', 'दर्जा\tपाया 1 अक्टूबर 1953 को\tआंध्र ने', 'राज्य का दर्जा\tआंध्र ने पाया\t1 अक्टूबर 1953 को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a,c", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ऑस्ट्रेलिया में ज़ारी किया गया 1 अक्टूबर 2008 को"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यूजीलैंड जारी किया गया दूसरा सीज़न"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ऑस्ट्रेलिया में जारी किया गया दूसरा सीज़न"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को न्यूजीलैंड"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दूसरा सीज़न ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यूजीलैंड ज़ारी किया गया 1 अक्टूबर 2008 को ऑस्ट्रेलिया में"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न न्यूजीलैंड"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 2008 को जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("न्यूजीलैंड जारी किया गया दूसरा सीज़न ऑस्ट्रेलिया में"): 12 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['दूसरा सीज़न\tज़ारी किया गया\t1 अक्टूबर 2008 को', 'न्यूजीलैंड\tज़ारी किया गया\t1 अक्टूबर 2008 को', 'ऑस्ट्रेलिया में\tज़ारी किया गया\t1 अक्टूबर 2008 को', '1 अक्टूबर 2008 को\tजारी किया गया\tदूसरा सीज़न', 'न्यूजीलैंड\tजारी किया गया\tदूसरा सीज़न', 'ऑस्ट्रेलिया में\tजारी किया गया\tदूसरा सीज़न', 'दूसरा सीज़न\tज़ारी किया गया 1 अक्टूबर 2008 को\tन्यूजीलैंड', 'दूसरा सीज़न\tज़ारी किया गया 1 अक्टूबर 2008 को\tऑस्ट्रेलिया में', 'न्यूजीलैंड\tज़ारी किया गया 1 अक्टूबर 2008 को\tऑस्ट्रेलिया में', '1 अक्टूबर 2008 को\tजारी किया गया दूसरा सीज़न\tन्यूजीलैंड', '1 अक्टूबर 2008 को\tजारी किया गया दूसरा सीज़न\tऑस्ट्रेलिया में', 'न्यूजीलैंड\tजारी किया गया दूसरा सीज़न\tऑस्ट्रेलिया में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("रॉबर्ट आइगर ने लिया स्थान"): 13 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर को लिया रॉबर्ट आइगर ने"): 13 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थान property माइकल आइजनर का"): 13 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थान रॉबर्ट आइगर ने लिया 1 अक्टूबर को "): 13 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['रॉबर्ट आइगर ने\tलिया\tस्थान', '1 अक्टूबर को \tलिया\tरॉबर्ट आइगर ने', 'स्थान\tproperty\tमाइकल आइजनर का', 'स्थान\tरॉबर्ट आइगर ने लिया\t1 अक्टूबर को '] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह देश आजाद हुआ 1 अक्टूबर 1960 को"): 14 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शासन से आजाद हुआ इंग्लैंड के"): 14 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 1960 को हुआ आजाद हुआ"): 14 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह देश आजाद हुआ इंग्लैंड के शासन से"): 14 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह देश आजाद हुआ इंग्लैंड से"): 14 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 1960 को यह देश आजाद हुआ इंग्लैंड के शासन से"): 14 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अक्टूबर 1960 को यह देश आजाद हुआ इंग्लैंड से"): 14 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इंग्लैंड के शासन से यह देश आजाद हुआ इंग्लैंड से"): 14 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह देश\tआजाद हुआ\t1 अक्टूबर 1960 को', 'शासन से\tआजाद हुआ\tइंग्लैंड के', '1 अक्टूबर 1960 को\tहुआ\tआजाद हुआ', 'यह देश\tआजाद हुआ\tइंग्लैंड के शासन से', 'यह देश\tआजाद हुआ\tइंग्लैंड से', '1 अक्टूबर 1960 को\tयह देश आजाद हुआ\tइंग्लैंड के शासन से', '1 अक्टूबर 1960 को\tयह देश आजाद हुआ\tइंग्लैंड से', 'इंग्लैंड के शासन से\tयह देश आजाद हुआ\tइंग्लैंड से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को"): 15 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ"): 15 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ्रांस भेज दिया गया अन्य गढ़वाली सैनिकों के साथ"): 15 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अगस्त 1915 में हुआ भेज दिया गया"): 15 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चन्द्रसिंह को भेज दिया गया फ्रांस"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चन्द्रसिंह को भेज दिया गया अन्य गढ़वाली सैनिकों के साथ"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चन्द्रसिंह को भेज दिया गया अंग्रेजों द्वारा"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को फ्रांस"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंग्रेजों द्वारा भेज दिया गया चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ फ्रांस"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अगस्त 1915 में भेज दिया गया अन्य गढ़वाली सैनिकों के साथ चन्द्रसिंह को"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अन्य गढ़वाली सैनिकों के साथ फ्रांस भेज दिया गया चन्द्रसिंह को"): 15 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['अंग्रेजों द्वारा\tभेज दिया गया\tचन्द्रसिंह को', '1 अगस्त 1915 में\tभेज दिया गया\tअन्य गढ़वाली सैनिकों के साथ', 'फ्रांस\tभेज दिया गया\tअन्य गढ़वाली सैनिकों के साथ', '1 अगस्त 1915 में\tहुआ\tभेज दिया गया', 'चन्द्रसिंह को\tभेज दिया गया\tफ्रांस', 'चन्द्रसिंह को\tभेज दिया गया\tअन्य गढ़वाली सैनिकों के साथ', 'चन्द्रसिंह को\tभेज दिया गया\tअंग्रेजों द्वारा', 'अंग्रेजों द्वारा\tभेज दिया गया चन्द्रसिंह को\tफ्रांस', 'अंग्रेजों द्वारा\tभेज दिया गया चन्द्रसिंह को\tअन्य गढ़वाली सैनिकों के साथ', '1 अगस्त 1915 में\tभेज दिया गया अन्य गढ़वाली सैनिकों के साथ\tफ्रांस', '1 अगस्त 1915 में\tभेज दिया गया अन्य गढ़वाली सैनिकों के साथ\tचन्द्रसिंह को', 'अन्य गढ़वाली सैनिकों के साथ\tफ्रांस भेज दिया गया\tचन्द्रसिंह को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसे घोषित किया गया 1 अप्रैल 1946 को"): 16 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गोविन्द बल्लभ पन्त बने मुख्य मन्त्री"): 16 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with c" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसके पहले बने घोषित किया गया"): 16 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with c" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1 अप्रैल 1946 को घोषित किया गया स्वायत्तशासी प्रान्त"): 16 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with c" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसे घोषित किया गया स्वायत्तशासी प्रान्त"): 16 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with c" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री"): 16 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसे घोषित किया गया 1 अप्रैल 1946 को स्वायत्तशासी प्रान्त"): 16 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मुख्य मन्त्री गोविन्द बल्लभ पन्त बने इसके पहले मुख्य मन्त्री"): 16 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['इसे\tघोषित किया गया\t1 अप्रैल 1946 को', 'गोविन्द बल्लभ पन्त\tबने\tमुख्य मन्त्री', 'इसके पहले\tबने\tघोषित किया गया', '1 अप्रैल 1946 को\tघोषित किया गया\tस्वायत्तशासी प्रान्त', 'इसे\tघोषित किया गया\tस्वायत्तशासी प्रान्त', 'गोविन्द बल्लभ पन्त\tबने\tइसके पहले मुख्य मन्त्री', 'इसे\tघोषित किया गया 1 अप्रैल 1946 को\tस्वायत्तशासी प्रान्त', 'मुख्य मन्त्री\tगोविन्द बल्लभ पन्त बने\tइसके पहले मुख्य मन्त्री'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिन्दी प्रचार सभा एक आन्दोलन थी जो आरम्भ हुई"): 17 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक आन्दोलन आरम्भ हुई स्वतन्त्रता आन्दोलन के साथ ही"): 17 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्वतन्त्रता आन्दोलन के साथ ही property भारत के"): 17 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिन्दी प्रचार सभा थी एक आन्दोलन"): 17 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही"): 17 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्वतन्त्रता आन्दोलन के साथ ही एक आन्दोलन आरम्भ हुई भारत के स्वतन्त्रता आन्दोलन के साथ ही"): 17 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['हिन्दी प्रचार सभा\tएक आन्दोलन थी\tजो आरम्भ हुई', 'एक आन्दोलन\tआरम्भ हुई\tस्वतन्त्रता आन्दोलन के साथ ही', 'स्वतन्त्रता आन्दोलन के साथ ही\tproperty\tभारत के', 'हिन्दी प्रचार सभा\tथी\tएक आन्दोलन', 'एक आन्दोलन\tआरम्भ हुई\tभारत के स्वतन्त्रता आन्दोलन के साथ ही', 'स्वतन्त्रता आन्दोलन के साथ ही\tएक आन्दोलन आरम्भ हुई\tभारत के स्वतन्त्रता आन्दोलन के साथ ही'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही"): 18 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चेहरे पर दिखाई पड़ती थी कर्मा के"): 18 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बाल्यकाल से ही दिखाई पड़ती थी कर्मा"): 18 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक अनूठी आभा दिखाई पड़ती थी बाल्यकाल से ही कर्मा"): 18 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['एक अनूठी आभा\tदिखाई पड़ती थी\tबाल्यकाल से ही', 'चेहरे पर\tदिखाई पड़ती थी\tकर्मा के', 'बाल्यकाल से ही\tदिखाई पड़ती थी\tकर्मा', 'एक अनूठी आभा\tदिखाई पड़ती थी बाल्यकाल से ही\tकर्मा'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सोनू बन चुके हैं एक प्रमुख हस्ती"): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तब से बन चुके हैं अब तक "): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारतीय संगीत जगत में बन चुके हैं अब तक "): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सोनू बन चुके हैं भारतीय संगीत जगत में"): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक प्रमुख हस्ती सोनू बन चुके हैं भारतीय संगीत जगत में"): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तब से बन चुके हैं अब तक भारतीय संगीत जगत में"): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अब तक भारतीय संगीत जगत में बन चुके हैं सोनू"): 19 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['सोनू\tबन चुके हैं\tएक प्रमुख हस्ती', 'तब से\tबन चुके हैं\tअब तक ', 'भारतीय संगीत जगत में\tबन चुके हैं\tअब तक ', 'सोनू\tबन चुके हैं\tभारतीय संगीत जगत में', 'एक प्रमुख हस्ती\tसोनू बन चुके हैं\tभारतीय संगीत जगत में', 'तब से\tबन चुके हैं अब तक \tभारतीय संगीत जगत में', 'अब तक \tभारतीय संगीत जगत में बन चुके हैं\tसोनू'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सोवियत दस्तों ने आज़ाद कराया प्राग को"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राग को property राजधानी"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राजधानी property चेकोस्लोवाकिया की"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बर्लिन पर आज़ाद कराया सोवियत दस्तों ने"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चेकोस्लोवाकिया की राजधानी प्राग को"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राग को सोवियत दस्तों ने आज़ाद कराया बर्लिन पर"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राग को सोवियत दस्तों ने आज़ाद कराया चेकोस्लोवाकिया की राजधानी प्राग को"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("क़ब्ज़ा करने के बाद आज़ाद कराया बर्लिन पर सोवियत दस्तों ने"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राग को property राजधानी चेकोस्लोवाकिया की"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बर्लिन पर आज़ाद कराया सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को"): 21 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +After processing all the extractions +['सोवियत दस्तों ने\tआज़ाद कराया\tप्राग को', 'क़ब्ज़ा करने के बाद\tआज़ाद कराया\tबर्लिन पर', 'प्राग को\tproperty\tराजधानी', 'राजधानी\tproperty\tचेकोस्लोवाकिया की', 'बर्लिन पर\tआज़ाद कराया\tसोवियत दस्तों ने', 'सोवियत दस्तों ने\tआज़ाद कराया\tचेकोस्लोवाकिया की राजधानी प्राग को', 'चेकोस्लोवाकिया की\tराजधानी\tप्राग को', 'प्राग को\tसोवियत दस्तों ने आज़ाद कराया\tबर्लिन पर', 'प्राग को\tसोवियत दस्तों ने आज़ाद कराया\tचेकोस्लोवाकिया की राजधानी प्राग को', 'क़ब्ज़ा करने के बाद\tआज़ाद कराया बर्लिन पर\tसोवियत दस्तों ने', 'प्राग को\tproperty राजधानी\tचेकोस्लोवाकिया की', 'बर्लिन पर\tआज़ाद कराया सोवियत दस्तों ने\tचेकोस्लोवाकिया की राजधानी प्राग को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वे प्रथम भारतीय हैं क्षेत्र में"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पद्म श्री सम्मान प्राप्त करने वाले राष्ट्रपति से"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("योग में शिक्षा के"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शिक्षा के क्षेत्र में योग"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राष्ट्रपति से प्राप्त करने वाले पद्म श्री सम्मान"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वे है प्रथम भारतीय"): 22 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['वे\tप्रथम भारतीय हैं\tक्षेत्र में', 'पद्म श्री सम्मान\tप्राप्त करने वाले\tराष्ट्रपति से', 'योग\tमें\tशिक्षा के', 'शिक्षा के\tक्षेत्र में\tयोग', 'राष्ट्रपति से\tप्राप्त करने वाले\tपद्म श्री सम्मान', 'वे\tहै\tप्रथम भारतीय'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वित्तीय सहायता भी दी जाती है पूरी करने तक"): 23 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सभी बच्चों को पूरी करने तक दी जाती है"): 23 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पूरी करने तक दी जाती है पढ़ाई स्कूल की"): 23 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सभी बच्चों को दी जाती है वित्तीय सहायता भी"): 23 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पूरी करने तक वित्तीय सहायता भी दी जाती है सभी बच्चों को"): 23 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['वित्तीय सहायता भी\tदी जाती है\tपूरी करने तक', 'सभी बच्चों को\tपूरी करने तक\tदी जाती है', 'पूरी करने तक दी जाती है\tपढ़ाई\tस्कूल की', 'सभी बच्चों को\tदी जाती है\tवित्तीय सहायता भी', 'पूरी करने तक\tवित्तीय सहायता भी दी जाती है\tसभी बच्चों को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह स्थान दर्शनीय केन्द्र है आज भी"): 24 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्शनीय केन्द्र property लोगों के लिए"): 24 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह स्थान है दर्शनीय केन्द्र"): 24 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह स्थान\tदर्शनीय केन्द्र है\tआज भी', 'दर्शनीय केन्द्र\tproperty\tलोगों के लिए', 'यह स्थान\tहै\tदर्शनीय केन्द्र'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पाणिनीय व्याकरण ही प्रतिनिधित्व करता है इस सम्बन्ध में"): 25 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वेदाङ्ग का प्रतिनिधित्व करता है पाणिनीय व्याकरण ही"): 25 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का"): 25 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इस सम्बन्ध में पाणिनीय व्याकरण ही प्रतिनिधित्व करता है वेदाङ्ग का"): 25 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['पाणिनीय व्याकरण ही\tप्रतिनिधित्व करता है\tइस सम्बन्ध में', 'वेदाङ्ग का\tप्रतिनिधित्व करता है\tपाणिनीय व्याकरण ही', 'पाणिनीय व्याकरण ही\tप्रतिनिधित्व करता है\tवेदाङ्ग का', 'इस सम्बन्ध में\tपाणिनीय व्याकरण ही प्रतिनिधित्व करता है\tवेदाङ्ग का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मैं उपासना करता हूं इस श्रेष्ठ तत्त्व की"): 26 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस श्रेष्ठ तत्त्व की उपासना करता हूं समझकर ही आत्मा"): 26 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आत्मा property शब्द की"): 26 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मैं करता हूं उपासना"): 26 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['मैं\tउपासना करता हूं\tइस श्रेष्ठ तत्त्व की', 'इस श्रेष्ठ तत्त्व की उपासना करता हूं\tसमझकर ही\tआत्मा', 'आत्मा\tproperty\tशब्द की', 'मैं\tकरता हूं\tउपासना'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उल्लेख मिलता है पांच नदियों में से"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ऋग्वेद में मिलता है उल्लेख"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिमाचल प्रदेश में बहने वाली पांच नदियों में से"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उल्लेख property चार का"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिमाचल प्रदेश में बहने वाली पांच नदियों"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पांच नदियों में से चार का"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चार का उल्लेख ऋग्वेद में"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पांच नदियों में से उल्लेख मिलता है ऋग्वेद में"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पांच नदियों में से हिमाचल प्रदेश में बहने वाली पांच नदियों"): 27 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['उल्लेख\tमिलता है\tपांच नदियों में से', 'ऋग्वेद में\tमिलता है\tउल्लेख', 'हिमाचल प्रदेश में\tबहने वाली\tपांच नदियों में से', 'उल्लेख\tproperty\tचार का', 'हिमाचल प्रदेश में\tबहने वाली\tपांच नदियों', 'पांच नदियों\tमें से\tचार का', 'चार का\tउल्लेख\tऋग्वेद में', 'पांच नदियों में से\tउल्लेख मिलता है\tऋग्वेद में', 'पांच नदियों में से\tहिमाचल प्रदेश में बहने वाली\tपांच नदियों'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने स्पष्ट इंकार कर दिया बच्चे को देने से"): 28 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने इंकार कर दिया बच्चे को"): 28 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['उन्होंने\tस्पष्ट इंकार कर दिया\tबच्चे को देने से', 'उन्होंने\tइंकार कर दिया\tबच्चे को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से"): 29 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तुलनात्मक अध्ययन property शिक्षा का"): 29 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शिक्षा का जुड़ा है सभी सामाजिक विज्ञानों से"): 29 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तुलनात्मक अध्ययन जुड़ा है शिक्षा का"): 29 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तुलनात्मक अध्ययन जुड़ा है सभी सामाजिक विज्ञानों से शिक्षा का"): 29 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['तुलनात्मक अध्ययन\tजुड़ा है\tसभी सामाजिक विज्ञानों से', 'तुलनात्मक अध्ययन\tproperty\tशिक्षा का', 'शिक्षा का\tजुड़ा है\tसभी सामाजिक विज्ञानों से', 'तुलनात्मक अध्ययन\tजुड़ा है\tशिक्षा का', 'तुलनात्मक अध्ययन\tजुड़ा है सभी सामाजिक विज्ञानों से\tशिक्षा का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("9110 भारतीय रेल द्वारा संचालित"): 30 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गुजरात क्वीन एक्स्प्रेस द्वारा संचालित भारतीय रेल"): 30 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['9110\tभारतीय रेल द्वारा\tसंचालित', 'गुजरात क्वीन एक्स्प्रेस\tद्वारा संचालित\tभारतीय रेल'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह शहर प्रमुख हिल स्टेशन है वर्तमान में"): 31 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रमुख हिल स्टेशन property पश्चिम बंगाल का"): 31 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह शहर है प्रमुख हिल स्टेशन"): 31 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह शहर\tप्रमुख हिल स्टेशन है\tवर्तमान में', 'प्रमुख हिल स्टेशन\tproperty\tपश्चिम बंगाल का', 'यह शहर\tहै\tप्रमुख हिल स्टेशन'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट एक गाँव है गंगोलीहाट तहसील में"): 32 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत"): 32 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property पिथोरागढ जिले का"): 32 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उत्तराखण्ड राज्य के अन्तर्गत property भारत के"): 32 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पिथोरागढ जिले का property कुमाऊँ मण्डल के"): 32 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट है एक गाँव"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट में गंगोलीहाट तहसील"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट में भारत"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट में उत्तराखण्ड राज्य"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट में कुमाऊँ मण्डल"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिलकोट में पिथोरागढ जिले"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उत्तराखण्ड राज्य के अन्तर्गत एक गाँव property पिथोरागढ जिले का"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property उत्तराखण्ड राज्य के अन्तर्गत भारत के"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property पिथोरागढ जिले का कुमाऊँ मण्डल के"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गंगोलीहाट तहसील सिलकोट में भारत"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गंगोलीहाट तहसील सिलकोट में उत्तराखण्ड राज्य"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गंगोलीहाट तहसील सिलकोट में कुमाऊँ मण्डल"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गंगोलीहाट तहसील सिलकोट में पिथोरागढ जिले"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारत सिलकोट में उत्तराखण्ड राज्य"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारत सिलकोट में कुमाऊँ मण्डल"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भारत सिलकोट में पिथोरागढ जिले"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उत्तराखण्ड राज्य सिलकोट में कुमाऊँ मण्डल"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उत्तराखण्ड राज्य सिलकोट में पिथोरागढ जिले"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कुमाऊँ मण्डल सिलकोट में पिथोरागढ जिले"): 32 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['सिलकोट \tएक गाँव है\tगंगोलीहाट तहसील में', 'एक गाँव\tproperty\tउत्तराखण्ड राज्य के अन्तर्गत', 'एक गाँव\tproperty\tपिथोरागढ जिले का', 'उत्तराखण्ड राज्य के अन्तर्गत\tproperty\tभारत के', 'पिथोरागढ जिले का\tproperty\tकुमाऊँ मण्डल के', 'सिलकोट \tहै\tएक गाँव', 'सिलकोट \tमें\tगंगोलीहाट तहसील', 'सिलकोट \tमें\tभारत', 'सिलकोट \tमें\tउत्तराखण्ड राज्य', 'सिलकोट \tमें\tकुमाऊँ मण्डल', 'सिलकोट \tमें\tपिथोरागढ जिले', 'उत्तराखण्ड राज्य के अन्तर्गत\tएक गाँव property\tपिथोरागढ जिले का', 'एक गाँव\tproperty उत्तराखण्ड राज्य के अन्तर्गत\tभारत के', 'एक गाँव\tproperty पिथोरागढ जिले का\tकुमाऊँ मण्डल के', 'गंगोलीहाट तहसील\tसिलकोट में\tभारत', 'गंगोलीहाट तहसील\tसिलकोट में\tउत्तराखण्ड राज्य', 'गंगोलीहाट तहसील\tसिलकोट में\tकुमाऊँ मण्डल', 'गंगोलीहाट तहसील\tसिलकोट में\tपिथोरागढ जिले', 'भारत\tसिलकोट में\tउत्तराखण्ड राज्य', 'भारत\tसिलकोट में\tकुमाऊँ मण्डल', 'भारत\tसिलकोट में\tपिथोरागढ जिले', 'उत्तराखण्ड राज्य\tसिलकोट में\tकुमाऊँ मण्डल', 'उत्तराखण्ड राज्य\tसिलकोट में\tपिथोरागढ जिले', 'कुमाऊँ मण्डल\tसिलकोट में\tपिथोरागढ जिले'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तकनीकी केंद्र को स्थानापन्न करना है तिरुवनंतपुरम में"): 33 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तकनीकी केंद्र को property एयर लाइन के"): 33 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एयर लाइन के तकनीकी केंद्र को स्थानापन्न करना है"): 33 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['तकनीकी केंद्र को\tस्थानापन्न करना है\tतिरुवनंतपुरम में', 'तकनीकी केंद्र को\tproperty\tएयर लाइन के', 'एयर लाइन के\tतकनीकी केंद्र को\tस्थानापन्न करना है'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दोनों मामले पेश हुए सर लुइस शर्ट"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट property मुख्य न्यायाधीश"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विशेष न्यायाधीश मोहम्मद रजा के सामने property मुख्य न्यायाधीश"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीफ कोर्ट के पेश हुए दोनों मामले"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मुख्य न्यायाधीश पेश हुए दोनों मामले"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट पेश हुए दोनों मामले"): 34 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विशेष न्यायाधीश मोहम्मद रजा के सामने पेश हुए दोनों मामले"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट दोनों मामले पेश हुए चीफ कोर्ट के"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट दोनों मामले पेश हुए मुख्य न्यायाधीश"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट दोनों मामले पेश हुए विशेष न्यायाधीश मोहम्मद रजा के सामने"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट property मुख्य न्यायाधीश विशेष न्यायाधीश मोहम्मद रजा के सामने"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीफ कोर्ट के पेश हुए दोनों मामले मुख्य न्यायाधीश"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीफ कोर्ट के पेश हुए दोनों मामले सर लुइस शर्ट"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीफ कोर्ट के पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मुख्य न्यायाधीश पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट पेश हुए दोनों मामले मुख्य न्यायाधीश"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर लुइस शर्ट पेश हुए दोनों मामले विशेष न्यायाधीश मोहम्मद रजा के सामने"): 34 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['दोनों मामले\tपेश हुए\tसर लुइस शर्ट', 'सर लुइस शर्ट\tproperty\tमुख्य न्यायाधीश', 'विशेष न्यायाधीश मोहम्मद रजा के सामने\tproperty\tमुख्य न्यायाधीश', 'चीफ कोर्ट के\tपेश हुए\tदोनों मामले', 'मुख्य न्यायाधीश\tपेश हुए\tदोनों मामले', 'सर लुइस शर्ट\tपेश हुए\tदोनों मामले', 'विशेष न्यायाधीश मोहम्मद रजा के सामने\tपेश हुए\tदोनों मामले', 'सर लुइस शर्ट\tदोनों मामले पेश हुए\tचीफ कोर्ट के', 'सर लुइस शर्ट\tदोनों मामले पेश हुए\tमुख्य न्यायाधीश', 'सर लुइस शर्ट\tदोनों मामले पेश हुए\tविशेष न्यायाधीश मोहम्मद रजा के सामने', 'सर लुइस शर्ट\tproperty मुख्य न्यायाधीश\tविशेष न्यायाधीश मोहम्मद रजा के सामने', 'चीफ कोर्ट के\tपेश हुए दोनों मामले\tमुख्य न्यायाधीश', 'चीफ कोर्ट के\tपेश हुए दोनों मामले\tसर लुइस शर्ट', 'चीफ कोर्ट के\tपेश हुए दोनों मामले\tविशेष न्यायाधीश मोहम्मद रजा के सामने', 'मुख्य न्यायाधीश\tपेश हुए दोनों मामले\tविशेष न्यायाधीश मोहम्मद रजा के सामने', 'सर लुइस शर्ट\tपेश हुए दोनों मामले\tमुख्य न्यायाधीश', 'सर लुइस शर्ट\tपेश हुए दोनों मामले\tविशेष न्यायाधीश मोहम्मद रजा के सामने'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with c|AND|satisfied but with c", + "b": "not satisfied", + "c": "satisfied but with d", + "d": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मृत्यु हो गई किसी बीमारी की वजह से"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("28 नवम्बर 1694 को हो गई मृत्यु"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मृत्यु property बाशो की"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("किसी बीमारी की वजह से हो गई मृत्यु"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("बाशो की हो गई मृत्यु"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मृत्यु हो गई 28 नवम्बर 1694 को"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("किसी बीमारी की वजह से मृत्यु हो गई 28 नवम्बर 1694 को"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("किसी बीमारी की वजह से मृत्यु हो गई बाशो की"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("28 नवम्बर 1694 को हो गई मृत्यु बाशो की"): 35 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['मृत्यु\tहो गई\tकिसी बीमारी की वजह से', '28 नवम्बर 1694 को\tहो गई\tमृत्यु', 'मृत्यु\tproperty\tबाशो की', 'किसी बीमारी की वजह से\tहो गई\tमृत्यु', 'बाशो की\tहो गई\tमृत्यु', 'मृत्यु\tहो गई\t28 नवम्बर 1694 को', 'किसी बीमारी की वजह से\tमृत्यु हो गई\t28 नवम्बर 1694 को', 'किसी बीमारी की वजह से\tमृत्यु हो गई\tबाशो की', '28 नवम्बर 1694 को\tहो गई मृत्यु\tबाशो की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("विक्रम ने सोचा एक हल"): 36 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तो नहीं हुआ कोई मतैक्य"): 36 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['विक्रम ने\tसोचा\tएक हल', 'तो\tनहीं हुआ\tकोई मतैक्य'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सन 1696 में मुकाबला हुआ फिर एक बार"): 37 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शाही सेना से मुकाबला हुआ फिर पंचायती सेना का"): 37 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सन 1696 में हुआ मुकाबला"): 37 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['सन 1696 में\tमुकाबला हुआ फिर\tएक बार', 'शाही सेना से\tमुकाबला हुआ फिर\tपंचायती सेना का', 'सन 1696 में\tहुआ\tमुकाबला'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड एक गाँव है कुभीर मण्डल में"): 38 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property अदिलाबादु जिले का"): 38 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के"): 38 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आन्ध्रप्रदेश राज्य के अन्तर्गत के property भारत के"): 38 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड है एक गाँव"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड में कुभीर मण्डल"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड का है आन्ध्रप्रदेश राज्य के अन्तर्गत"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड का है अदिलाबादु जिले"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मर्लगोंड का है भारत के"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक गाँव property अदिलाबादु जिले का आन्ध्रप्रदेश राज्य के अन्तर्गत के"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अदिलाबादु जिले का property आन्ध्रप्रदेश राज्य के अन्तर्गत के भारत के"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है अदिलाबादु जिले"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("आन्ध्रप्रदेश राज्य के अन्तर्गत मर्लगोंड का है भारत के"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अदिलाबादु जिले मर्लगोंड का है भारत के"): 38 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['मर्लगोंड \tएक गाँव है\tकुभीर मण्डल में', 'एक गाँव\tproperty\tअदिलाबादु जिले का', 'अदिलाबादु जिले का\tproperty\tआन्ध्रप्रदेश राज्य के अन्तर्गत के', 'आन्ध्रप्रदेश राज्य के अन्तर्गत के\tproperty\tभारत के', 'मर्लगोंड \tहै\tएक गाँव', 'मर्लगोंड \tमें\tकुभीर मण्डल', 'मर्लगोंड \tका है\tआन्ध्रप्रदेश राज्य के अन्तर्गत', 'मर्लगोंड \tका है\tअदिलाबादु जिले', 'मर्लगोंड \tका है\tभारत के', 'एक गाँव\tproperty अदिलाबादु जिले का\tआन्ध्रप्रदेश राज्य के अन्तर्गत के', 'अदिलाबादु जिले का\tproperty आन्ध्रप्रदेश राज्य के अन्तर्गत के\tभारत के', 'आन्ध्रप्रदेश राज्य के अन्तर्गत\tमर्लगोंड का है\tअदिलाबादु जिले', 'आन्ध्रप्रदेश राज्य के अन्तर्गत\tमर्लगोंड का है\tभारत के', 'अदिलाबादु जिले\tमर्लगोंड का है\tभारत के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अनेक ग्रन्थ लिखे गये बाद में"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्शन पक्ष पर लिखे गये व्याकरण के"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बाद में लिखे गये व्याकरण के"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बाद में लिखे गये दर्शन पक्ष पर"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बाद में लिखे गये अनेक ग्रन्थ"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अनेक ग्रन्थ लिखे गये बाद में व्याकरण के"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अनेक ग्रन्थ लिखे गये बाद में दर्शन पक्ष पर"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दर्शन पक्ष पर लिखे गये व्याकरण के बाद में"): 39 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['अनेक ग्रन्थ\tलिखे गये\tबाद में', 'दर्शन पक्ष पर\tलिखे गये\tव्याकरण के', 'बाद में\tलिखे गये\tव्याकरण के', 'बाद में\tलिखे गये\tदर्शन पक्ष पर', 'बाद में\tलिखे गये\tअनेक ग्रन्थ', 'अनेक ग्रन्थ\tलिखे गये बाद में\tव्याकरण के', 'अनेक ग्रन्थ\tलिखे गये बाद में\tदर्शन पक्ष पर', 'दर्शन पक्ष पर\tलिखे गये व्याकरण के\tबाद में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("निदेशक बने 1975 में"): 40 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इलाहाबाद में बने नवनिर्मित मेहता अनुसंधान संस्थान में"): 40 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1975 में हुआ इलाहाबाद में"): 40 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इलाहाबाद में हुआ नवनिर्मित मेहता अनुसंधान संस्थान में"): 40 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1975 में हुआ इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में"): 40 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['निदेशक\tबने\t1975 में', 'इलाहाबाद में\tबने\tनवनिर्मित मेहता अनुसंधान संस्थान में', '1975 में\tहुआ\tइलाहाबाद में', 'इलाहाबाद में\tहुआ\tनवनिर्मित मेहता अनुसंधान संस्थान में', '1975 में\tहुआ इलाहाबाद में\tनवनिर्मित मेहता अनुसंधान संस्थान में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम रखा गया नाम पर"): 41 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम पर property उनके"): 41 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम property इस जगह का"): 41 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनके रखा गया नाम पर"): 41 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम रखा गया नाम पर उनके"): 41 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['नाम\tरखा गया\tनाम पर', 'नाम पर\tproperty\tउनके', 'नाम\tproperty\tइस जगह का', 'उनके\tरखा गया\tनाम पर', 'नाम\tरखा गया नाम पर\tउनके'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कुछ लोग पसंद करते हैं रहना"): 42 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस आपाधापी से दूर रहना घर पर ही"): 42 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("घर पर ही property अपने"): 42 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['कुछ लोग\tपसंद करते हैं\tरहना', 'इस आपाधापी से दूर\tरहना\tघर पर ही', 'घर पर ही\tproperty\tअपने'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with b,a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मार्च 2001 में वापसी हुई फिर एक बार"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर उनकी"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अट्ठाइसवें रक्षा सचिव के रूप में property अमरीका के"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मार्च 2001 में हुआ वापसी हुई फिर"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमरीका के वापसी हुई फिर अट्ठाइसवें रक्षा सचिव के रूप में"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनकी अट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर अमरीका के"): 43 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['मार्च 2001 में\tवापसी हुई फिर\tएक बार', 'अट्ठाइसवें रक्षा सचिव के रूप में\tवापसी हुई फिर\tउनकी', 'अट्ठाइसवें रक्षा सचिव के रूप में\tproperty\tअमरीका के', 'मार्च 2001 में\tहुआ\tवापसी हुई फिर', 'अमरीका के\tवापसी हुई फिर\tअट्ठाइसवें रक्षा सचिव के रूप में', 'उनकी\tअट्ठाइसवें रक्षा सचिव के रूप में वापसी हुई फिर\tअमरीका के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को"): 44 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसकी रचना की आधारशिला रखी गयी थी 3 मार्च 1884 को"): 44 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर वाईकर के द्वारा आधारशिला रखी गयी थी इसकी रचना की"): 44 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर वाईकर के द्वारा आधारशिला रखी गयी थी 3 मार्च 1884 को इसकी रचना की"): 44 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['सर वाईकर के द्वारा\tआधारशिला रखी गयी थी\t3 मार्च 1884 को', 'इसकी रचना की\tआधारशिला रखी गयी थी\t3 मार्च 1884 को', 'सर वाईकर के द्वारा\tआधारशिला रखी गयी थी\tइसकी रचना की', 'सर वाईकर के द्वारा\tआधारशिला रखी गयी थी 3 मार्च 1884 को\tइसकी रचना की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वह संपर्क में है इस तकनीक के लिए"): 45 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("संपर्क में property विभिन्न टेलीविजन कंपनियों से"): 45 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वह संपर्क में है विभिन्न टेलीविजन कंपनियों से"): 45 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("विभिन्न टेलीविजन कंपनियों से के लिए इस तकनीक"): 45 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इस तकनीक के लिए वह संपर्क में है विभिन्न टेलीविजन कंपनियों से"): 45 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['वह\tसंपर्क में है\tइस तकनीक के लिए', 'संपर्क में\tproperty\tविभिन्न टेलीविजन कंपनियों से', 'वह\tसंपर्क में है\tविभिन्न टेलीविजन कंपनियों से', 'विभिन्न टेलीविजन कंपनियों से\tके लिए\tइस तकनीक', 'इस तकनीक के लिए\tवह संपर्क में है\tविभिन्न टेलीविजन कंपनियों से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("त्रिदेवनाथ बैनर्जी को सम्मानित किया गया था क्षेत्र में"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सन 1961 में सम्मानित किया गया था पद्म भूषण से"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("क्षेत्र में property चिकित्सा विज्ञान के"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("त्रिदेवनाथ बैनर्जी सम्मानित किया गया चिकित्सा विज्ञान के क्षेत्र में"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("त्रिदेवनाथ बैनर्जी को सम्मानित किया गया सन 1961 में"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सन 1961 में त्रिदेवनाथ बैनर्जी को सम्मानित किया गया पद्म भूषण से"): 46 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['त्रिदेवनाथ बैनर्जी को\tसम्मानित किया गया था\tक्षेत्र में', 'सन 1961 में\tसम्मानित किया गया था\tपद्म भूषण से', 'क्षेत्र में\tproperty\tचिकित्सा विज्ञान के', 'त्रिदेवनाथ बैनर्जी\tसम्मानित किया गया\tचिकित्सा विज्ञान के क्षेत्र में', 'त्रिदेवनाथ बैनर्जी को\tसम्मानित किया गया\tसन 1961 में', 'त्रिदेवनाथ बैनर्जी को\tसम्मानित किया गया\tपद्म भूषण से', 'सन 1961 में\tत्रिदेवनाथ बैनर्जी को सम्मानित किया गया\tपद्म भूषण से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होने संगीत रचना की मराठी के अतिरिक्त"): 47 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने"): 47 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मराठी के अतिरिक्त संगीत रचना की उन्होने"): 47 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी"): 47 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मराठी के अतिरिक्त उन्होने संगीत रचना की हिन्दी फिल्मों के लिए भी"): 47 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हिन्दी फिल्मों के लिए भी संगीत रचना की उन्होने मराठी के अतिरिक्त"): 47 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['उन्होने\tसंगीत रचना की\tमराठी के अतिरिक्त', 'हिन्दी फिल्मों के लिए भी\tसंगीत रचना की\tउन्होने', 'मराठी के अतिरिक्त\tसंगीत रचना की\tउन्होने', 'उन्होने\tसंगीत रचना की\tहिन्दी फिल्मों के लिए भी', 'मराठी के अतिरिक्त\tउन्होने संगीत रचना की\tहिन्दी फिल्मों के लिए भी', 'हिन्दी फिल्मों के लिए भी\tसंगीत रचना की उन्होने\tमराठी के अतिरिक्त'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में"): 48 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("औद्योगिक रूप से property काइटिन का"): 48 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("काइटिन का उपयोग किया जाता है अनेक प्रक्रियाओं में"): 48 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("औद्योगिक रूप से उपयोग किया जाता है अनेक प्रक्रियाओं में काइटिन का"): 48 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['औद्योगिक रूप से\tउपयोग किया जाता है\tअनेक प्रक्रियाओं में', 'औद्योगिक रूप से\tproperty\tकाइटिन का', 'काइटिन का\tउपयोग किया जाता है\tअनेक प्रक्रियाओं में', 'औद्योगिक रूप से\tउपयोग किया जाता है अनेक प्रक्रियाओं में\tकाइटिन का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सभी पर्व property हिंदूओं"): 49 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सभी पर्व property मुस्लिमों के"): 49 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिंदूओं मनाए जाते हैं पर्व"): 49 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मुस्लिमों के मनाए जाते हैं पर्व"): 49 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सभी पर्व मनाए जाते हैं मिलजुल कर"): 49 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिंदूओं सभी पर्व property मुस्लिमों के"): 49 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हिंदूओं मनाए जाते हैं पर्व मुस्लिमों के"): 49 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['सभी पर्व\tproperty\tहिंदूओं', 'सभी पर्व\tproperty\tमुस्लिमों के', 'हिंदूओं\tमनाए जाते हैं\tपर्व', 'मुस्लिमों के\tमनाए जाते हैं\tपर्व', 'सभी पर्व\tमनाए जाते हैं\tमिलजुल कर', 'हिंदूओं\tसभी पर्व property\tमुस्लिमों के', 'हिंदूओं\tमनाए जाते हैं पर्व\tमुस्लिमों के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका "): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("20 जुलाई 2012 को रिलीज़ किया गया अमेरिका "): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied but with d", + "c": "not satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("20 जुलाई 2012 को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied but with d", + "c": "not satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied but with d", + "c": "not satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "not satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका 20 जुलाई 2012 को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया अमेरिका"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका 20 जुलाई 2012 को रिलीज़ किया गया द डार्क नाईट राइसेस को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("संयुक्त राजशाही 20 जुलाई 2012 को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("20 जुलाई 2012 को रिलीज़ किया गया संयुक्त राजशाही द डार्क नाईट राइसेस को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("20 जुलाई 2012 को रिलीज़ किया गया कनाडा में द डार्क नाईट राइसेस को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया संयुक्त राजशाही"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अमेरिका द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("संयुक्त राजशाही द डार्क नाईट राइसेस को रिलीज़ किया गया कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द डार्क नाईट राइसेस को रिलीज़ किया गया 20 जुलाई 2012 को कनाडा में"): 50 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +After processing all the extractions +['द डार्क नाईट राइसेस को\tरिलीज़ किया गया\tअमेरिका ', '20 जुलाई 2012 को\tरिलीज़ किया गया\tअमेरिका ', '20 जुलाई 2012 को\tरिलीज़ किया गया\tसंयुक्त राजशाही', '20 जुलाई 2012 को\tरिलीज़ किया गया\tकनाडा में', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया\tअमेरिका', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया\tसंयुक्त राजशाही', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया\tकनाडा में', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया\t20 जुलाई 2012 को', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया अमेरिका \t20 जुलाई 2012 को', 'अमेरिका \tद डार्क नाईट राइसेस को रिलीज़ किया गया\tअमेरिका', 'अमेरिका \tद डार्क नाईट राइसेस को रिलीज़ किया गया\tसंयुक्त राजशाही', 'अमेरिका \tद डार्क नाईट राइसेस को रिलीज़ किया गया\tकनाडा में', 'अमेरिका \t20 जुलाई 2012 को रिलीज़ किया गया\tसंयुक्त राजशाही', 'अमेरिका \t20 जुलाई 2012 को रिलीज़ किया गया\tकनाडा में', 'अमेरिका \t20 जुलाई 2012 को रिलीज़ किया गया\tद डार्क नाईट राइसेस को', 'संयुक्त राजशाही\t20 जुलाई 2012 को रिलीज़ किया गया\tकनाडा में', '20 जुलाई 2012 को\tरिलीज़ किया गया संयुक्त राजशाही\tद डार्क नाईट राइसेस को', '20 जुलाई 2012 को\tरिलीज़ किया गया कनाडा में\tद डार्क नाईट राइसेस को', 'अमेरिका\tद डार्क नाईट राइसेस को रिलीज़ किया गया\tसंयुक्त राजशाही', 'अमेरिका\tद डार्क नाईट राइसेस को रिलीज़ किया गया\tकनाडा में', 'अमेरिका\tद डार्क नाईट राइसेस को रिलीज़ किया गया\t20 जुलाई 2012 को', 'संयुक्त राजशाही\tद डार्क नाईट राइसेस को रिलीज़ किया गया\tकनाडा में', 'द डार्क नाईट राइसेस को\tरिलीज़ किया गया 20 जुलाई 2012 को\tकनाडा में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied but with c", + "b": "satisfied but with d", + "c": "satisfied", + "d": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह लगाया जाता है हर साल"): 51 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के"): 51 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह लगाया जाता है जर्मनी के"): 51 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हर साल यह लगाया जाता है जर्मनी के"): 51 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ्रैंकफर्ट शहर मे लगाया जाता है जर्मनी के यह"): 51 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['यह\tलगाया जाता है\tहर साल', 'फ्रैंकफर्ट शहर मे\tलगाया जाता है\tजर्मनी के', 'यह\tलगाया जाता है\tजर्मनी के', 'हर साल\tयह लगाया जाता है\tजर्मनी के', 'फ्रैंकफर्ट शहर मे\tलगाया जाता है जर्मनी के\tयह'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द्रौपदी ने वरमाला डाल दिया गले में"): 52 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गले में property अर्जुन के"): 52 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 4": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("द्रौपदी ने डाल दिया वरमाला"): 52 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['द्रौपदी ने\tवरमाला डाल दिया\tगले में', 'गले में\tproperty\tअर्जुन के', 'द्रौपदी ने\tडाल दिया\tवरमाला'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 4": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह त्यौहार मनाया जाता है पूरे उत्तर भारत में"): 53 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राम नवमी के दौरान मनाया जाता है पूरे उत्तर भारत में"): 53 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह त्यौहार मनाया जाता है राम नवमी के दौरान"): 53 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह त्यौहार मनाया जाता है पूरे उत्तर भारत में राम नवमी के दौरान"): 53 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह त्यौहार\tमनाया जाता है\tपूरे उत्तर भारत में', 'राम नवमी के दौरान\tमनाया जाता है\tपूरे उत्तर भारत में', 'यह त्यौहार\tमनाया जाता है\tराम नवमी के दौरान', 'यह त्यौहार\tमनाया जाता है पूरे उत्तर भारत में\tराम नवमी के दौरान'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापक उपयोग उल्लेखनीय है भोजन में"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भोजन में property तटीय कर्नाटक के"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापक उपयोग property समुद्री भोजन "): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापक उपयोग property नारियल"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापक उपयोग property नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तटीय कर्नाटक के में है भोजन"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भोजन में है समुद्री भोजन "): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भोजन में है नारियल"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भोजन में है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन है नारियल"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापक उपयोग है उल्लेखनीय"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन व्यापक उपयोग property नारियल"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन व्यापक उपयोग property नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल व्यापक उपयोग property नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन भोजन में है नारियल"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("समुद्री भोजन भोजन में है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल भोजन में है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("भोजन में है नारियल समुद्री भोजन "): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल समुद्री भोजन है भोजन में"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल समुद्री भोजन है नारियल तेल का"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नारियल तेल का नारियल है भोजन में"): 54 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +After processing all the extractions +['व्यापक उपयोग\tउल्लेखनीय है\tभोजन में', 'भोजन में\tproperty\tतटीय कर्नाटक के', 'व्यापक उपयोग\tproperty\tसमुद्री भोजन ', 'व्यापक उपयोग\tproperty\tनारियल', 'व्यापक उपयोग\tproperty\tनारियल तेल का', 'तटीय कर्नाटक के\tमें है\tभोजन', 'भोजन में\tहै\tसमुद्री भोजन ', 'भोजन में\tहै\tनारियल', 'भोजन में\tहै\tनारियल तेल का', 'समुद्री भोजन \tहै\tनारियल', 'समुद्री भोजन \tहै\tनारियल तेल का', 'नारियल\tहै\tनारियल तेल का', 'व्यापक उपयोग\tहै\tउल्लेखनीय', 'समुद्री भोजन \tव्यापक उपयोग property\tनारियल', 'समुद्री भोजन \tव्यापक उपयोग property\tनारियल तेल का', 'नारियल\tव्यापक उपयोग property\tनारियल तेल का', 'समुद्री भोजन \tभोजन में है\tनारियल', 'समुद्री भोजन \tभोजन में है\tनारियल तेल का', 'नारियल\tभोजन में है\tनारियल तेल का', 'भोजन में\tहै नारियल\tसमुद्री भोजन ', 'नारियल\tसमुद्री भोजन है\tभोजन में', 'नारियल\tसमुद्री भोजन है\tनारियल तेल का', 'नारियल तेल का\tनारियल है\tभोजन में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "satisfied", + "d": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कार्ल ने सुधारा उपेक्षित जीवविज्ञान उद्यान को भी"): 55 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उपेक्षित जीवविज्ञान उद्यान को भी property वहां के"): 55 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['कार्ल ने\tसुधारा\tउपेक्षित जीवविज्ञान उद्यान को भी', 'उपेक्षित जीवविज्ञान उद्यान को भी\tproperty\tवहां के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तारों को कहते हैं श्रेणी के"): 56 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("श्रेणी के property सिफियस चतुर्थ की"): 56 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिफियस चतुर्थ की श्रेणी के तारों को"): 56 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिफीड कहते हैं सिफियस चतुर्थ की"): 56 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['तारों को\tकहते हैं\tश्रेणी के', 'श्रेणी के\tproperty\tसिफियस चतुर्थ की', 'सिफियस चतुर्थ की\tश्रेणी के\tतारों को', 'सिफीड\tकहते हैं\tसिफियस चतुर्थ की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह प्रसिद्ध है नाम से"): 57 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम से property प्राथमिक विधि अध्यारोप के"): 57 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['यह\tप्रसिद्ध है\tनाम से', 'नाम से\tproperty\t प्राथमिक विधि अध्यारोप के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अधिक संपर्क रहा है चीन"): 58 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अधिक संपर्क रहा है जापान से"): 58 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अधिक संपर्क property इस देश का"): 58 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीन से संपर्क रहा जापान"): 58 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("चीन अधिक संपर्क रहा है जापान से"): 58 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['अधिक संपर्क\tरहा है\tचीन', 'अधिक संपर्क\tरहा है\tजापान से', 'अधिक संपर्क\tproperty\tइस देश का', 'चीन\tसे संपर्क रहा\tजापान', 'चीन\tअधिक संपर्क रहा है\tजापान से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कश्यप ने पता लगाया शेष"): 59 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कुछ घड़ी शेष हैं आयु में"): 59 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी"): 59 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शेष कश्यप ने पता लगाया राजा की आयु में कुछ घड़ी"): 59 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + } +} +After processing all the extractions +['कश्यप ने\tपता लगाया\tशेष', 'कुछ घड़ी\tशेष हैं\tआयु में', 'कश्यप ने\tपता लगाया\tराजा की आयु में कुछ घड़ी', 'शेष\tकश्यप ने पता लगाया\tराजा की आयु में कुछ घड़ी'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मोमबत्तियाँ भी प्रयुक्त होती है खानों में"): 60 +{ + "cluster 1": { + "essential": [ + "satisfied but with a |OR| satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("खानों में property अभ्रक आदि की"): 60 +{ + "cluster 1": { + "essential": [ + "satisfied but with a |OR| satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("खानों में में मोमबत्तियाँ"): 60 +{ + "cluster 1": { + "essential": [ + "satisfied but with a |OR| satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['मोमबत्तियाँ भी\tप्रयुक्त होती है\tखानों में', 'खानों में\tproperty\tअभ्रक आदि की', 'खानों में\tमें\tमोमबत्तियाँ'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a |OR| satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने लिखे हैं कहानियाँ"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस शैली में लिखे हैं उन्होंने"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने लिखे हैं उपन्यास"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस शैली में लिखे हैं कहानियाँ"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस शैली में लिखे हैं उपन्यास"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कहानियाँ उन्होंने लिखे हैं इस शैली में"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कहानियाँ उन्होंने लिखे हैं उपन्यास"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस शैली में लिखे हैं उन्होंने उपन्यास"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कहानियाँ इस शैली में लिखे हैं उपन्यास"): 61 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['उन्होंने\tलिखे हैं\tकहानियाँ', 'इस शैली में\tलिखे हैं\tउन्होंने', 'उन्होंने\tलिखे हैं\tउपन्यास', 'इस शैली में\tलिखे हैं\tकहानियाँ', 'इस शैली में\tलिखे हैं\tउपन्यास', 'कहानियाँ\tउन्होंने लिखे हैं\tइस शैली में', 'कहानियाँ\tउन्होंने लिखे हैं\tउपन्यास', 'इस शैली में\tलिखे हैं उन्होंने\tउपन्यास', 'कहानियाँ\tइस शैली में लिखे हैं\tउपन्यास'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a", + "satisfied" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वो मुख्य न्यायाधीश हैं पहले दलित"): 62 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वो है मुख्य न्यायाधीश"): 62 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['वो\tमुख्य न्यायाधीश हैं\tपहले दलित', 'वो\tहै\tमुख्य न्यायाधीश'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने पेश किया वार्षिक बजट"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("6 जुलाई 2009 को पेश किया उन्होंने"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वार्षिक बजट property सरकार का"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वार्षिक बजट उन्होंने पेश किया 6 जुलाई 2009 को"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने 6 जुलाई 2009 को पेश किया सरकार का वार्षिक बजट"): 63 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['उन्होंने\tपेश किया\tवार्षिक बजट', '6 जुलाई 2009 को\tपेश किया\tउन्होंने', 'वार्षिक बजट\tproperty\tसरकार का', '6 जुलाई 2009 को\tपेश किया\tसरकार का वार्षिक बजट', 'वार्षिक बजट\tउन्होंने पेश किया\t6 जुलाई 2009 को', 'उन्होंने\t6 जुलाई 2009 को पेश किया\tसरकार का वार्षिक बजट'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied", + "c": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied but with b", + "b": "satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थानीय आबादी निर्भर रहती है लगभग पूरी तरह से"): 64 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("व्यापार पर निर्भर रहती है चाय के"): 64 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर"): 64 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("लगभग पूरी तरह से स्थानीय आबादी निर्भर रहती है चाय के व्यापार पर"): 64 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['स्थानीय आबादी\tनिर्भर रहती है\tलगभग पूरी तरह से', 'व्यापार पर\tनिर्भर रहती है\tचाय के', 'स्थानीय आबादी\tनिर्भर रहती है\tचाय के व्यापार पर', 'लगभग पूरी तरह से\tस्थानीय आबादी निर्भर रहती है\tचाय के व्यापार पर'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसे साथ ही लागू किया जाता है आधारभूत प्रोफ़ाइल में भी"): 65 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['इसे साथ ही\tलागू किया जाता है\tआधारभूत प्रोफ़ाइल में भी'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन्हें जाना जाता है नाम से"): 66 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("नाम से property उत्कल मणि के"): 66 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन्हें जाना जाता है उत्कल मणि के"): 66 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("नाम से उन्हें जाना जाता है उत्कल मणि के"): 66 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['उन्हें\tजाना जाता है\tनाम से', 'नाम से\tproperty\tउत्कल मणि के', 'उन्हें\tजाना जाता है\tउत्कल मणि के', 'नाम से\tउन्हें जाना जाता है\tउत्कल मणि के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("कृपया देखें फ्रेंच फ्लेमिश को"): 67 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("अधिक जानकारी के लिए देखें फ्रेंच फ्लेमिश को"): 67 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("कृपया देखें फ्रेंच फ्लेमिश को अधिक जानकारी के लिए"): 67 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['कृपया\tदेखें\tफ्रेंच फ्लेमिश को', 'अधिक जानकारी के लिए\tदेखें\tफ्रेंच फ्लेमिश को', 'कृपया\tदेखें फ्रेंच फ्लेमिश को\tअधिक जानकारी के लिए'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("ज्यादातर अंश प्रवाहित होता है पाकिस्तान में"): 68 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ज्यादातर अंश property इस नदी का"): 68 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस नदी का प्रवाहित होता है पाकिस्तान में"): 68 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ज्यादातर अंश प्रवाहित होता है पाकिस्तान में इस नदी का"): 68 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['ज्यादातर अंश\tप्रवाहित होता है\tपाकिस्तान में', 'ज्यादातर अंश\tproperty\tइस नदी का', 'इस नदी का\tप्रवाहित होता है\tपाकिस्तान में', 'ज्यादातर अंश\tप्रवाहित होता है पाकिस्तान में\tइस नदी का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंदरूनी भाग हिस्सा है लीबियाई रेगिस्तान का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंदरूनी भाग property मत्रूह मुहाफ़ज़ाह का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सीवा नख़लिस्तान स्थित है जिसमें"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सीवा नख़लिस्तान property ओएसिस "): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मत्रूह मुहाफ़ज़ाह का हिस्सा है लीबियाई रेगिस्तान का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("लीबियाई रेगिस्तान का हिस्सा है मत्रूह मुहाफ़ज़ाह का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("जिसमें सीवा नख़लिस्तान स्थित है लीबियाई रेगिस्तान का"): 69 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['अंदरूनी भाग\tहिस्सा है \tलीबियाई रेगिस्तान का', 'अंदरूनी भाग\tproperty\tमत्रूह मुहाफ़ज़ाह का', 'सीवा नख़लिस्तान\tस्थित है\tजिसमें', 'सीवा नख़लिस्तान\tproperty\t ओएसिस ', 'मत्रूह मुहाफ़ज़ाह का\tहिस्सा है\tलीबियाई रेगिस्तान का', 'लीबियाई रेगिस्तान का\tहिस्सा है\tमत्रूह मुहाफ़ज़ाह का', 'सीवा नख़लिस्तान\tस्थित है\tलीबियाई रेगिस्तान का', 'जिसमें\tसीवा नख़लिस्तान स्थित है\tलीबियाई रेगिस्तान का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "satisfied but with b" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राजधानी बंगलुरु शहर है जो अग्रणी योगदानकर्त्ता"): 70 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("त्वरित आर्थिक हो रही भारत में"): 70 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राज्य की राजधानी बंगलुरु शहर"): 70 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['राजधानी\tबंगलुरु शहर है \tजो अग्रणी योगदानकर्त्ता', 'त्वरित आर्थिक\tहो रही\tभारत में', 'राज्य की\tराजधानी\tबंगलुरु शहर'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ये प्रसिद्ध हैं कहानियों के लिए"): 71 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए"): 71 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कहानियों के लिए ये प्रसिद्ध हैं अपनी रहस्यमयी और भयावह कहानियों के लिए"): 71 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['ये\tप्रसिद्ध हैं\tकहानियों के लिए', 'ये\tप्रसिद्ध हैं\tअपनी रहस्यमयी और भयावह कहानियों के लिए', 'कहानियों के लिए\tये प्रसिद्ध हैं\tअपनी रहस्यमयी और भयावह कहानियों के लिए'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक कहानी संग्रह प्रकाशित हुए हैं उनका"): 72 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दो निबंध संग्रह प्रकाशित हुए हैं उनका"): 72 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनका प्रकाशित हुए हैं एक कहानी संग्रह"): 72 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनका प्रकाशित हुए हैं दो निबंध संग्रह"): 72 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक कहानी संग्रह प्रकाशित हुए हैं उनका दो निबंध संग्रह"): 72 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['एक कहानी संग्रह\tप्रकाशित हुए हैं\tउनका', 'दो निबंध संग्रह\tप्रकाशित हुए हैं\tउनका', 'उनका\tप्रकाशित हुए हैं\tएक कहानी संग्रह', 'उनका\tप्रकाशित हुए हैं\tदो निबंध संग्रह', 'एक कहानी संग्रह\tप्रकाशित हुए हैं उनका\tदो निबंध संग्रह'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पद्मनाभ दत्त ने लिखा है सुपद्य व्याकरण"): 73 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सुपद्य व्याकरण property 15 वीं शताब्दी "): 73 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['पद्मनाभ दत्त ने\tलिखा है\tसुपद्य व्याकरण', 'सुपद्य व्याकरण\tproperty\t15 वीं शताब्दी '] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ्लोरिडा राज्य स्थित हैं पश्चिम में"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थित property अलबामा"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्थित property दक्षिण में"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अलबामा पश्चिम में स्थित है इसके"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("फ्लोरिडा राज्य दक्षिण में स्थित है इसके"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अलबामा स्थित property दक्षिण में"): 74 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['फ्लोरिडा राज्य\tस्थित हैं\tपश्चिम में', 'स्थित\tproperty\tअलबामा', 'स्थित\tproperty\tदक्षिण में', 'अलबामा\tपश्चिम में स्थित है\tइसके', 'फ्लोरिडा राज्य\tदक्षिण में स्थित है\tइसके', 'अलबामा\tस्थित property\tदक्षिण में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह क्रिकेट मैदान स्थित है होबार्ट शहर में"): 75 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("होबार्ट शहर में property ऑस्ट्रेलिया के"): 75 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के"): 75 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("होबार्ट शहर में यह क्रिकेट मैदान स्थित है ऑस्ट्रेलिया के"): 75 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['यह क्रिकेट मैदान\tस्थित है\tहोबार्ट शहर में', 'होबार्ट शहर में\tproperty\tऑस्ट्रेलिया के', 'यह क्रिकेट मैदान\tस्थित है\tऑस्ट्रेलिया के', 'होबार्ट शहर में\tयह क्रिकेट मैदान स्थित है\tऑस्ट्रेलिया के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है पूरी प्रतिलिपि नहीं है"): 76 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("निम्नलिखित सूचना नियम का है एक सरलीकृत सारांश"): 76 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक सरलीकृत सारांश नहीं है पूरी प्रतिलिपि"): 76 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['निम्नलिखित सूचना नियम का\tएक सरलीकृत सारांश है \tपूरी प्रतिलिपि नहीं है', 'निम्नलिखित सूचना नियम का\tहै\tएक सरलीकृत सारांश', 'एक सरलीकृत सारांश\tनहीं है\tपूरी प्रतिलिपि'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("कुछ लोगों ने विभाजित किया है इसे"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दृष्टि से विभाजित किया है इंडोचायनीज़"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दृष्टि से property विशेषता की"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("जंगलों की विशेषता की दृष्टि से"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इंडोचायनीज़ दृष्टि से विभाजित किया है इंडोमलायन उपक्षेत्रों में"): 78 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['कुछ लोगों ने\tविभाजित किया है\tइसे', 'दृष्टि से\tविभाजित किया है\tइंडोचायनीज़', 'दृष्टि से\tproperty\tविशेषता की', 'दृष्टि से\tविभाजित किया है\tइंडोमलायन उपक्षेत्रों में', 'जंगलों की\tविशेषता की\tदृष्टि से', 'इंडोचायनीज़\tऔर\tइंडोमलायन उपक्षेत्रों में', 'इंडोचायनीज़\tदृष्टि से विभाजित किया है\tइंडोमलायन उपक्षेत्रों में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रयोगशील प्रवृत्तियाँ प्रश्रय देने लगी होंगी उनको"): 79 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['प्रयोगशील प्रवृत्तियाँ\tप्रश्रय देने लगी होंगी\tउनको'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वर्षों को दर्शाता है 5364 ईसा पूर्व"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्षों को property जन्म से पूर्व के"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("जन्म से पूर्व के property ईसा मसीह के"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("5364 ईसा पूर्व दर्शाता है ईसा मसीह के जन्म से पूर्व के वर्षों"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्षों को दर्शाता है 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्षों को property जन्म से पूर्व के ईसा मसीह के"): 80 +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['वर्षों को\tदर्शाता है\t5364 ईसा पूर्व', 'वर्षों को\tproperty\tजन्म से पूर्व के', 'जन्म से पूर्व के\tproperty\tईसा मसीह के', '5364 ईसा पूर्व\tदर्शाता है\tईसा मसीह के जन्म से पूर्व के वर्षों', 'वर्षों को\tदर्शाता है 5364 ईसा पूर्व\tईसा मसीह के जन्म से पूर्व के वर्षों', 'वर्षों को\tproperty जन्म से पूर्व के\tईसा मसीह के'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विश्वामित्र द्वारा पहनाती हैं जयमाल"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सीता राम को पहनाती हैं स्वरघोष के मध्य"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्वरघोष के मध्य property वैदिक मन्त्रों के"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सीता राम को पहनाती हैं जयमाल"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("जयमाल विश्वामित्र द्वारा पहनाती हैं वैदिक मन्त्रों के"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विश्वामित्र द्वारा पहनाती हैं जयमाल सीता राम को"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("स्वरघोष के मध्य सीता राम को पहनाती हैं जयमाल"): 81 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['विश्वामित्र द्वारा\tपहनाती हैं\tजयमाल', 'सीता राम को\tपहनाती हैं\tस्वरघोष के मध्य', 'स्वरघोष के मध्य\tproperty\tवैदिक मन्त्रों के', 'विश्वामित्र द्वारा\tपहनाती हैं\tवैदिक मन्त्रों के', 'सीता राम को\tपहनाती हैं\tजयमाल', 'जयमाल\tविश्वामित्र द्वारा पहनाती हैं\tवैदिक मन्त्रों के', 'विश्वामित्र द्वारा\tपहनाती हैं जयमाल\tसीता राम को', 'स्वरघोष के मध्य\tसीता राम को पहनाती हैं\tजयमाल'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विभिन्न स्रोत बटे हुए हैं इस तथ्य पर"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस तथ्य पर पड़ा आखिर एजिंकोर्ट स्क्वायर"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस तथ्य पर पड़ा आखिर नाम"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इस तथ्य पर पड़ा आखिर किस वर्ष में"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम property स्थान का"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर नाम"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एजिंकोर्ट स्क्वायर इस तथ्य पर पड़ा आखिर किस वर्ष में"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("नाम इस तथ्य पर पड़ा आखिर किस वर्ष में"): 82 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['विभिन्न स्रोत\tबटे हुए हैं\tइस तथ्य पर', 'इस तथ्य पर\tपड़ा आखिर\tएजिंकोर्ट स्क्वायर', 'इस तथ्य पर\tपड़ा आखिर\tनाम', 'इस तथ्य पर\tपड़ा आखिर\tकिस वर्ष में', 'नाम\tproperty\tस्थान का', 'एजिंकोर्ट स्क्वायर\tइस तथ्य पर पड़ा आखिर\tनाम', 'एजिंकोर्ट स्क्वायर\tइस तथ्य पर पड़ा आखिर\tकिस वर्ष में', 'नाम\tइस तथ्य पर पड़ा आखिर\tकिस वर्ष में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विभिन्न विभाग होते हैं प्रत्येक भाग के अंतर्गत"): 83 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष"): 83 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक भाग के अंतर्गत होते हैं विभिन्न विभाग"): 83 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष"): 83 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['विभिन्न विभाग\tहोते हैं\tप्रत्येक भाग के अंतर्गत', 'विभिन्न विभाग\tहोते हैं\tजिनके अलगअलग अध्यक्ष', 'प्रत्येक भाग के अंतर्गत\tहोते हैं\tविभिन्न विभाग', 'प्रत्येक भाग के अंतर्गत\tविभिन्न विभाग होते हैं\tजिनके अलगअलग अध्यक्ष'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("एकलों के बीच जारी किया गया एक लंबे अंतराल के बाद "): 84 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एल्बम से जारी किया गया 2006 के मध्य में"): 84 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एकलों के बीच जारी किया गया एल्बम से"): 84 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एल्बम से जारी किया गया तीसरा कट"): 84 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तीसरा कट जारी किया गया 2006 के मध्य में"): 84 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एक लंबे अंतराल के बाद एकलों के बीच जारी किया गया एल्बम से"): 84 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("2006 के मध्य में एल्बम से जारी किया गया एकलों के बीच"): 84 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("2006 के मध्य में एल्बम से जारी किया गया तीसरा कट"): 84 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("एकलों के बीच जारी किया गया एल्बम से तीसरा कट"): 84 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['एकलों के बीच\tजारी किया गया\tएक लंबे अंतराल के बाद ', 'एल्बम से\tजारी किया गया\t2006 के मध्य में', 'एकलों के बीच\tजारी किया गया\tएल्बम से', 'एल्बम से\tजारी किया गया\tतीसरा कट', 'तीसरा कट\tजारी किया गया\t2006 के मध्य में', 'एक लंबे अंतराल के बाद \tएकलों के बीच जारी किया गया\tएल्बम से', '2006 के मध्य में\tएल्बम से जारी किया गया\tएकलों के बीच', '2006 के मध्य में\tएल्बम से जारी किया गया\tतीसरा कट', 'एकलों के बीच\tजारी किया गया एल्बम से\tतीसरा कट'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied", + "satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उस दौर में कोई और मानक नहीं थे उनके सामने"): 85 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सब कामचलाऊ व्यवस्था स्वयं करनी पड़ी उन्हें"): 85 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन्हें करना पड़ी सब कामचलाऊ व्यवस्था"): 85 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['उस दौर में\tकोई और मानक नहीं थे \tउनके सामने', 'सब कामचलाऊ व्यवस्था\tस्वयं करनी पड़ी\tउन्हें', 'उन्हें\tकरना पड़ी\tसब कामचलाऊ व्यवस्था'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("बहुत से विकासों ने बेहतर कर दिया था परिणामों को"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1900 के आसपास बेहतर कर दिया था निमोनिया से"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पीड़ित लोगों के लिये बेहतर कर दिया था निमोनिया से"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1900 के आसपास हुआ विकासों"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बहुत से विकासों ने बेहतर कर दिया परिणामों को"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("निमोनिया से पीड़ित लोगों के लिये परिणामों को"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("1900 के आसपास बेहतर कर दिया था निमोनिया से पीड़ित लोगों के लिये"): 86 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['बहुत से विकासों ने\tबेहतर कर दिया था\tपरिणामों को', '1900 के आसपास\tबेहतर कर दिया था\tनिमोनिया से', 'पीड़ित लोगों के लिये\tबेहतर कर दिया था\tनिमोनिया से', '1900 के आसपास\tहुआ\tविकासों', 'बहुत से विकासों ने\tबेहतर कर दिया\tपरिणामों को', 'निमोनिया से\tपीड़ित लोगों के लिये\tपरिणामों को', '1900 के आसपास\tबेहतर कर दिया था निमोनिया से\tपीड़ित लोगों के लिये'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied but with b" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रचार बहुत योगदान है पिता के समान"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बहुत योगदान property आपका भी"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रसार में बहुत योगदान है पिता के समान"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सांप्रदायिक सिद्धांतों के प्रचार प्रसार में"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सांप्रदायिक सिद्धांतों के प्रचार सांप्रदायिक सिद्धांतों के"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सांप्रदायिक सिद्धांतों के प्रसार सांप्रदायिक सिद्धांतों के"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रचार बहुत योगदान है पिता के समान प्रसार में"): 87 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['प्रचार\tबहुत योगदान है\tपिता के समान', 'बहुत योगदान\tproperty\tआपका भी', 'प्रसार में\tबहुत योगदान है\tपिता के समान', 'सांप्रदायिक सिद्धांतों के\tप्रचार\tप्रसार में', 'सांप्रदायिक सिद्धांतों के\tप्रचार\tसांप्रदायिक सिद्धांतों के', 'सांप्रदायिक सिद्धांतों के\tप्रसार\tसांप्रदायिक सिद्धांतों के', 'प्रचार\tबहुत योगदान है पिता के समान\tप्रसार में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मामले लेखबद्ध किये गये हैं उदाहरणार्थ "): 88 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("संपर्क में भी लेखबद्ध किये गये हैं केवल 1 3 माह के"): 88 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मामले property उत्पन्न होने के"): 88 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("मेसोथेलियोमा उत्पन्न होने के मामले"): 88 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उदाहरणार्थ लेखबद्ध किये गये हैं मामले"): 88 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['मामले\tलेखबद्ध किये गये हैं\tउदाहरणार्थ ', 'संपर्क में भी\tलेखबद्ध किये गये हैं\tकेवल 1 3 माह के', 'मामले\tproperty\tउत्पन्न होने के', 'मेसोथेलियोमा\tउत्पन्न होने के\tमामले', 'उदाहरणार्थ \tलेखबद्ध किये गये हैं\tमामले'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राणी मिलते नहीं है इश एस में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वास्तव में मिलते नहीं है प्राणी"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश एस में सामना होता है इश डू में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश एस में सामना होता है दो प्राणियों का"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जहां मिलते नहीं है इश डू में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जहां मिलते नहीं है इश एस में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("दो प्राणियों का मिलते नहीं है प्राणी"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश एस में प्राणी मिलते नहीं है वास्तव में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्राणी मिलते नहीं है इश एस में जहां"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश एस में प्राणी मिलते नहीं है दो प्राणियों का"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वास्तव में मिलते नहीं है प्राणी दो प्राणियों का"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश डू में इश एस में सामना होता है दो प्राणियों का"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इश डू में जहां मिलते नहीं है इश एस में"): 89 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['प्राणी\tमिलते नहीं है\tइश एस में', 'वास्तव में\tमिलते नहीं है\tप्राणी', 'इश एस में\tसामना होता है \tइश डू में', 'इश एस में\tसामना होता है \tदो प्राणियों का', 'जहां\tमिलते नहीं है\tइश डू में', 'जहां\tमिलते नहीं है\tइश एस में', 'दो प्राणियों का\tमिलते नहीं है\tप्राणी', 'इश एस में\tप्राणी मिलते नहीं है\tवास्तव में', 'प्राणी\tमिलते नहीं है इश एस में\tजहां', 'इश एस में\tप्राणी मिलते नहीं है\tदो प्राणियों का', 'वास्तव में\tमिलते नहीं है प्राणी\tदो प्राणियों का', 'इश डू में\tइश एस में सामना होता है \tदो प्राणियों का', 'इश डू में\tजहां मिलते नहीं है\tइश एस में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("ये तीनों अक्ष होने चाहिये एकबिन्दुगामी भी"): 90 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उस तल में होने चाहिये ये तीनों अक्ष"): 90 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("ये तीनों अक्ष होने चाहिये उस तल में"): 90 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("एकबिन्दुगामी भी ये तीनों अक्ष होने चाहिये उस तल में"): 90 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['ये तीनों अक्ष\tहोने चाहिये\tएकबिन्दुगामी भी', 'उस तल में\tहोने चाहिये\tये तीनों अक्ष', 'ये तीनों अक्ष\tहोने चाहिये\tउस तल में', 'एकबिन्दुगामी भी\tये तीनों अक्ष होने चाहिये\tउस तल में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("पुराने तरीके बदल रहे हैं विकासशील देशों में "): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अपने ही पड़ोस में बदल रहे हैं तेजी से"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पुराने तरीके property दूध विपणन के"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विकासशील देशों में में किसानों के"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विकासशील देशों में में दूध विपणन के"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("किसानों के के दूध विपणन के"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पुराने तरीके बदल रहे हैं विकासशील देशों में"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("पुराने तरीके बदल रहे हैं अपने ही पड़ोस में"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विकासशील देशों में पुराने तरीके बदल रहे हैं विकासशील देशों में"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("तेजी से अपने ही पड़ोस में बदल रहे हैं पुराने तरीके"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("किसानों के विकासशील देशों में में दूध विपणन के"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विकासशील देशों में पुराने तरीके बदल रहे हैं अपने ही पड़ोस में"): 91 +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['पुराने तरीके\tबदल रहे हैं\tविकासशील देशों में ', 'अपने ही पड़ोस में\tबदल रहे हैं\tतेजी से', 'पुराने तरीके\tproperty\tदूध विपणन के', 'विकासशील देशों में\tमें\tकिसानों के', 'विकासशील देशों में\tमें\tदूध विपणन के', 'किसानों के\tके\tदूध विपणन के', 'पुराने तरीके\tबदल रहे हैं\tविकासशील देशों में', 'पुराने तरीके\tबदल रहे हैं\tअपने ही पड़ोस में', 'विकासशील देशों में \tपुराने तरीके बदल रहे हैं\tविकासशील देशों में', 'विकासशील देशों में \tपुराने तरीके बदल रहे हैं\tअपने ही पड़ोस में', 'तेजी से\tअपने ही पड़ोस में बदल रहे हैं\tपुराने तरीके', 'किसानों के\tविकासशील देशों में में\tदूध विपणन के', 'विकासशील देशों में\tपुराने तरीके बदल रहे हैं\tअपने ही पड़ोस में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a,b|AND|satisfied but with a,b", + "satisfied but with a,b" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होंने एक दीवाना था से शुरुआत"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("शुरुआत property बोलीवुड करियर की"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("शुरुआत रिलीज़ किया गया जिसे"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन्होंने शुरुआत एक दीवाना था से"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जिसे शुरुआत रिलीज़ किया गया 17 फ़रवरी 2012 को"): 92 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['उन्होंने\tएक दीवाना था से\tशुरुआत', 'शुरुआत\tproperty\tबोलीवुड करियर की', 'शुरुआत\tरिलीज़ किया गया\tजिसे', 'शुरुआत\tरिलीज़ किया गया\t17 फ़रवरी 2012 को', 'उन्होंने\tशुरुआत\tएक दीवाना था से', 'जिसे\tशुरुआत रिलीज़ किया गया\t17 फ़रवरी 2012 को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("बचाना है अत्यंत आवश्यक"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("खाद्य एवं पेय पदार्थो को बचाना मक्खियों से"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इस रोग के प्रतिषेधात्मक उपचार में भी है"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मक्खियों से है खाद्य एवं पेय पदार्थो को"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक"): 93 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['बचाना\tहै\tअत्यंत आवश्यक', 'खाद्य एवं पेय पदार्थो को\tबचाना\tमक्खियों से', 'इस रोग के\tप्रतिषेधात्मक उपचार में भी\tहै', 'मक्खियों से\tहै\tखाद्य एवं पेय पदार्थो को', 'खाद्य एवं पेय पदार्थो को\tबचाना\tअत्यंत आवश्यक', 'मक्खियों से\tखाद्य एवं पेय पदार्थो को बचाना\tअत्यंत आवश्यक'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 2": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "satisfied" + } + }, + "cluster 3": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + }, + "cluster 4": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("यह संदर्भित करता है राष्ट्रीयता को"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राष्ट्रीयता को संदर्भित करता है गाड़ी निर्माता"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राष्ट्रीयता को property प्रतिस्पर्धी टीम की"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("राष्ट्रीयता को संदर्भित करता है चालक की"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह संदर्भित करता है राष्ट्रीयता को"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह संदर्भित करता है राष्ट्रीयता को गाड़ी निर्माता"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह संदर्भित करता है राष्ट्रीयता को चालक की"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("गाड़ी निर्माता राष्ट्रीयता को संदर्भित करता है चालक की"): 94 +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['यह \tसंदर्भित करता है \tराष्ट्रीयता को', 'राष्ट्रीयता को\tसंदर्भित करता है \tगाड़ी निर्माता', 'राष्ट्रीयता को\tproperty\tप्रतिस्पर्धी टीम की', 'राष्ट्रीयता को\tसंदर्भित करता है \tचालक की', 'यह\tसंदर्भित करता है\tराष्ट्रीयता को', 'यह \tसंदर्भित करता है राष्ट्रीयता को\tगाड़ी निर्माता', 'यह \tसंदर्भित करता है राष्ट्रीयता को\tचालक की', 'गाड़ी निर्माता\tराष्ट्रीयता को संदर्भित करता है \tचालक की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied but with a|AND|satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सड़क मार्ग सीधी बस सेवा है रत्नागिरी के लिए"): 95 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सीधी बस सेवा property मुंबई से"): 95 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सड़क मार्ग है सीधी बस सेवा"): 95 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सीधी बस सेवा है मुंबई से"): 95 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सड़क मार्ग है सीधी बस सेवा मुंबई से"): 95 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['सड़क मार्ग\tसीधी बस सेवा है\tरत्नागिरी के लिए', 'सीधी बस सेवा\tproperty\tमुंबई से', 'सड़क मार्ग\tहै\tसीधी बस सेवा', 'सीधी बस सेवा\tहै\tमुंबई से', 'सड़क मार्ग\tहै सीधी बस सेवा\tमुंबई से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("छपाई में प्रयोग होता था ब्लाकों का"): 96 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ब्लाकों का जिसका निर्माण करते थे शिल्पी सुथार"): 96 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("छपाई में प्रयोग होता था लकड़ी के ब्लाकों का"): 96 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("शिल्पी सुथार निर्माण करते थे जिसका"): 96 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['छपाई में\tप्रयोग होता था \tब्लाकों का', 'ब्लाकों का\tजिसका निर्माण करते थे\tशिल्पी सुथार', 'छपाई में\tप्रयोग होता था\tलकड़ी के ब्लाकों का', 'शिल्पी सुथार\tनिर्माण करते थे\tजिसका'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह शब्द आता है सरकारी इकाई के लिये"): 97 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रयोग में आता है सरकारी इकाई के लिये"): 97 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("विधि बनाने वाली सरकारी इकाई के लिये"): 97 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह शब्द प्रयोग में विधि"): 97 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह शब्द आता है सरकारी इकाई के लिये प्रयोग में"): 97 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +After processing all the extractions +['यह शब्द\tआता है\tसरकारी इकाई के लिये', 'प्रयोग में\tआता है\tसरकारी इकाई के लिये', 'विधि\tबनाने वाली\tसरकारी इकाई के लिये', 'यह शब्द\tप्रयोग में\tविधि', 'यह शब्द\tआता है सरकारी इकाई के लिये\tप्रयोग में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह स्थित है बलिया जिले में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बलिया जिले में property उत्तर प्रदेश के"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बलिया शहर से स्थित है पश्चिम में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied but with a", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह स्थित है उत्तर प्रदेश के बलिया जिले में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बलिया जिले में यह स्थित है उत्तर प्रदेश के बलिया जिले में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उत्तर प्रदेश के बलिया जिले में यह स्थित है बलिया शहर से थोड़ी दूर पश्चिम में"): 98 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +After processing all the extractions +['यह\tस्थित है\tबलिया जिले में', 'बलिया जिले में\tproperty\tउत्तर प्रदेश के', 'बलिया शहर से\tस्थित है\tपश्चिम में', 'यह\tस्थित है\tउत्तर प्रदेश के बलिया जिले में', 'यह\tस्थित है\tबलिया शहर से थोड़ी दूर पश्चिम में', 'बलिया जिले में\tयह स्थित है\tउत्तर प्रदेश के बलिया जिले में', 'बलिया जिले में\tयह स्थित है\tबलिया शहर से थोड़ी दूर पश्चिम में', 'उत्तर प्रदेश के बलिया जिले में\tयह स्थित है\tबलिया शहर से थोड़ी दूर पश्चिम में'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": { + "a": "satisfied", + "b": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होने हत्या नहीं करवाई उसेक बाद"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("हत्या नहीं करवाई property पिता की"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होने नहीं करवाई हत्या"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उसेक बाद नहीं करवाई हत्या"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अन्य सम्राट किया करते थे हत्या"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उन्होने नहीं करवाई हत्या उसेक बाद"): 99 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['उन्होने\tहत्या नहीं करवाई\tउसेक बाद', 'हत्या नहीं करवाई\tproperty\tपिता की', 'उन्होने\tनहीं करवाई\tहत्या', 'उसेक बाद\tनहीं करवाई\tहत्या', 'अन्य सम्राट\tकिया करते थे\tहत्या', 'उन्होने\tनहीं करवाई हत्या\tउसेक बाद'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied", + "satisfied but with a" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर निर्धारण"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("निर्धारण property स्थिति का"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक खिलाड़ी के लिये किया जाता है हवाओं की"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये हवाओं की"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये स्थिति का"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("सर्वप्रथम किया जाता है प्रत्येक खिलाड़ी के लिये निर्धारण"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("निर्धारण प्रत्येक खिलाड़ी के लिये किया जाता है फेंककर पासा"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है स्थिति का"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हवाओं की प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("स्थिति का प्रत्येक खिलाड़ी के लिये किया जाता है निर्धारण"): 100 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['सर्वप्रथम\tकिया जाता है\tप्रत्येक खिलाड़ी के लिये', 'प्रत्येक खिलाड़ी के लिये किया जाता है\tफेंककर\tनिर्धारण', 'प्रत्येक खिलाड़ी के लिये किया जाता है\tफेंककर\tपासा', 'निर्धारण\tproperty\tस्थिति का', 'प्रत्येक खिलाड़ी के लिये\tकिया जाता है\tहवाओं की', 'प्रत्येक खिलाड़ी के लिये\tकिया जाता है\tस्थिति का', 'प्रत्येक खिलाड़ी के लिये\tकिया जाता है\tनिर्धारण', 'सर्वप्रथम\tकिया जाता है प्रत्येक खिलाड़ी के लिये\tहवाओं की', 'सर्वप्रथम\tकिया जाता है प्रत्येक खिलाड़ी के लिये\tस्थिति का', 'सर्वप्रथम\tकिया जाता है प्रत्येक खिलाड़ी के लिये\tनिर्धारण', 'निर्धारण\tप्रत्येक खिलाड़ी के लिये किया जाता है फेंककर\tपासा', 'हवाओं की\tप्रत्येक खिलाड़ी के लिये किया जाता है\tस्थिति का', 'हवाओं की\tप्रत्येक खिलाड़ी के लिये किया जाता है\tनिर्धारण', 'स्थिति का\tप्रत्येक खिलाड़ी के लिये किया जाता है\tनिर्धारण'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हाइपरयूरीसेमिया होता है मूल कारण"): 101 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("हाइपरयूरीसेमिया होता है वात रोग का मूल कारण"): 101 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['हाइपरयूरीसेमिया \tहोता है\tमूल कारण', 'हाइपरयूरीसेमिया\tहोता है\tवात रोग का मूल कारण'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्रसिद्ध है यही कारण"): 102 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("केरल प्रसिद्ध है अपनी आयुर्वेदिक चिकित्सा शैली के कारण"): 102 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['प्रसिद्ध\tहै\tयही कारण', 'केरल\tप्रसिद्ध है\tअपनी आयुर्वेदिक चिकित्सा शैली के कारण'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उदगम स्थान ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उदगम स्थान property इसका"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अंतगर्त हिमालय पर्वत के नीचे का property सिरमोर राज्य के"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसका उदगम स्थान सिरमोर राज्य के"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उदगम स्थान है ढलुवा भाग"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ढलुवा भाग है अंतगर्त हिमालय पर्वत के नीचे का"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उदगम स्थान है ढलुवा भाग अंतगर्त हिमालय पर्वत के नीचे का"): 103 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +After processing all the extractions +['उदगम स्थान\tढलुवा भाग है\tअंतगर्त हिमालय पर्वत के नीचे का', 'उदगम स्थान\tproperty\tइसका', 'अंतगर्त हिमालय पर्वत के नीचे का\tproperty\tसिरमोर राज्य के', 'इसका\tउदगम स्थान\tसिरमोर राज्य के', 'उदगम स्थान\tहै\tढलुवा भाग', 'सिरमोर राज्य के\tअंतगर्त\tहिमालय पर्वत के नीचे का', 'ढलुवा भाग\tहै\tअंतगर्त हिमालय पर्वत के नीचे का', 'उदगम स्थान\tहै ढलुवा भाग\tअंतगर्त हिमालय पर्वत के नीचे का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied", + "b": "not satisfied", + "c": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दक्षिण भारत में प्राधान्य था उन दिनों"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("प्राधान्य property परम्परागत चित्रकला का ही"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("दक्षिण भारत में था प्राधान्य"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन दिनों था प्राधान्य"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("परम्परागत चित्रकला का ही था प्राधान्य"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("दक्षिण भारत में था प्राधान्य उन दिनों"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("दक्षिण भारत में था प्राधान्य परम्परागत चित्रकला का ही"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("उन दिनों था प्राधान्य परम्परागत चित्रकला का ही"): 104 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['दक्षिण भारत में\tप्राधान्य था\tउन दिनों', 'प्राधान्य\tproperty\tपरम्परागत चित्रकला का ही', 'दक्षिण भारत में\tथा\tप्राधान्य', 'उन दिनों\tथा\tप्राधान्य', 'परम्परागत चित्रकला का ही\tथा\tप्राधान्य', 'दक्षिण भारत में\tथा प्राधान्य\tउन दिनों', 'दक्षिण भारत में\tथा प्राधान्य\tपरम्परागत चित्रकला का ही', 'उन दिनों\tथा प्राधान्य\tपरम्परागत चित्रकला का ही'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("ये कहानियाँ हो सकती हैं किसी देश"): 105 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("ये कहानियाँ हो सकती हैं समय की"): 105 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("किसी देश ये कहानियाँ हो सकती हैं समय की"): 105 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +After processing all the extractions +['ये कहानियाँ\tहो सकती हैं\tकिसी देश', 'ये कहानियाँ\tहो सकती हैं\tसमय की', 'किसी देश\tये कहानियाँ हो सकती हैं\tसमय की'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं और भी कुछ निम्नलिखित कारण"): 106 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("और भी कुछ निम्नलिखित कारण प्रोत्साहित करते हैं प्रकृति आधारित निर्माण को"): 106 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['प्रकृति आधारित निर्माण को\tप्रोत्साहित करते हैं\tऔर भी कुछ निम्नलिखित कारण', 'और भी कुछ निम्नलिखित कारण\tप्रोत्साहित करते हैं\tप्रकृति आधारित निर्माण को'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("2010 को दर्शन परिषद् के सम्पन्न हुआ नाम से"): 107 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['2010 को दर्शन परिषद् के\tसम्पन्न हुआ\tनाम से'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("यहीं पर देहांत हो गया सन 1533 में"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अल्पायु में देहांत हो गया दिन"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनका देहांत हो गया दिन"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अल्पायु में property 47 वर्ष की"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("दिन property रथयात्रा के"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यहीं पर हुआ देहांत हो गया"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सन 1533 में हुआ देहांत हो गया"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("47 वर्ष की था देहांत हो गया"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अल्पायु में हुआ देहांत हो गया"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("रथयात्रा के था दिन"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("उनका था देहांत हो गया"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("अल्पायु में देहांत हो गया दिन उनका"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यहीं पर हुआ देहांत हो गया सन 1533 में"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("यहीं पर हुआ देहांत हो गया अल्पायु में"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("सन 1533 में हुआ देहांत हो गया अल्पायु में"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("47 वर्ष की था देहांत हो गया उनका"): 108 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['यहीं पर\tदेहांत हो गया\tसन 1533 में', 'अल्पायु में\tदेहांत हो गया\tदिन', 'उनका\tदेहांत हो गया\tदिन', 'अल्पायु में\tproperty\t47 वर्ष की', 'दिन\tproperty\tरथयात्रा के', 'यहीं पर\tहुआ\tदेहांत हो गया', 'सन 1533 में\tहुआ\tदेहांत हो गया', '47 वर्ष की\tथा\tदेहांत हो गया', 'अल्पायु में\tहुआ\tदेहांत हो गया', 'रथयात्रा के\tथा\tदिन', 'उनका\tथा\tदेहांत हो गया', 'अल्पायु में\tदेहांत हो गया दिन\tउनका', 'यहीं पर\tहुआ देहांत हो गया\tसन 1533 में', 'यहीं पर\tहुआ देहांत हो गया\tअल्पायु में', 'सन 1533 में\tहुआ देहांत हो गया\tअल्पायु में', '47 वर्ष की\tथा देहांत हो गया\tउनका'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied", + "not satisfied", + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("इसे कहा जाता है यह देखा जाता है अक्सर"): 109 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तालाब में देखा जाता है अक्सर कहा जाता है"): 109 +{ + "cluster 1": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("इसे कहा जाता है पाण्सिल्क भी"): 109 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("यह देखा जाता है अक्सर इसे कहा जाता है पाण्सिल्क भी"): 109 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['इसे\tकहा जाता है\tयह देखा जाता है अक्सर', 'तालाब में\tदेखा जाता है अक्सर\tकहा जाता है', 'इसे\tकहा जाता है\tपाण्सिल्क भी', 'यह देखा जाता है अक्सर\tइसे कहा जाता है\tपाण्सिल्क भी'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वे बने तीसरे ब्रिटिश प्रबंधक"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("2008 में बने वे"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तीसरे ब्रिटिश प्रबंधक जीता यूरोपियन कप"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("2008 में बने तीसरे ब्रिटिश प्रबंधक"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जिन्होंने जीता यूरोपियन कप"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("एकाधिक अवसर पर जीता यूरोपियन कप"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("तीसरे ब्रिटिश प्रबंधक वे बने 2008 में"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता जिन्होंने"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("यूरोपियन कप तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जिन्होंने तीसरे ब्रिटिश प्रबंधक जीता एकाधिक अवसर पर"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("जिन्होंने जीता यूरोपियन कप एकाधिक अवसर पर"): 110 +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['वे\tबने\tतीसरे ब्रिटिश प्रबंधक', '2008 में\tबने\tवे', 'तीसरे ब्रिटिश प्रबंधक\tजीता\tयूरोपियन कप', 'तीसरे ब्रिटिश प्रबंधक\tजीता\tजिन्होंने', 'तीसरे ब्रिटिश प्रबंधक\tजीता\tएकाधिक अवसर पर', '2008 में\tबने\tतीसरे ब्रिटिश प्रबंधक', 'जिन्होंने\tजीता\tयूरोपियन कप', 'एकाधिक अवसर पर\tजीता\tयूरोपियन कप', 'तीसरे ब्रिटिश प्रबंधक\tवे बने\t2008 में', 'यूरोपियन कप\tतीसरे ब्रिटिश प्रबंधक जीता\tजिन्होंने', 'यूरोपियन कप\tतीसरे ब्रिटिश प्रबंधक जीता\tएकाधिक अवसर पर', 'जिन्होंने\tतीसरे ब्रिटिश प्रबंधक जीता\tएकाधिक अवसर पर', 'जिन्होंने\tजीता यूरोपियन कप\tएकाधिक अवसर पर'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied", + "satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मॉस से जल रोक रखा जाता है मिट्टी में"): 111 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "not satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("मॉस से रोक रखा जाता है जल"): 111 +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +After processing all the extractions +['मॉस से\tजल रोक रखा जाता है\tमिट्टी में', 'मॉस से\tरोक रखा जाता है\tजल'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "satisfied" + ], + "compensatory": {} + }, + "cluster 2": { + "essential": [ + "satisfied", + "not satisfied" + ], + "compensatory": {} + } +} +The state of golden dict after processing of this extraction ("वर्तमान रूप भण्डार है प्राचीन इतिहास कथाओं उपदेशों आदि का"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "not satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्तमान रूप property महाभारत का"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("महाभारत का है भण्डार"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्तमान रूप है भण्डार"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("प्राचीन इतिहास कथाओं उपदेशों आदि का है भण्डार"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("महाभारत का है भण्डार वर्तमान रूप"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("महाभारत का है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +The state of golden dict after processing of this extraction ("वर्तमान रूप है भण्डार प्राचीन इतिहास कथाओं उपदेशों आदि का"): 112 +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} +After processing all the extractions +['वर्तमान रूप\tभण्डार है\tप्राचीन इतिहास कथाओं उपदेशों आदि का', 'वर्तमान रूप\tproperty\tमहाभारत का', 'महाभारत का\tहै\tभण्डार', 'वर्तमान रूप\tहै\tभण्डार', 'प्राचीन इतिहास कथाओं उपदेशों आदि का\tहै\tभण्डार', 'महाभारत का\tहै भण्डार\tवर्तमान रूप', 'महाभारत का\tहै भण्डार\tप्राचीन इतिहास कथाओं उपदेशों आदि का', 'वर्तमान रूप\tहै भण्डार\tप्राचीन इतिहास कथाओं उपदेशों आदि का'] +The state of golden dict is (of this sentence) +{ + "cluster 1": { + "essential": [ + "not satisfied" + ], + "compensatory": { + "a": "satisfied" + } + } +} + [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7] + [np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0, np.int64(1), np.int64(2), np.int64(3), np.int64(4), np.int64(5), np.int64(6), np.int64(7), np.int64(8), np.int64(9), 0] +TP [1, 0, 0, 4, 0, 3, 4, 3, 2, 2, 2, 1, 0, 1, 4, 4, 2, 2, 1, 4, 1, 1, 2, 2, 2, 1, 1, 2, 0, 1, 6, 2, 4, 1, 1, 1, 3, 2, 0, 1, 1, 2, 2, 2, 1, 4, 2, 3, 8, 1, 3, 2, 1, 2, 0, 2, 0, 1, 2, 5, 0, 3, 3, 1, 2, 2, 2, 3, 0, 2, 3, 1, 0, 2, 1, 1, 1, 2, 0, 1, 1, 2, 2, 1, 1, 1, 0, 1, 4, 0, 1, 3, 1, 2, 0, 5, 2, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 2, 2, 1] 110 +FP [2, 3, 13, 8, 4, 2, 7, 5, 0, 2, 9, 11, 4, 7, 8, 4, 4, 2, 6, 8, 5, 4, 1, 2, 2, 8, 1, 3, 2, 2, 18, 1, 13, 8, 1, 2, 11, 6, 5, 4, 2, 4, 2, 3, 6, 2, 2, 4, 15, 4, 0, 2, 22, 0, 4, 0, 5, 3, 1, 4, 2, 3, 1, 0, 2, 1, 2, 5, 3, 1, 2, 1, 6, 2, 2, 6, 0, 4, 8, 7, 3, 7, 1, 6, 6, 4, 13, 3, 9, 6, 5, 5, 4, 2, 5, 3, 4, 14, 1, 1, 8, 7, 3, 1, 1, 15, 3, 11, 0, 7] +FN [0, 1, 3, 1, 1, 0, 1, 0, 0, 0, 2, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 2, 0, 1, 2, 0, 1, 2, 1, 1, 2, 0, 1, 2, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 0, 2, 3, 0, 1, 1, 1, 1, 0, 1, 4, 1, 0, 0, 1] +Missing FNs [2, 1] + +=== FINAL METRICS === +Total TP (True Positives): 186 +Total FP (False Positives): 509 +Total FN (False Negatives): 97 + - Regular FN: 94 + - Missing FN: 3 +Total Extractions: 695 +Total Expected: 283 +Recall 0.657243816254417 +Precision 0.26762589928057556 +F-score 0.3803680981595092 diff --git a/GSoC25_H/IndIE/hindi-benchie/sents.txt b/GSoC25_H/IndIE/hindi-benchie/sents.txt new file mode 100644 index 0000000..131e716 --- /dev/null +++ b/GSoC25_H/IndIE/hindi-benchie/sents.txt @@ -0,0 +1,112 @@ +sent_id:1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +sent_id:2 अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +sent_id:3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +sent_id:4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +sent_id:5 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +sent_id:6 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +sent_id:7 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +sent_id:8 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +sent_id:9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +sent_id:10 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +sent_id:11 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +sent_id:12 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +sent_id:13 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +sent_id:14 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +sent_id:15 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +sent_id:16 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +sent_id:17 हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +sent_id:18 बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +sent_id:19 तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +sent_id:20 कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +sent_id:21 बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +sent_id:22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +sent_id:23 सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +sent_id:24 आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +sent_id:25 इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +sent_id:26 मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +sent_id:27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +sent_id:28 उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +sent_id:29 शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +sent_id:30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +sent_id:31 वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +sent_id:32 सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +sent_id:33 एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +sent_id:34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +sent_id:35 किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +sent_id:36 जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +sent_id:37 सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +sent_id:38 मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +sent_id:39 बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +sent_id:40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +sent_id:41 उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +sent_id:42 कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +sent_id:43 मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +sent_id:44 इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +sent_id:45 इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +sent_id:46 त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +sent_id:47 मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +sent_id:48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +sent_id:49 हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +sent_id:50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +sent_id:51 यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +sent_id:52 द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +sent_id:53 यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +sent_id:54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +sent_id:55 कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +sent_id:56 सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +sent_id:57 यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +sent_id:58 चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +sent_id:59 कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +sent_id:60 अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +sent_id:61 इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +sent_id:62 वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +sent_id:63 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +sent_id:64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +sent_id:65 इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +sent_id:66 उन्हें उत्कल मणि के नाम से जाना जाता है . +sent_id:67 अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +sent_id:68 इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +sent_id:69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +sent_id:70 राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +sent_id:71 ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +sent_id:72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +sent_id:73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +sent_id:74 इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +sent_id:75 यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +sent_id:76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +sent_id:77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +sent_id:78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +sent_id:79 पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +sent_id:80 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +sent_id:81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +sent_id:82 विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +sent_id:83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +sent_id:84 एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +sent_id:85 चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +sent_id:86 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +sent_id:87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +sent_id:88 उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +sent_id:89 जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +sent_id:90 ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +sent_id:91 विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +sent_id:92 उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +sent_id:93 इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +sent_id:94 यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +sent_id:95 सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +sent_id:96 छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +sent_id:97 यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +sent_id:98 यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +sent_id:99 उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +sent_id:100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +sent_id:101 हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +sent_id:102 यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +sent_id:103 इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +sent_id:104 दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +sent_id:105 ये कहानियाँ किसी देश या समय की हो सकती हैं . +sent_id:106 और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +sent_id:107 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +sent_id:108 यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +sent_id:109 इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +sent_id:110 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +sent_id:111 मॉस से मिट्टी में जल रोक रखा जाता है . +sent_id:112 महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . diff --git a/GSoC25_H/IndIE/llm_extractor.py b/GSoC25_H/IndIE/llm_extractor.py new file mode 100644 index 0000000..3122307 --- /dev/null +++ b/GSoC25_H/IndIE/llm_extractor.py @@ -0,0 +1,944 @@ +import json +import ollama +import time +import re +from typing import List, Dict, Any, Tuple +from dataclasses import dataclass + +@dataclass +class ModelConfig: + """Configuration for the LLM model.""" + name: str = "gemma3:12b-it-qat" + temperature: float = 0.1 + top_p: float = 0.9 + num_predict: int = 2000 + +class LLMInterface: + """Interface for interacting with the language model via Ollama.""" + def __init__(self, model_config: ModelConfig, max_retries: int = 2, timeout: int = 60): + self.model_config = model_config + self.max_retries = max_retries + self.client = ollama.Client(timeout=timeout) + + def generate_response(self, messages: List[Dict[str, Any]]) -> Dict[str, Any]: + """ + Generates a response from the LLM, with retries for handling errors. + """ + retries = 0 + while retries < self.max_retries: + try: + response = self.client.chat( + model=self.model_config.name, + messages=messages, + options={ + "temperature": self.model_config.temperature, + "top_p": self.model_config.top_p, + "num_predict": self.model_config.num_predict + } + ) + return response + + except Exception as e: + retries += 1 + print(f"Error calling model '{self.model_config.name}': {e}. Retrying ({retries}/{self.max_retries})...") + time.sleep(2 ** retries) + + print(f"Failed to get a valid response from model '{self.model_config.name}' after {self.max_retries} retries.") + return None + +class LLMExtractor: + def __init__(self, model_name="gemma3:12b-it-qat", temperature=0.05, max_retries=3, timeout=120): + self.model_config = ModelConfig( + name=model_name, + temperature=temperature, # Lower temperature for more focused extractions + top_p=0.8, # Slightly more focused sampling + num_predict=1500 # Reduced to encourage concise outputs + ) + self.llm_interface = LLMInterface( + model_config=self.model_config, + max_retries=max_retries, + timeout=timeout + ) + + # Quality patterns for filtering false positives + self.low_quality_patterns = [ + # Generic meaningless relations + r'^(में|से|का|के|की|को|पर|द्वारा|के साथ|के लिए)$', + # Temporal fragmentation patterns + r'^(समय|तिथि|में|को|पर)$', + # Property overuse patterns + r'^property$', + # Single word or very short relations + r'^\w{1,2}$', + # Generic spatial relations + r'^(स्थित|अवस्थित|में है|पर है)$' + ] + + def _create_react_prompt(self, sentence: str, chunks: List[str], mdt_info: Dict, language: str = "hi") -> str: + """Create enhanced ReAct prompt with detailed input explanations""" + + # Extract dependency information for better explanation + # dep_relations = mdt_info.get('dependency_relations', []) + # root_phrase = mdt_info.get('root_phrase', 'Unknown') + chunk_str = " | ".join(chunks) + rule_extractions = mdt_info.get('rule_extractions', []) + + # Format rule extractions for display + rule_str = "\n".join([f" {i+1}. [{ext[0]}] --{ext[1]}--> [{ext[2]}]" for i, ext in enumerate(rule_extractions)]) + + # Format dependency tree information as explicit triples + dep_relations = mdt_info.get('dependency_relations', []) + root_phrase = mdt_info.get('root_phrase', 'Unknown') + + dep_tree_str_parts = [] + if root_phrase != 'Unknown': + dep_tree_str_parts.append(f" - ROOT: \"{root_phrase}\" (main action/predicate of the sentence)") + for dep_rel_str in dep_relations: + try: + parts = dep_rel_str.strip('- ').split('->') + dependent_chunk = parts[0].strip() + relation_type = parts[1].strip() + + if relation_type != '0' and dependent_chunk != root_phrase: + dep_tree_str_parts.append(f" - [\"{dependent_chunk}\"] --({relation_type})--> [\"{root_phrase}\"]") + except IndexError: + pass + + dep_tree_str = "\n".join(dep_tree_str_parts) if dep_tree_str_parts else " - No specific dependency relations provided." + + # dep_info = "\n".join([f" - {rel}" for rel in dep_relations[:5]]) # Show first 5 relations + # if len(dep_relations) > 5: + # dep_info += f"\n - ... and {len(dep_relations) - 5} more" + + prompt = f"""You are an expert in Open Information Extraction (OIE) for {language} language. Your task is to extract meaningful factual relationships as triples in the format [head, relation, tail]. + +=== INPUT EXPLANATION === + +ORIGINAL SENTENCE: "{sentence}" +This is the raw text from which we need to extract facts. + +CHUNKS (Syntactic Phrases): [{chunk_str}] +These are meaningful multi-word units identified by a chunking model. Each chunk represents: +- Noun phrases (entities, objects) +- Verb phrases (actions, states) +- Prepositional phrases (relationships, locations, times) +- Other syntactic units + +DEPENDENCY TREE (MDT) INFORMATION: +A dependency tree shows the grammatical relationships between words or phrases in a sentence. It represents how words depend on each other. Each dependency is a directed link from a "head" word (or phrase) to a "dependent" word (or phrase), labeled with the type of grammatical relationship (e.g., subject, object, modifier). The ROOT is the main word or phrase (often the verb or core predicate) from which other words depend. Think of it as a map of the sentence's grammatical structure. + +Dependency Tree Information (parsed as [Dependent] --(Relation_Type)--> [Head]): +{dep_tree_str} + +Root Phrase: "{root_phrase}" (main predicate/action) + + +The dependency tree shows how chunks relate to each other grammatically, helping identify subjects, objects, and modifiers. + +=== REASONING AND ACTION FRAMEWORK === + +STEP 1 - REASON: Analyze the linguistic structure +1. Identify the main predicate (action/state) from the root phrase +2. Find subjects (who/what performs the action) +3. Find objects (who/what receives the action) +4. Look for appositive relationships (X is Y) +5. Consider temporal, locational, and other modifiers + +STEP 2 - ACTION: Extract factual triples +Based on syntactic analysis, extract meaningful [head, relation, tail] triples. + +=== EXTRACTION GUIDELINES === + +**HINDI-SPECIFIC RULES:** + - Keep compound verbs intact: "शुरू किया", "लागू किया गया", "बनाया गया" should be single relations + - Preserve postpositions with their nouns: "द्वारा", "के लिए", "में" when part of meaningful phrases + - Handle passive voice without creating redundant active equivalents + - Use language-appropriate copula (e.g., "है" for Hindi) + + +**RELATIONSHIP TYPES (prioritize these for *new* extractions):** + 1. Appositive Relations: [Entity, "है", Description] - ONLY if clear X=Y relationship + 2. Attribute Relations: [Entity, "के पास है"/"में है"/"का है", Attribute] - ONLY for possession/location + 3. Temporal Relations: [Event, "हुआ", "Time"] - ONLY if time missing from existing extractions + 4. Professional/Role Relations: [Person, "है", "Role/Profession"] - ONLY if clear professional relationship + +**QUALITY CRITERIA:** + - Each new triple should express ONE complete, high-confidence fact NOT already captured + - Head and tail should be meaningful entities or phrases from the CHUNKS exactly as provided + - Relation should clearly express the connection between head and tail + - Avoid generic relations like "का", "की", "के" - use specific semantic relations + - Preserve semantic accuracy over extraction quantity + +**MAINTAIN CHUNK INTEGRITY:** + - Heads and tails MUST be EXACT matches from the provided CHUNKS + - Do NOT fragment chunks or combine parts of different chunks + - Do NOT break meaningful phrases like "केन्द्रीय सरकार के विभाग" into separate parts + +=== DEPENDENCY TREE MAPPING EXAMPLES === + + If dependency shows: ["राम ने"] --(nsubj)--> ["खाया"] and ["खाना"] --(obj)--> ["खाया"] + Extract: ["राम ने", "खाया", "खाना"] (subject-action-object) + + If dependency shows: ["2010 में"] --(obl:tmod)--> ["मिला"] + Extract: ["पुरस्कार", "मिला", "2010 में"] (event-time relation) + +=== COMPLEX EXAMPLES === + +**Example 1: Simple Action** +Input: "डॉक्टर ने मरीज का इलाज किया" +Chunks: ["डॉक्टर ने", "मरीज का", "इलाज", "किया"] +Analysis: Subject="डॉक्टर", Action="इलाज किया", Object="मरीज का" +Output: [["डॉक्टर ने", "इलाज किया", "मरीज का"]] + +**Example 2: Appositive + Action + Temporal** +Input: "भारत के राष्ट्रपति डॉ. ए.पी.जे. अब्दुल कलाम ने 2006 में युवाओं के लिए एक प्रेरणादायक भाषण दिया" +Chunks: ["भारत के", "राष्ट्रपति", "डॉ. ए.पी.जे. अब्दुल कलाम ने", "2006 में", "युवाओं के लिए", "एक प्रेरणादायक भाषण", "दिया"] +Analysis: +- Appositive: "डॉ. ए.पी.जे. अब्दुल कलाम" is "भारत के राष्ट्रपति" +- Action: President gave speech to youth +- Temporal: Event happened in 2006 +Output: [["डॉ. ए.पी.जे. अब्दुल कलाम", "है", "भारत के राष्ट्रपति"], ["डॉ. ए.पी.जे. अब्दुल कलाम ने", "दिया", "एक प्रेरणादायक भाषण"], ["एक प्रेरणादायक भाषण", "दिया 2006 में", "युवाओं के लिए"]] + +**Example 3: Location + Organization + Achievement** +Input: "मुंबई स्थित टाटा कंसल्टेंसी सर्विसेज कंपनी ने पिछले वर्ष सॉफ्टवेयर निर्यात में 50 बिलियन डॉलर का रिकॉर्ड बनाया" +Chunks: ["मुंबई स्थित", "टाटा कंसल्टेंसी सर्विसेज कंपनी ने", "पिछले वर्ष", "सॉफ्टवेयर निर्यात में", "50 बिलियन डॉलर का", "रिकॉर्ड", "बनाया"] +Analysis: +- Location: Company located in Mumbai +- Achievement: Company set export record +- Temporal-financial: Record of $50B in previous year +Output: [["टाटा कंसल्टेंसी सर्विसेज कंपनी", "स्थित है", "मुंबई"], ["टाटा कंसल्टेंसी सर्विसेज कंपनी ने", "बनाया", "50 बिलियन डॉलर का रिकॉर्ड"], ["50 बिलियन डॉलर का रिकॉर्ड", "बनाया पिछले वर्ष", "सॉफ्टवेयर निर्यात में"]] + +=== YOUR TASK === + +Now analyze the given sentence and extract ALL meaningful triples. + +=== REASONING AND ACTION FRAMEWORK === + + STEP 1 - REASON: Analyze the linguistic structure to identify potential missing relationships. + 1. Map dependency tree relations to OIE extractions: + - obj relation → [ROOT] + [action] + [dependent] or [dependent] + [receives action] + [ROOT] + - nsubj relation → [dependent] + [action] + [object] + - obl:tmod relation → [event] + [time marker] + [dependent] + - compound relation → keep as single unit in head/tail/relation + 2. Identify truly missing semantic relationships (not syntactic variations) + 3. Look for implicit facts that require inference but are linguistically justified + 4. Cross-reference with existing extractions to ensure NO semantic overlap + + STEP 2 - ACTION: Extract factual triples based on your syntactic analysis. + Formulate ONLY new, non-redundant [head, relation, tail] triples. + + FORMAT: Return ONLY a valid JSON array: + [["head1", "relation1", "tail1"], ["head2", "relation2", "tail2"], ...] + + === OUTPUT FORMAT === + + REASONING: (Think step by step about entities, relations, and sentence structure, considering missing information) + + ACTION: (Extract additional triples in JSON format based on your reasoning) + + Return ONLY a valid JSON array. If no meaningful relationships are found, return an empty array []. + + Examples of good additional extractions (focus on *missing* facts): + - If existing has "राम खाना खाया", you might find "राम भूखा था" (ONLY if linguistically justified) + - If existing has "किताब मेज पर है", you might find "मेज लकड़ी की है" (ONLY if mentioned in sentence) + + JSON FORMAT: + [["head1", "relation1", "tail1"], ["head2", "relation2", "tail2"], ...] + + IMPORTANT: Ensure JSON is properly formatted with no extra text.""" + + return prompt + + def _create_enhancement_prompt(self, sentence: str, chunks: List[str], mdt_info: Dict, language: str = "hi") -> str: + """Create enhancement prompt that improves existing rule-based extractions""" + + chunk_str = " | ".join(chunks) + rule_extractions = mdt_info.get('rule_extractions', []) + + # Format rule extractions for display + rule_str = "\n".join([f" {i+1}. [{ext[0]}] --{ext[1]}--> [{ext[2]}]" for i, ext in enumerate(rule_extractions)]) + + prompt = f"""You are an expert in Open Information Extraction (OIE) for {language} language. Your task is to ENHANCE existing rule-based extractions by finding ADDITIONAL meaningful relationships that may have been missed. + +=== INPUT === + +ORIGINAL SENTENCE: "{sentence}" + +CHUNKS: [{chunk_str}] + +EXISTING RULE-BASED EXTRACTIONS: +{rule_str} + +=== YOUR TASK === + +The rule-based system has already found {len(rule_extractions)} extractions above. Your job is to: + +1. **FIND MISSING RELATIONSHIPS**: Look for important factual relationships that the rule-based system missed +2. **AVOID REDUNDANCY**: Do NOT repeat the existing extractions +3. **MAINTAIN QUALITY**: Only extract high-confidence, meaningful relationships +4. **PRESERVE ACCURACY**: Ensure semantic correctness for {language} language + +=== ENHANCEMENT GUIDELINES === + +Focus on these types of MISSING relationships: +- **Appositive Relations**: X is Y relationships +- **Attribute Relations**: X has Y, X located in Y +- **Temporal Relations**: X happened at time Y +- **Causal Relations**: X caused Y, X because of Y +- **Complex Relations**: Multi-clause relationships + +QUALITY CRITERIA: +- Each new triple should express ONE complete fact +- Use language-appropriate relations ({language} specific) +- Avoid fragmenting meaningful phrases +- Ensure grammatical correctness + +=== OUTPUT FORMAT === + +Return ONLY additional triples as a JSON array. If no additional meaningful relationships are found, return an empty array []. + +IMPORTANT: Do NOT include any of the existing {len(rule_extractions)} extractions shown above. + +Examples of good additional extractions: +- If existing has "राम खाना खाया", you might find "राम भूखा था" +- If existing has "किताब मेज पर है", you might find "मेज लकड़ी की है" + +JSON FORMAT: +[["head1", "relation1", "tail1"], ["head2", "relation2", "tail2"], ...]""" + + return prompt + + def _create_enhancement_prompt_2(self, sentence: str, chunks: List[str], mdt_info: Dict, language: str = "hi") -> str: + """Create enhancement prompt that improves existing rule-based extractions using a ReAct framework, with English instructions and Hindi examples.""" + + # The 'language' parameter here refers to the language of the text being processed (Hindi in this case), + # not the language of the instructions. So, it should remain 'hi'. + # The prompt itself will be constructed with English instructions. + + chunk_str = " | ".join(chunks) + rule_extractions = mdt_info.get('rule_extractions', []) + + # Format rule extractions for display + rule_str = "\n".join([f" {i+1}. [{ext[0]}] --{ext[1]}--> [{ext[2]}]" for i, ext in enumerate(rule_extractions)]) + + # Format dependency tree information as explicit triples + dep_relations = mdt_info.get('dependency_relations', []) + root_phrase = mdt_info.get('root_phrase', 'Unknown') + + dep_tree_str_parts = [] + if root_phrase != 'Unknown': + dep_tree_str_parts.append(f" - ROOT: \"{root_phrase}\" (main action/predicate of the sentence)") + for dep_rel_str in dep_relations: + try: + parts = dep_rel_str.strip('- ').split('->') + dependent_chunk = parts[0].strip() + relation_type = parts[1].strip() + + if relation_type != '0' and dependent_chunk != root_phrase: + dep_tree_str_parts.append(f" - [\"{dependent_chunk}\"] --({relation_type})--> [\"{root_phrase}\"]") + except IndexError: + pass + + dep_tree_str = "\n".join(dep_tree_str_parts) if dep_tree_str_parts else " - No specific dependency relations provided." + + prompt = f"""You are an expert in Open Information Extraction (OIE) for {language} language. Your task is to ENHANCE existing rule-based extractions by finding ADDITIONAL meaningful relationships that may have been missed. + + === INPUT === + + ORIGINAL SENTENCE: "{sentence}" + + CHUNKS: [{chunk_str}] + + DEPENDENCY TREE EXPLANATION: + A dependency tree shows the grammatical relationships between words or phrases in a sentence. It represents how words depend on each other. Each dependency is a directed link from a "head" word (or phrase) to a "dependent" word (or phrase), labeled with the type of grammatical relationship (e.g., subject, object, modifier). The ROOT is the main word or phrase (often the verb or core predicate) from which other words depend. Think of it as a map of the sentence's grammatical structure. + + Dependency Tree Information (parsed as [Dependent] --(Relation_Type)--> [Head]): + {dep_tree_str} + + EXISTING RULE-BASED EXTRACTIONS: + {rule_str} + + === YOUR TASK === + + The rule-based system has already found {len(rule_extractions)} extractions above. Your job is to: + + 1. **FIND MISSING RELATIONSHIPS**: Look for important factual relationships that the rule-based system missed based on the sentence, chunks, and dependency information. + 2. **AVOID REDUNDANCY**: Do NOT repeat the existing extractions or create semantically equivalent extractions. + 3. **MAINTAIN QUALITY**: Only extract high-confidence, meaningful relationships. + 4. **PRESERVE ACCURACY**: Ensure semantic correctness for {language} language. + + === CRITICAL QUALITY CONTROL === + + **STRICT REDUNDANCY AVOIDANCE:** + - Do NOT extract the same information with different phrasing + - Do NOT break down existing extractions into parts + - Do NOT create multiple extractions for the same core fact + + GOOD: ["राम", "खाया", "खाना"] + BAD (Redundant): ["राम ने", "भोजन किया", "खाना"] (same fact, different phrasing) + BAD (Fragmentation): ["राम", "property", "खाना खाने वाला"] (breaking down the action) + + **AVOID MISUSE OF "property" RELATION:** + The "property" relation is overused and often incorrect. Avoid using "property" for: + - Temporal indicators: ["घटना", "property", "समय"] is WRONG, use ["घटना", "समय में हुई", "समय"] + - Agents: ["कर्म", "property", "कर्ता द्वारा"] is WRONG, use ["कर्ता", "किया", "कर्म"] + - Parts of compound verbs: ["शुरू", "property", "की"] is WRONG, use ["शुरू की"] as single relation + - Locational/temporal phrases: ["गोधरा ट्रेन कांड", "property", "01 जून"] is WRONG + + Use "property" ONLY for true taxonomic/descriptive relationships: ["व्यक्ति", "property", "डॉक्टर"] + + **MAINTAIN CHUNK INTEGRITY:** + - Heads and tails MUST be EXACT matches from the provided CHUNKS + - Do NOT fragment chunks or combine parts of different chunks + - Do NOT break meaningful phrases like "केन्द्रीय सरकार के विभाग" into separate parts + + === REASONING AND ACTION FRAMEWORK === + + STEP 1 - REASON: Analyze the linguistic structure to identify potential missing relationships. + 1. Map dependency tree relations to OIE extractions: + - obj relation → [ROOT] + [action] + [dependent] or [dependent] + [receives action] + [ROOT] + - nsubj relation → [dependent] + [action] + [object] + - obl:tmod relation → [event] + [time marker] + [dependent] + - compound relation → keep as single unit in head/tail/relation + 2. Identify truly missing semantic relationships (not syntactic variations) + 3. Look for implicit facts that require inference but are linguistically justified + 4. Cross-reference with existing extractions to ensure NO semantic overlap + + STEP 2 - ACTION: Extract factual triples based on your syntactic analysis. + Formulate ONLY new, non-redundant [head, relation, tail] triples. + + === EXTRACTION GUIDELINES === + + HINDI-SPECIFIC RULES: + - Keep compound verbs intact: "शुरू किया", "लागू किया गया", "बनाया गया" should be single relations + - Preserve postpositions with their nouns: "द्वारा", "के लिए", "में" when part of meaningful phrases + - Handle passive voice without creating redundant active equivalents + - Use language-appropriate copula (e.g., "है" for Hindi) + + RELATIONSHIP TYPES (prioritize these for *new* extractions): + 1. Appositive Relations: [Entity, "है", Description] - ONLY if clear X=Y relationship + 2. Attribute Relations: [Entity, "के पास है"/"में है"/"का है", Attribute] - ONLY for possession/location + 3. Temporal Relations: [Event, "हुआ", "Time"] - ONLY if time missing from existing extractions + 4. Professional/Role Relations: [Person, "है", "Role/Profession"] - ONLY if clear professional relationship + + QUALITY CRITERIA: + - Each new triple should express ONE complete, high-confidence fact NOT already captured + - Head and tail should be meaningful entities or phrases from the CHUNKS exactly as provided + - Relation should clearly express the connection between head and tail + - Avoid generic relations like "का", "की", "के" - use specific semantic relations + - Preserve semantic accuracy over extraction quantity + + === DEPENDENCY TREE MAPPING EXAMPLES === + + If dependency shows: ["राम ने"] --(nsubj)--> ["खाया"] and ["खाना"] --(obj)--> ["खाया"] + Extract: ["राम ने", "खाया", "खाना"] (subject-action-object) + + If dependency shows: ["2010 में"] --(obl:tmod)--> ["मिला"] + Extract: ["पुरस्कार", "मिला", "2010 में"] (event-time relation) + + === OUTPUT FORMAT === + + REASONING: (Think step by step about entities, relations, and sentence structure, considering missing information) + + ACTION: (Extract additional triples in JSON format based on your reasoning) + + Return ONLY a valid JSON array. If no additional meaningful relationships are found, return an empty array []. + + IMPORTANT: Do NOT include any of the existing {len(rule_extractions)} extractions shown above or semantically equivalent variations. + + Examples of good additional extractions (focus on *missing* facts): + - If existing has "राम खाना खाया", you might find "राम भूखा था" (ONLY if linguistically justified) + - If existing has "किताब मेज पर है", you might find "मेज लकड़ी की है" (ONLY if mentioned in sentence) + + JSON FORMAT: + [["head1", "relation1", "tail1"], ["head2", "relation2", "tail2"], ...] + """ + + return prompt + + def _create_improved_filter_prompt(self, sentence: str, extractions: List[List[str]], language: str = "hi") -> str: + """Create improved, less aggressive filtering prompt that preserves valid extractions""" + + # Format extractions for display + ext_str = "\n".join([f" {i+1}. [{ext[0]}] --{ext[1]}--> [{ext[2]}]" for i, ext in enumerate(extractions)]) + + prompt = f"""You are an expert quality controller for Open Information Extraction (OIE) in {language} language. Your task is to REMOVE only clearly invalid extractions while PRESERVING all meaningful, factually correct triples. + +=== INPUT === + +ORIGINAL SENTENCE: "{sentence}" + +CURRENT EXTRACTIONS ({len(extractions)} total): +{ext_str} + +=== FILTERING GUIDELINES === + +**PRESERVE (KEEP)** extractions that are: + +1. **PROPERTY RELATIONS**: Keep ALL valid property/is-a relationships + - KEEP: [X, "property", Y] - These are important taxonomic relationships + - KEEP: [नरेंद्र मोदी, "property", प्रधानमंत्री] ✓ + - KEEP: [गाँव, "property", उत्तराखण्ड राज्य के अन्तर्गत] ✓ + +2. **TEMPORAL RELATIONS**: Keep time-based relationships + - KEEP: [वे, "नियुक्त हुई", "06 अक्टूबर 1989 को"] ✓ + - KEEP: [X, "हुआ", "समय में"] ✓ + +3. **SPATIAL/LOCATIONAL RELATIONS**: Keep location-based relationships + - KEEP: [सिलकोट, "एक गाँव है", "गंगोलीहाट तहसील में"] ✓ + - KEEP: [X, "स्थित है", "Y में"] ✓ + +4. **SIMPLE BUT COMPLETE FACTS**: Keep basic but meaningful relationships + - KEEP: [किताब, "है", "नीली"] ✓ + - KEEP: [राम, "खाता है", "सेब"] ✓ + +5. **DESCRIPTIVE RELATIONS**: Keep relations that describe attributes + - KEEP: [X, "के रूप में", Y] ✓ + - KEEP: [X, "के लिए", Y] when semantically meaningful ✓ + +**REMOVE (FILTER OUT)** extractions that are: + +1. **CLEARLY BROKEN**: Empty or malformed extractions + - REMOVE: ["", "relation", Y] or [X, "", Y] or [X, "relation", ""] + - REMOVE: [very long garbled text, "rel", Y] + +2. **EXACT DUPLICATES**: Identical extractions repeated + - If [A, "rel", B] appears multiple times, keep only one + +3. **CONTEXTUALLY NONSENSICAL**: Relations that make no semantic sense + - REMOVE: [random words, "meaningless", unrelated phrase] + - But be VERY careful - many relations that seem simple are actually valid + +=== CRITICAL: PRESERVE VALID SIMPLE RELATIONS === + +**DO NOT REMOVE** these types of commonly valid extractions: + +✅ **Property relations**: [X, "property", Y] +✅ **Temporal facts**: [Event, "हुआ", "Date/Time"] +✅ **Location facts**: [Entity, "में है", "Location"] +✅ **Basic actions**: [Subject, "करता है", "Object"] +✅ **State relations**: [Entity, "है", "Attribute"] +✅ **Possession**: [X, "के पास है", Y] + +=== EXAMPLES FROM ACTUAL DATA === + +**KEEP ALL OF THESE:** +- [शक्तिरूपी माया की, "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"] ✓ +- [गोधरा ट्रेन कांड की, "property", "01 जून"] ✓ +- [एक गाँव, "property", "उत्तराखण्ड राज्य के अन्तर्गत"] ✓ +- [वे, "नियुक्त हुई", "न्यायाधीश"] ✓ +- [सोनू, "बन चुके हैं", "एक प्रमुख हस्ती"] ✓ + +**ONLY REMOVE CLEARLY INVALID:** +- ["", "property", "something"] ❌ +- [गaर्बल्ed टेक्स्ट, "nonsense", "random"] ❌ + +=== YOUR TASK === + +Be CONSERVATIVE in filtering. When in doubt, KEEP the extraction. Only remove extractions that are: +1. Clearly malformed (empty elements) +2. Exact duplicates +3. Completely nonsensical + +Return ALL meaningful extractions, even if they seem simple. Property relations, temporal facts, and location relations are especially important to preserve. + +JSON FORMAT: +[["head1", "relation1", "tail1"], ["head2", "relation2", "tail2"], ...] + +CRITICAL: Err on the side of KEEPING extractions rather than removing them.""" + + return prompt + + # NEWNEW + def _create_improved_filter_prompt_2(self, sentence: str, extractions: List[List[str]], language: str = "hi") -> str: + """Create a strict, verification-focused filtering prompt to remove invalid extractions.""" + + ext_str = "\n".join([f" {i+1}. {ext}" for i, ext in enumerate(extractions)]) + + prompt = f"""You are a meticulous and strict quality assurance analyst for Open Information Extraction (OIE). Your task is to evaluate a list of proposed factual triples against a source sentence and **REJECT** any that are invalid, incomplete, or nonsensical. + + === INPUT === + + SOURCE SENTENCE: "{sentence}" + + PROPOSED TRIPLES FOR EVALUATION: + {ext_str} + + === EVALUATION AND REJECTION CRITERIA === + + You must **REJECT** a triple if it meets ANY of the following criteria: + + 1. **GRAMMATICALLY INVALID SUBJECT/OBJECT (Head/Tail):** + - The head or tail is a prepositional phrase or fragment, not a self-contained entity. + - **Example:** "की" (of), "के लिए" (for), "में" (in) at the end of a head/tail often indicates a fragment. + - **REJECT:** `['चीफ कोर्ट के', 'पेश हुए', 'दोनों मामले']` (Reason: Head 'चीफ कोर्ट के' means 'Of the Chief Court', which is not a valid subject.) + - **REJECT:** `['मृत्यु', 'property', 'बाशो की']` (Reason: Tail 'बाशो की' means 'Of Basho', not a valid entity. It should be just 'बाशो'.) + + 2. **SEMANTICALLY INCORRECT RELATION:** + - The relation phrase is not a verb or a state of being. It might be a noun or adjective that was misplaced. + - **REJECT:** `['एयर लाइन के', 'तकनीकी केंद्र को', 'स्थानापन्न करना है']` (Reason: The relation 'तकनीकी केंद्र को' is a noun phrase, not a valid action or relation.) + + 3. **LOGICALLY FALSE OR NONSENSICAL:** + - The fact stated by the triple is not supported by the sentence or makes no sense. + - **Sentence:** "राम ने सेब खाया" (Ram ate an apple) + - **REJECT:** `['सेब', 'खाया', 'राम ने']` (Reason: The apple did not eat Ram. The subject and object are inverted.) + + 4. **INCOMPLETE OR FRAGMENTED FACT:** + - The triple represents a tiny, uninformative fragment of a larger, more complete fact that is present. + - **Sentence:** "सिलकोट, पिथोरागढ जिले का एक गाँव है।" (Silkot is a village in Pithoragarh district.) + - **REJECT:** `['एक गाँव', 'property', 'पिथोरागढ जिले का']` (Reason: This is a low-quality fragment. The main fact is about 'सिलकोट'.) + + === THINKING PROCESS === + + For each triple, perform this mental check: + 1. Read the triple: `[Head, Relation, Tail]`. + 2. Check Head: Is it a valid, complete entity? Or is it a fragment like "Of X"? -> If fragment, REJECT. + 3. Check Tail: Is it a valid, complete entity? -> If fragment, REJECT. + 4. Check Relation: Is it a valid action/verb/state? -> If not, REJECT. + 5. Check Logic: Does "[Head] [Relation] [Tail]" make sense according to the sentence? -> If not, REJECT. + 6. If all checks pass, the triple is VALID. + + === YOUR TASK === + + Review all proposed triples based on the strict criteria above. Return a JSON array containing **ONLY THE VALID** extractions. If a triple is even slightly suspicious, it is better to **REJECT** it. Your goal is 100% accuracy in the final output, not maximum quantity. + + FINAL OUTPUT: Return ONLY a valid JSON array of the triples you have approved. Do not include your reasoning. + [["valid_head1", "valid_relation1", "valid_tail1"], ["valid_head2", "valid_relation2", "valid_tail2"], ...] + """ + return prompt + + + + def _parse_llm_output(self, output: str) -> List[List[str]]: + """Parse LLM output to extract triples with enhanced error handling""" + try: + # Clean the output first + output = output.strip() + + # Try to find JSON array in the output + start_idx = output.find('[') + end_idx = output.rfind(']') + 1 + + if start_idx == -1 or end_idx == 0: + print("No JSON array found in LLM output") + return [] + + json_str = output[start_idx:end_idx] + + # Handle potential formatting issues + json_str = json_str.replace("'", '"') # Replace single quotes + json_str = json_str.replace('""', '"') # Fix double quotes + + triples = json.loads(json_str) + + # Validate format and content + validated_triples = [] + for i, triple in enumerate(triples): + if not isinstance(triple, list): + print(f"Triple {i} is not a list: {triple}") + continue + + if len(triple) != 3: + print(f"Triple {i} doesn't have 3 elements: {triple}") + continue + + # Clean and validate each element + head = str(triple[0]).strip() + rel = str(triple[1]).strip() + tail = str(triple[2]).strip() + + # Check for empty or meaningless elements + if not head or not rel or not tail: + print(f"Triple {i} has empty elements: [{head}, {rel}, {tail}]") + continue + + # Check for overly long elements (might be parsing errors) + if len(head) > 200 or len(rel) > 100 or len(tail) > 200: + print(f"Triple {i} has overly long elements, skipping") + continue + + validated_triples.append([head, rel, tail]) + + return validated_triples + + except json.JSONDecodeError as e: + print(f"JSON decode error: {e}") + print(f"Problematic JSON: {json_str[:200]}...") + return [] + except Exception as e: + print(f"Parse error: {e}") + print(f"LLM output snippet: {output[:200]}...") + return [] + + def extract_triples(self, sentence: str, chunks: List[str], mdt_info: Dict = None, + language: str = "hi", show: bool = False, enhancement_mode: bool = False) -> List[List[str]]: + """ + Extract triples using LLM with enhanced error handling and debugging + + Args: + sentence: Original sentence + chunks: List of chunked phrases + mdt_info: MDT information containing dependency relations and structure + language: Language code (hi, ur, ta, te, en, etc.) + show: Show debug info + + Returns: + List of triples [[head, rel, tail], ...] + """ + if show: + print(f"\n=== LLM EXTRACTION DEBUG ===") + print(f"Sentence: {sentence}") + print(f"Language: {language}") + print(f"Chunks ({len(chunks)}): {chunks}") + if mdt_info: + print(f"Root phrase: {mdt_info.get('root_phrase', 'Unknown')}") + print(f"Dependency relations: {len(mdt_info.get('dependency_relations', []))}") + + # Validate inputs + if not sentence.strip(): + print("Warning: Empty sentence provided") + return [] + + if not chunks: + print("Warning: No chunks provided") + return [] + + # Create enhanced ReAct prompt + if enhancement_mode and mdt_info and 'rule_extractions' in mdt_info: + # prompt = self._create_enhancement_prompt_2(sentence, chunks, mdt_info, language) + prompt = self._create_react_prompt(sentence, chunks, mdt_info, language) + print("prompt: react: ", prompt) + else: + prompt = self._create_react_prompt(sentence, chunks, mdt_info or {}, language) + + # Prepare messages for chat format + messages = [ + { + "role": "system", + "content": f"""You are an expert linguist and information extraction specialist for {language} language. +Your task is to extract factual relationships from text as precise [head, relation, tail] triples. +Always respond with only a valid JSON array. Never include explanatory text outside the JSON.""" + }, + { + "role": "user", + "content": prompt + } + ] + + if show: + print(f"\n=== PROMPT SENT TO LLM ===") + print(f"System message length: {len(messages[0]['content'])} chars") + print(f"User prompt length: {len(messages[1]['content'])} chars") + + # Get LLM response + start_time = time.time() + response = self.llm_interface.generate_response(messages) + extraction_time = time.time() - start_time + + if response is None: + print("Error: No response from LLM") + return [] + + llm_output = response.get("message", {}).get("content", "") + + if show: + print(f"\n=== LLM RESPONSE ===") + print(f"Response time: {extraction_time:.3f}s") + print(f"Response length: {len(llm_output)} chars") + print(f"Response preview: {llm_output[:200]}...") + + # Parse output + triples = self._parse_llm_output(llm_output) + + if show: + print(f"\n=== EXTRACTION RESULTS ===") + print(f"Extracted {len(triples)} triples:") + for i, triple in enumerate(triples): + print(f" {i+1}. {triple}") + print("=== END LLM EXTRACTION ===\n") + + return triples + + def filter_false_positives(self, sentence: str, extractions: List[List[str]], + language: str = "hi", show: bool = False) -> List[List[str]]: + """ + Filter false positive extractions using LLM + + Args: + sentence: Original sentence + extractions: List of extractions to filter + language: Language code + show: Show debug info + + Returns: + Filtered list of high-quality extractions + """ + if not extractions: + return [] + + if show: + print(f"\n=== LLM FALSE POSITIVE FILTERING ===") + print(f"Sentence: {sentence}") + print(f"Input extractions: {len(extractions)}") + for i, ext in enumerate(extractions): + print(f" {i+1}. {ext}") + + # Create filtering prompt + prompt = self._create_improved_filter_prompt(sentence, extractions, language) + print("prompt: filter: ", prompt) + + # Prepare messages for chat format + messages = [ + { + "role": "system", + "content": f"""You are an expert quality controller for {language} language information extraction. +Your task is to filter out false positive extractions while preserving high-quality, meaningful triples. +Always respond with only a valid JSON array of filtered extractions.""" + }, + { + "role": "user", + "content": prompt + } + ] + + # Get LLM response + start_time = time.time() + response = self.llm_interface.generate_response(messages) + filter_time = time.time() - start_time + + if response is None: + print("Error: No response from LLM filter") + return extractions # Return original if filtering fails + + llm_output = response.get("message", {}).get("content", "") + + # Parse filtered output + filtered_triples = self._parse_llm_output(llm_output) + + if show: + print(f"\n=== FILTERING RESULTS ===") + print(f"Filter time: {filter_time:.3f}s") + print(f"Before: {len(extractions)} extractions") + print(f"After: {len(filtered_triples)} extractions") + print(f"Removed: {len(extractions) - len(filtered_triples)} false positives") + print("Filtered extractions:") + for i, triple in enumerate(filtered_triples): + print(f" {i+1}. {triple}") + print("=== END LLM FILTERING ===\n") + + return filtered_triples if filtered_triples else extractions + +def test_llm_extractor(): + """Test function for enhanced LLM extractor""" + print("🧪 Testing Enhanced LLM Extractor") + print("="*50) + + try: + # Initialize with verbose settings for testing + extractor = LLMExtractor( + model_name="gemma3:12b-it-qat", + temperature=0.05, + max_retries=3, + timeout=120 + ) + + # Test sentences with various complexity levels + test_cases = [ + { + "sentence": "राम ने सेब खाया", + "chunks": ["राम ने", "सेब", "खाया"], + "mdt_info": { + "phrases": ["राम ने", "सेब", "खाया"], + "root_phrase": "खाया", + "dependency_relations": ["राम ने->nsubj", "सेब->obj", "खाया->root"] + }, + "language": "hi" + }, + { + "sentence": "शर्मीला टैगोर के बेटे सैफ अली खान को 2010 में पद्मा श्री पुरस्कार मिला।", + "chunks": ["शर्मीला टैगोर के", "बेटे", "सैफ अली खान को", "2010 में", "पद्मा श्री पुरस्कार", "मिला"], + "mdt_info": { + "phrases": ["शर्मीला टैगोर के", "बेटे", "सैफ अली खान को", "2010 में", "पद्मा श्री पुरस्कार", "मिला"], + "root_phrase": "मिला", + "dependency_relations": ["सैफ अली खान को->iobj", "पद्मा श्री पुरस्कार->nsubj", "2010 में->obl:tmod", "मिला->root"] + }, + "language": "hi" + }, + { + "sentence": "आज मौसम अच्छा है।", + "chunks": ["आज", "मौसम", "अच्छा", "है"], + "mdt_info": { + "phrases": ["आज", "मौसम", "अच्छा", "है"], + "root_phrase": "है", + "dependency_relations": ["मौसम->nsubj", "अच्छा->xcomp", "आज->obl:tmod", "है->root"] + }, + "language": "hi" + } + ] + + success_count = 0 + total_triples = 0 + + for i, test in enumerate(test_cases, 1): + print(f"\n{'='*60}") + print(f"TEST CASE {i}: {test['sentence']}") + print(f"{'='*60}") + + try: + start_time = time.time() + triples = extractor.extract_triples( + sentence=test["sentence"], + chunks=test["chunks"], + mdt_info=test.get("mdt_info", {}), + language=test["language"], + show=True + ) + end_time = time.time() + + print(f"\n✅ SUCCESS: Extracted {len(triples)} triples in {end_time-start_time:.2f}s") + total_triples += len(triples) + success_count += 1 + + if triples: + print("📋 Final Triples:") + for j, triple in enumerate(triples, 1): + print(f" {j}. [{triple[0]}] --{triple[1]}--> [{triple[2]}]") + else: + print("⚠️ No triples extracted") + + except Exception as e: + print(f"❌ ERROR in test case {i}: {e}") + import traceback + traceback.print_exc() + + print(f"\n{'='*60}") + print(f"🎯 TEST SUMMARY") + print(f"{'='*60}") + print(f"✅ Successful extractions: {success_count}/{len(test_cases)}") + print(f"📊 Total triples extracted: {total_triples}") + print(f"📈 Average triples per sentence: {total_triples/len(test_cases):.1f}") + + if success_count == len(test_cases): + print("🎉 All tests passed!") + else: + print(f"⚠️ {len(test_cases) - success_count} test(s) failed") + + except Exception as e: + print(f"❌ SETUP ERROR: {e}") + print("Make sure Ollama is running and gemma3:12b-it-qat model is available") + print("Run: ollama serve && ollama pull gemma3:12b-it-qat") + +def quick_test(): + """Quick test with minimal output""" + extractor = LLMExtractor() + result = extractor.extract_triples( + sentence="राम ने सेब खाया", + chunks=["राम ने", "सेब", "खाया"], + language="hi", + show=False + ) + print(f"Quick test result: {result}") + return result + +if __name__ == "__main__": + test_llm_extractor() \ No newline at end of file diff --git a/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185652.txt b/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185652.txt new file mode 100644 index 0000000..1897584 --- /dev/null +++ b/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185652.txt @@ -0,0 +1,84 @@ + +================================================================================ +SENTENCE 166683 - ENHANCEMENT STAGE +================================================================================ +Timestamp: 2025-07-09T18:58:11.080900 +Sentence: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Language: hi +Model: gemma3:12b-it-qat (temp=0.05) + +--- INPUT CHUNKS --- + 1. कार्यरूप जगत को + 2. देखकर ही + 3. शक्तिरूपी माया की + 4. सििद्ध होती है + 5. . + +--- MDT INFO --- +Root phrase: सििद्ध होती है +Dependency relations: + - कार्यरूप जगत को->obj + - देखकर ही->advcl + - शक्तिरूपी माया की->nmod + - सििद्ध होती है->root + - .->0 + +--- INPUT EXTRACTIONS (1) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + +--- PROMPT TO LLM --- +ReAct enhancement extraction prompt... + +--- LLM RESPONSE (Time: 78.573s) --- +Success: True +Raw output: [['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की']]... + +--- PARSED OUTPUT (1) --- + 1. ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की'] + +--- FINAL EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की'] + +--- STATISTICS --- +Added: 1 +Removed: 0 +Net change: 1 + +================================================================================ +SENTENCE 166683 - FILTER STAGE +================================================================================ +Timestamp: 2025-07-09T18:58:21.922111 +Sentence: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Language: hi +Model: gemma3:12b-it-qat (temp=0.05) + +--- INPUT CHUNKS --- + +--- MDT INFO --- +Root phrase: N/A +Dependency relations: + +--- INPUT EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की'] + +--- PROMPT TO LLM --- +Quality filter prompt... + +--- LLM RESPONSE (Time: 10.829s) --- +Success: True +Raw output: [['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'], ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की']]... + +--- PARSED OUTPUT (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की'] + +--- FINAL EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की'] + +--- STATISTICS --- +Added: 0 +Removed: 0 +Net change: 0 diff --git a/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185824.txt b/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185824.txt new file mode 100644 index 0000000..f318006 --- /dev/null +++ b/GSoC25_H/IndIE/llm_logs/llm_debug_20250709_185824.txt @@ -0,0 +1,84 @@ + +================================================================================ +SENTENCE 166683 - ENHANCEMENT STAGE +================================================================================ +Timestamp: 2025-07-09T18:58:50.841082 +Sentence: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Language: hi +Model: gemma3:12b-it-qat (temp=0.05) + +--- INPUT CHUNKS --- + 1. कार्यरूप जगत को + 2. देखकर ही + 3. शक्तिरूपी माया की + 4. सििद्ध होती है + 5. . + +--- MDT INFO --- +Root phrase: सििद्ध होती है +Dependency relations: + - कार्यरूप जगत को->obj + - देखकर ही->advcl + - शक्तिरूपी माया की->nmod + - सििद्ध होती है->root + - .->0 + +--- INPUT EXTRACTIONS (1) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + +--- PROMPT TO LLM --- +ReAct enhancement extraction prompt... + +--- LLM RESPONSE (Time: 26.500s) --- +Success: True +Raw output: [['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की']]... + +--- PARSED OUTPUT (1) --- + 1. ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की'] + +--- FINAL EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की'] + +--- STATISTICS --- +Added: 1 +Removed: 0 +Net change: 1 + +================================================================================ +SENTENCE 166683 - FILTER STAGE +================================================================================ +Timestamp: 2025-07-09T18:59:01.098314 +Sentence: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +Language: hi +Model: gemma3:12b-it-qat (temp=0.05) + +--- INPUT CHUNKS --- + +--- MDT INFO --- +Root phrase: N/A +Dependency relations: + +--- INPUT EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की'] + +--- PROMPT TO LLM --- +Quality filter prompt... + +--- LLM RESPONSE (Time: 10.256s) --- +Success: True +Raw output: [['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'], ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की']]... + +--- PARSED OUTPUT (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की'] + +--- FINAL EXTRACTIONS (2) --- + 1. ['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'] + 2. ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की'] + +--- STATISTICS --- +Added: 0 +Removed: 0 +Net change: 0 diff --git a/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185652.jsonl b/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185652.jsonl new file mode 100644 index 0000000..c7eb62a --- /dev/null +++ b/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185652.jsonl @@ -0,0 +1,2 @@ +{"timestamp": "2025-07-09T18:58:11.080900", "sentence_id": 166683, "sentence_text": "कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .", "stage": "enhancement", "input_chunks": ["कार्यरूप जगत को", "देखकर ही", "शक्तिरूपी माया की", "सििद्ध होती है", "."], "input_mdt_info": {"phrases": ["कार्यरूप जगत को", "देखकर ही", "शक्तिरूपी माया की", "सििद्ध होती है", "."], "root_phrase": "सििद्ध होती है", "dependency_relations": ["कार्यरूप जगत को->obj", "देखकर ही->advcl", "शक्तिरूपी माया की->nmod", "सििद्ध होती है->root", ".->0"], "rule_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"]]}, "input_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"]], "prompt_text": "ReAct enhancement extraction prompt", "llm_response_time": 78.57277989387512, "llm_raw_output": "[['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की']]", "llm_parsed_output": [["कार्यरूप जगत को", "सििद्ध होती है", "शक्तिरूपी माया की"]], "llm_success": true, "llm_error": null, "final_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "सििद्ध होती है", "शक्तिरूपी माया की"]], "extractions_added": 1, "extractions_removed": 0, "model_name": "gemma3:12b-it-qat", "temperature": 0.05, "language": "hi"} +{"timestamp": "2025-07-09T18:58:21.922111", "sentence_id": 166683, "sentence_text": "कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .", "stage": "filter", "input_chunks": [], "input_mdt_info": {}, "input_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "सििद्ध होती है", "शक्तिरूपी माया की"]], "prompt_text": "Quality filter prompt", "llm_response_time": 10.828527212142944, "llm_raw_output": "[['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'], ['कार्यरूप जगत को', 'सििद्ध होती है', 'शक्तिरूपी माया की']]", "llm_parsed_output": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "सििद्ध होती है", "शक्तिरूपी माया की"]], "llm_success": true, "llm_error": null, "final_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "सििद्ध होती है", "शक्तिरूपी माया की"]], "extractions_added": 0, "extractions_removed": 0, "model_name": "gemma3:12b-it-qat", "temperature": 0.05, "language": "hi"} diff --git a/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185824.jsonl b/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185824.jsonl new file mode 100644 index 0000000..0a99c2d --- /dev/null +++ b/GSoC25_H/IndIE/llm_logs/llm_session_20250709_185824.jsonl @@ -0,0 +1,2 @@ +{"timestamp": "2025-07-09T18:58:50.841082", "sentence_id": 166683, "sentence_text": "कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .", "stage": "enhancement", "input_chunks": ["कार्यरूप जगत को", "देखकर ही", "शक्तिरूपी माया की", "सििद्ध होती है", "."], "input_mdt_info": {"phrases": ["कार्यरूप जगत को", "देखकर ही", "शक्तिरूपी माया की", "सििद्ध होती है", "."], "root_phrase": "सििद्ध होती है", "dependency_relations": ["कार्यरूप जगत को->obj", "देखकर ही->advcl", "शक्तिरूपी माया की->nmod", "सििद्ध होती है->root", ".->0"], "rule_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"]]}, "input_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"]], "prompt_text": "ReAct enhancement extraction prompt", "llm_response_time": 26.50028371810913, "llm_raw_output": "[['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की']]", "llm_parsed_output": [["कार्यरूप जगत को", "देखकर", "शक्तिरूपी माया की"]], "llm_success": true, "llm_error": null, "final_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "देखकर", "शक्तिरूपी माया की"]], "extractions_added": 1, "extractions_removed": 0, "model_name": "gemma3:12b-it-qat", "temperature": 0.05, "language": "hi"} +{"timestamp": "2025-07-09T18:59:01.098314", "sentence_id": 166683, "sentence_text": "कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .", "stage": "filter", "input_chunks": [], "input_mdt_info": {}, "input_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "देखकर", "शक्तिरूपी माया की"]], "prompt_text": "Quality filter prompt", "llm_response_time": 10.25567889213562, "llm_raw_output": "[['शक्तिरूपी माया की', 'सििद्ध होती है', 'कार्यरूप जगत को देखकर ही'], ['कार्यरूप जगत को', 'देखकर', 'शक्तिरूपी माया की']]", "llm_parsed_output": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "देखकर", "शक्तिरूपी माया की"]], "llm_success": true, "llm_error": null, "final_extractions": [["शक्तिरूपी माया की", "सििद्ध होती है", "कार्यरूप जगत को देखकर ही"], ["कार्यरूप जगत को", "देखकर", "शक्तिरूपी माया की"]], "extractions_added": 0, "extractions_removed": 0, "model_name": "gemma3:12b-it-qat", "temperature": 0.05, "language": "hi"} diff --git a/GSoC25_H/IndIE/main.py b/GSoC25_H/IndIE/main.py new file mode 100644 index 0000000..710903a --- /dev/null +++ b/GSoC25_H/IndIE/main.py @@ -0,0 +1,212 @@ +# -*- coding: utf-8 -*- +# export CUDA_DEVICE_ORDER=PCI_BUS_ID; export TOKENIZERS_PARALLELISM=false +# CUDA_VISIBLE_DEVICES=0 python main.py + +from chunking.chunking_model import * +from chunking.crf_chunker import * +from utils import * +import pandas as pd +from tqdm import tqdm +import stanza, torch + +use_gpu = torch.cuda.is_available() + +# loading all the languages here +hindi_nlp = load_stanza_model(lang='hi', use_gpu=use_gpu) +# tamil_nlp = load_stanza_model(lang='ta', use_gpu=use_gpu) +# telugu_nlp = load_stanza_model(lang='te', use_gpu=use_gpu) +# urdu_nlp = load_stanza_model(lang='ur', use_gpu=use_gpu) + +nlp = hindi_nlp +lang = 'hi' + +hyper_params = { + 'run_ID': 26, + 'createData': True, + 'bs': 8, + 'bert_model_name': 'xlm-roberta-base', + 'available_models': "'ai4bharat/indic-bert' 'bert-base-multilingual-cased' 'xlm-roberta-base' 'bert-base-multilingual-uncased' 'xlm-mlm-100-1280' 'xlm-mlm-tlm-xnli15-1024' 'xlm-mlm-xnli15-1024'", + 'alpha' : 0.00001, + 'epochs': 3, + 'rseed': 123, + 'nw': 4, + 'train_ratio' : 0.7, + 'val_ratio' : 0.1, + 'max_len' : 275, + 'which_way' : 3, + 'which_way_gloss': "1= take first wordpiece token id | 2= take last wordpiece token id | 3= average out the wordpiece embeddings during the forward pass", + 'embedding_way' : 'last_hidden_state', + 'embedding_way_gloss': 'last_hidden_state, first_two, last_two', + 'notation' : 'BI', + 'platform': 1, + 'available_platforms': "MIDAS server = 1, colab = 2", + 'chunker':'XLM', # CRF or XLM + 'use_llm': False, # True for running entire MDT output through LLM + 'llm_fallback': True, # set to True for running only on sentences which did not get any output from original rule based extractions + 'llm_enhancement': True, # set to True for running rule based extraction + llm extraction + 'llm_filter_mode': False, # set to True for running llm based filter on the output of all the above strategies + 'llm_model': 'gemma3:12b-it-qat' +} + +model_embeddings = { + 'ai4bharat/indic-bert':768, + 'bert-base-multilingual-cased':768, + 'xlm-roberta-base':768, + 'bert-base-multilingual-uncased':768, + 'xlm-mlm-100-1280':1280, + 'xlm-mlm-tlm-xnli15-1024':1024, + 'xlm-mlm-xnli15-1024':1024 +} + +hyper_params['embedding_size'] = model_embeddings[hyper_params['bert_model_name']] + +my_tagset = torch.load('chunking/data/my_tagset_'+hyper_params['notation']+'.bin') + +hyper_params['my_tagset'] = my_tagset + +os.environ['PYTHONHASHSEED'] = str(hyper_params['rseed']) +# Torch RNG +torch.manual_seed(hyper_params['rseed']) +torch.cuda.manual_seed(hyper_params['rseed']) +torch.cuda.manual_seed_all(hyper_params['rseed']) +# Python RNG +np.random.seed(hyper_params['rseed']) +random.seed(hyper_params['rseed']) + +is_cuda = torch.cuda.is_available() + +if is_cuda and use_gpu: + device = torch.device("cuda:0") + t = torch.cuda.get_device_properties(device).total_memory + c = torch.cuda.memory_reserved(device) + a = torch.cuda.memory_allocated(device) + f = t -(c-a) # free inside cache + print("GPU is available", torch.cuda.get_device_name(), round(t/(1024*1024*1024)), "GB") +else: + device = torch.device("cpu") + print("GPU not available, CPU used") + +hyper_params['device'] = str(device) + +if hyper_params['chunker'] == 'XLM': + print('Creating the XLM chunker model...') + model = chunker_class(device, hyper_params).to(device) + checkpoint = torch.load('chunking/state_dicts/model/'+str(hyper_params['run_ID'])+'_epoch_4.pth.tar',map_location=device) + + # Handle version compatibility - ignore unexpected keys + state_dict = checkpoint['state_dict'] + # Remove problematic keys that exist in newer transformers versions + keys_to_remove = [k for k in state_dict.keys() if 'position_ids' in k] + for key in keys_to_remove: + print(f"Removing incompatible key: {key}") + del state_dict[key] + + # Load with strict=False to handle any remaining mismatches + missing_keys, unexpected_keys = model.load_state_dict(state_dict, strict=False) + if missing_keys: + print(f"Missing keys: {missing_keys}") + if unexpected_keys: + print(f"Unexpected keys: {unexpected_keys}") + print("Model loaded successfully!") + + tokenizer = AutoTokenizer.from_pretrained(hyper_params['bert_model_name']) +elif hyper_params['chunker'] == 'CRF': + model, tokenizer = 'CRF', 'CRF' + + +''' + +# -------------- This is for single extraction -------------- +ml = ["पिछले वर्ष शुरू की गई इस योजना के तहत भारत सरकार की ओर से बच्चे और उसके एक अभिभावक का विमान किराया और रहने का खर्चा मुहैया कराया जाता है ।","भारतीय जनता पार्टी के पूर्व महासचिव और संगठन मंत्री संजय जोशी के आपत्तिजनक और विवादस्पद सीडी के मामले से राष्ट्रीय महिला आयोग ने अपना पल्ला झाड़ लिया है ।","वार्ता में कश्मीर मुद्दे को शामिल किए जाने के बारे में रूस की यात्रा पर गए विदेश सचिव शशांक ने बताया है ।","लेकिन कांग्रेस से किसी ने भी उन्हें बधाई नहीं दी ।","शादी के वक्त चार गवाहों की मौजूदगी में दोनों पक्षों को इस करार पर दस्तखत करने होंगे ।","प्रधानमंत्री के मीडिया सलाहकार संजय बारू ने बैठक के बाद संवादाताओं को बताया कि प्रधानमंत्री इस वार्ता प्रक्रिया में सभी पुरुषों और महिलाओं की सहमति चाहते हैं जिससे लोगों की पीड़ा दूर हो सके ।","इस हादसे में घायल एक व्यक्ति ने बताया कि विस्फोट के बाद घटनास्थल पर मानव अंग बिखरे पड़े थे और पूरे प्लेटफॉर्म पर खून के छींटे नजर आ रहे थे ।","इस कार्य की शुरुआत उन्होंने अपने बिजनेसमैन दोस्त के लिए की थी ।","उन्हें सत्र न्यायालय के पिछले दरवाजे से दर्जनों समर्थकों के घेरे में चुपके से अदालत में पेश किया गया.","मामले के संबंध में पुलिस अधीक्षक रणबीर शर्मा का कहना है कि मामले की जाँच के आदेश थाना सदर प्रभारी को दे दिये गए हैं तथा जाँच के बाद ही कोई कार्रवाई की जाएगी ।","दूसरी ओर आज कुछ खबरों में कहा गया है कि रिलायंस एनर्जी के अध्यक्ष एवं प्रबंध निदेशक अनिल अंबानी ने विभिन्न विद्युत परियोजनाओं में १४००० करोड़ रुपये के निवेश के बारे में रिलायंस इंडस्ट्रीज को पिछले वित्तीय वर्ष में सूचित किया था ।","इस पर यात्रियों ने जोर - जोर से चिल्लाना शुरू कर दिया ।","पर उन्होंने यह कहते हुए इनकार कर दिया कि केवल एक स्टीकर जारी किया जाता है ।","उसके दाहिने कूल्हे के बदले जाने को लंबी बीमारी से जोड़कर देखना उचित नहीं है ।","दलाई लामा ने कहा कि मैं तिब्बती समस्या का सार्थक और मान्य हल ढूंढ़ने की कोशिश में हूं ।","सीईसीए १ अगस्त से लागू हो जाएगा ।","अपने चचेरे भाई और शिवसेना के कार्यकारी अध्यक्ष उद्धव ठाकरे से खफा राज ठाकरे ने शिवसेना सुप्रीमो बाल ठाकरे को कड़ा लिखा और पूछा कि मालवण की हार के लिए जिम्मेदार कौन है?","सूत्रों के मुताबिक इस बैठक से ठीक पहले मुकेश ने अनिल व १२ निदेशकों के साथ अलग से बैठक की थी ।","लेकिन, इसमें थलसेना की भागीदारी अपने आप में महत्वपूर्ण है ।","उन्होंने कहा कि यह सभी लोगों को महसूस करना होगा कि बिहार में लालू प्रसाद की पार्टी सबसे बड़ा धर्मनिरपेक्ष दल है ।","रामविलास पासवान पर हमला करके वह कांग्रेस पर दबाव डाल रहे थे कि वह पासवान को लाइन पर लाए ।","बुधवार को रक्षा मंत्री प्रणव मुखर्जी ने नवंबर में जम्मू कश्मीर में घुसपैठ में इजाफे की बात कही ।","जेसिका लाल, मेहर भार्गव और भाजपा नेता प्रमोद महाजन के बीच क्या समानता है ।","उन्होंने मुख्यमंत्री मुलायम सिंह के आवास पर एक संवाददाता सम्मेलन को भी सम्बोधित किया ।","उन्होंने कहा कि पर्वतारोहण एवं खेल निदेशालय के उदासीन रवैये के कारण आज अन्य युवा खिलाड़ियों को उनकी प्रतिभा दिखाने का मौका नहीं मिल रहा है ।","यमनोत्री के पट हर साल हिन्दू कैलेंडर के अनुसार अक्षय तृतीया के दिन खोले जाते हैं.","लालू यादव ने इसके लिए जिसका नाम भेजा उसे नियुक्ति संबंधी कैबिनेट की समिति ने नामंजूर कर दिया ।","क्योंकि, जिन्हें भी थलसेना की कार्यप्रणाली और युद्ध के दिनों में की जाने वाली तैयारी के बारे में जानकारी है, वे इस तरह की बात नहीं कह सकते कि थलसेना समय पर तैयार नहीं थी ।","दरअसल जेल आज अपराध के अड्डे बनते जा रहे हैं ।","फतुहा अस्पताल के चिकित्सा अधिकारी आर. एन. पी. सिन्हा ने बताया कि २५ घायलों को पटना के नालंदा मेडिकल कॉलेज व हॉस्पिटल में भेज दिया गया है ।","सांख्यिकी मंत्रालय के मुताबिक ४४ बिजली परियोजनाएं जिन पर काम चल रहा है ।","गुप्त सूचना पर पुलिस पहुंची और छापा मारकर मिस्टर एक्स व अन्य को दबोच लिया और गैंबलिंग एक्ट १८६७ की धारा १३ के तहत केस दर्ज कर उन्हें हवालात में बंद कर दिया.","यह प्रतिबंध एक जुलाई, २००७ से लागू होगा ।","पैत्रोदा ने मंगलवार शाम 'भारतीय विज्ञान २१वीं शताब्दी में' विषय पर अपने विचार रखते हुए वृहद सीएसआईआर के पूर्ण विकेंद्रीकरण की मांग कर डाली ।","कहा गया कि दोनों भाईयों में मनमुटाव भी इसी वजह से हुआ ।","अब उसने अपनी बहन को भी बुला लिया है ।","पुलिस सूत्रों के अनुसार फिलहाल किसी के हताहत होने अथवा संपत्ति के नुकसान की सूचना नहीं मिली है, लेकिन काफी संख्या में पेड़ उखड़ गए हैं ।","पूर्वी सीमा पर अवैध घुसपैठ की समस्या के समाधान के लिए भारत ने शुक्रवार को बांग्लादेश से 'एक उपयुक्त व्यवस्था या प्रोटोकॉल' स्थापित करने को कहा है.","इस पार्टी की छवि महिलाओं के हक के लिए लड़ने वाली पार्टी के तौर पर हो ।","इसके अलावा ११ लोग लापता बताए गए थे ।","फर्नाँडिस ने शनिवार को कहा कि इस मामले में उन्हें क्लीन चिट मिल चुकी है ।","पार्टी का कहना है कि दोनों दलों के बीच स्वस्थ मतभेद है ।","हालांकि इस बार सात नए मामले आये हैं इससे केन्द्र सरकार संतुष्ट नहीं है ।","इस अभियान के दौरान इस आतंकी संगठन को अपने १० वरिष्ठ कमांडरों से हाथ धोना पड़ा ।","अमेरिकी अधिकारियों ने इन टेपों की विश्वसनीयता की पुष्टि की है ।","सभी के लिए समान कानून का जिक्र करते हुए तेलगुदेशम पार्टी के प्रमुख चंद्रबाबू नायडू ने रैली में कहा कि हम सोनिया पर हमला नहीं कर रहे हैं ।","गौरतलब है कि लंदन में जी - ४ के देशों के साथ हुई बैठक में अफ्रीकी संघ ने जी - ४ के साथ संयुक्त प्रस्ताव पेश करने पर सहमति व्यक्त की थी, लेकिन इथियोपिया की राजधानी आदिस अबाबा में हुई अफ्रीकी संघ की शिखर बैठक में संयुक्त प्रस्ताव पेश करने के विचार को सिरे से ही ठुकरा दिया गया ।","उन्हें जनता की सेवा के लिए भी आवश्यक संसाधन उपलब्ध नहीं हैं ।","ग्रामीणों में रोष है कि पुलिस इस मामले में केस दर्ज करने में आनाकानी कर रही है ।","दुलइमी संकट को लंबा खींचने के लिए कुवैत एंड गल्फ लिंक (केजीएल) कंपनी को भी दोषी मानते हैं, जिसके लिए ये ड्राइवर काम करते थे ।","दसवीं की परीक्षा में कुल दो लाख ९८ हजार २६ विद्यार्थी शामिल हुए थे ।","रविवार को 'दी मेल' ने एफबीआई के हवाले से लिखा कि 7 जुलाई को लंदन में हुए धमाकों के पीछे असवत का ही हाथ है, लेकिन उच्च पदस्थ ब्रिटिश सुरक्षा सूत्रों ने हमले में असवत के शामिल होने की बात से इनकार किया है ।","कई बार तो विभाग के कर्मचारी ही उन्हें निजी डाक्टर के यहां भेज देते हैं ।","करीब 23 अमेरिकी विश्वविद्यालयों ने भारत के 39 कृषि विश्वविद्यालयों और कृषि संस्थानों के साथ सहयोग की इच्छा जताई है ।","आगामी चुनाव में ज्यादा सीट जीतकर लालू - राबड़ी को मात देने के लिए कार्य योजनाओं पर चर्चा हुई ।","उन्होंने कहा कि रेंटल व्यापार के लिए अब तक इन कारों का उपयोग नहीं किया है ।","मनमोहन सिंह ने इस संबंध में राज्यों से अपनी प्रतिबद्घताओं को पूरा करने की अपील की है ।","महाजन ने कहा कि इस बार चुनाव का मुख्य मुद्दा विकास होगा ।","प्रधानमंत्री मनमोहन सिंह रविवार को मलेशिया के चार दिनी दौरे पर रवाना होंगे ।","तीन भारतीय सहित सात ट्रक ड्राइवरों की रिहाई के लिए मध्यस्थ की भूमिका निभा रहे शेख दुलइमी ने कहा है कि अगर भारतीय फिल्मी सितारे खासकर अमिताभ, धर्मेंद्र व आशा पारिख बंधकों को आजाद करने की टेलीविजन पर अपील करें तो उन्हें तत्काल रिहा कर दिया जाएगा ।","देश में एनसीपी की अपनी अलग पहचान है ।","वन विभाग में भी रेंजर से लेकर ऊपर तक के अफसरों के घरों में फारेस्ट वर्कर के नाम पर तैनात दिहाड़ीदार साहबों की खिदमत में हैं ।","अतरजीत इसमें शामिल था ।","यूपीए सरकार न्यूनतम साझा कार्यक्रम (सीएमपी) में भी ऐसा वादा कर चुकी है ।","करेहड़ा के तीन बच्चे अंकुर, संदीप व प्रशांत यमुना नदी में बाढ़ का पानी देखने के लिए गांव लाल छप्पर की ओर जा रहे थे कि सड़क पर अधिक पानी होने की वजह से डूबने लगे ।","इराकी विद्रोहियों की शरणस्थली फालुजा में तेज अमेरिकी हमले की निंदा करते हुए बगदाद यूनिवर्सिटी में इंटरनेशनल स्टडीज के प्रोफेसर नबील मोहम्मद ने कहा कि यह उचित नहीं है कि होने वाले चुनाव को लोकतांत्रिक करार दिया जाए ।","जहां तक आरआईएल का सवाल है अंबानी परिवार के लिए यह भावनात्मक मुद्दा है और अभी तक यह स्पष्ट नहीं है कि मुकेश और अनिल में से कौन आरआईएल पर काबिज होगा ।","मौसम विभाग के अनुसार दिल्ली में रविवार सुबह से जारी रिमझिम बारिश मानसून पूर्व बारिश है ।","दोनों सदनों में जम्मू - कश्मीर और पाकिस्तान में आए विनाशकारी भूकंप, दिवाली से पहले दिल्ली में हुए विस्फोटों, आंध्र प्रदेश की रेल दुर्घटना और जार्डन की हाल की आतंकी घटना समेत इन सभी हादसों में मारे गए व घायल हुए लोगों के प्रति संवेदना व्यक्त करते हुए बम धमाकों व आतंकी हमलों की निंदा की गई ।","वोहरा ने मंगलवार को प्रधानमंत्री मनमोहन सिंह से मुलाकात कर उन्हें हुर्रियत कांफ्रेंस समेत राज्य के विभिन्न अलगाववादी समूहों से बातचीत की जानकारी दी ।","वीरता पदक पाने के लिए देश के पूर्वोत्तर हिस्से में घुसपैठियों से फर्जी मुठभेड़ की फिल्म बनाने के मामले में शुक्रवार को उस समय नया मोड़ आ गया जब अनुशासनात्मक मामलों में ब्रिगेडियर की खिंचाई की गई ।","दूसरी ओर आरएसपी और फॉरवर्ड ब्लॉक का मानना है कि कांग्रेस सोनिया गांधी के इस्तीफे को भुनाने में कोई कोर - कसर नहीं छोड़ेगी ।","संघ प्रमुख ने एक बार फिर दोहराया कि संघ के संगठन अनेक हैं किंतु विचारधारा एक ही है ।","सोमवार को दिल्ली जाने के कारण के बारे में पूछे जाने पर उन्होंने कहा कि इसके पीछे कोई कारण नहीं है ।","इसमें उत्तर प्रदेश भी शामिल है जहां से सिर्फ १५ जिले इस कार्यक्रम में शामिल हैं ।","उससे पूछताछ की जा रही है ।","उन्होंने ऋण वितरण को प्रोत्साहित करने के लिए ऋण का 10 फीसदी रिस्क फंड के रूप में उपलब्ध कराने पर भी बल दिया ।","द्विपक्षीय बातचीत के लिए किसी भारतीय विदेश मंत्री की १७ साल में यह पहली पाकिस्तान यात्रा होगी ।","विदित हो कि कर्नाटक में आगामी अक्तूबर में जद (एस) भाजपा को मुख्यमंत्री की कुर्सी सौंपेगी.","बिहार के राज्यपाल बूटा सिंह ने बृहस्पतिवार को मुजफ्फरपुर जिले के बाढ़ प्रभावित इलाकों में अनुपस्थित चिकित्सकों को तुरंत निलंबित करने के आदेश दिए हैं और जिलाधिकारी को बिना चिकित्सक वाले स्वास्थ्य केंद्रों में निजी चिकित्सकों को नियुक्त करने को कहा है ।","अधिकतम तापमान ३७ डिग्री सेल्सियस रहने का अनुमान है ।","यह मामला ऐसे वक्त उठा है, जब बाल ठाकरे मालवन में हार के मद्देनजर पार्टी संगठन को दुरुस्त करने की सोच रहे थे ।","सिन्हा ने कहा कि जिस तरह भारत सरकार ने हुर्रियत नेताओं को बिना पासपोर्ट पाकिस्तान जाने की अनुमति दी वह गलत था ।","उन्होंने कहा कि हमने इन हमलों के जिम्मेदार लोगों का पता लगाने के लिए भारत और पाक सरकार से मदद मांगी है ।","उन्होंने वैसे मामलों का उदाहरण दिया, जहां ऐसे कानूनों के क्रियान्वयन से लोगों को खासकर मुस्लिम युवतियों को प्रताड़ित किया गया ।","मार्च महीने में जब भारत और पाकिस्तान के विदेश मंत्री इस्लामाबाद में बैठेंगे तो क्या सियाचिन से सेना हटाने पर सहमति बन जाएगी?","जज ने हत्या के इरादे पर प्रकाश डालते हुए कहा कि अभियोजन पक्ष के मुताबिक शंकराचार्य किसी भी कीमत पर शंकररमन को रास्ते से हटाना चाहते थे ।","एक हफ्ते में एफआईआई ने १३६४.५० करोड़ रुपये की लिवाली की है ।","वह इससे ऊपर नहीं है ।","पर्यटकों की खासी आवाजाही ने इस उपनगर को महानगर जैसा रूप दे दिया है ।","उन्होंने कहा कि अध्यादेश में लाभ के पद की सूची से कुछ पदों को हटा दिया जाएगा ताकि कुछ सांसदों की सदस्यता बची रहे ।","भट्ट ज्योतिषी परिवार से संबंधित हैं और खुद विज्ञान के छात्र रहे हैं ।","नगर के शाही कटरा के मैदान में बृहस्पतिवार को भरत मिलाप के आयोजन के लिए बज रहे लाउडस्पीकर को समुदाय विशेष के कुछ लोगों द्वारा जबरिया बंद कराए जाने के विरोध में शुक्रवार की सुबह हिंसा भड़क उठी ।","उस मिलन की कल्पना कर वे रोमांचित हो उठती हैं ।","इससे पहले अय्यर ने वित्त मंत्री पी. चिदंबरम के साथ प्रधानमंत्री मनमोहन सिंह से इस मसले पर चर्चा की और विभिन्न विकल्पों पर विचार किया ।","असम के मुख्यमंत्री तरुण गोगोई ने शनिवार को यहाँ पत्रकारों से कहा कि उनकी सरकार वार्ता के लिए प्रधानमंत्री कार्यालय की ओर से हाल में दिए निमंत्रण पर फैसला करने के लिए उल्फा की केंद्रीय कार्यकारिणी बैठक में शामिल होने के लिए सदस्यों को रिहा करने को तैयार है ।","करीब १.१५ बजे पुलिस ने जबरदस्ती जाम खुलवा दिया ।","पहले चरण के चुनाव में राजद 64 में से 58 सीटों पर चुनाव लड़ रही है और उसने तीन सीटे भाकपा, दो सीटें माकपा और एक सीट कांग्रेस पार्टी के लिए छोड़ी है ।","महीने भर चले ड्रामे के बाद पार्टी ने उनका निलंबन रद्द कर दिया है पर भाजपा महासचिव के रूप में उनकी बहाली पर पार्टी ने साफ कुछ नहीं कहा है ।","आतंकियों ने तेज धारदार हथियारों से उनके गले रेत दिए ।","इस मामले की सुनवाई बंद कमरे में कराने के लिए उन्होंने पहले निचली अदालत और अब हाईकोर्ट में याचिका दायर की है ।","जैम्स को एक होटल से अगवा कर लिया गया था ।","क्योंकि, गन्ने के सीजन के शुरू होते ही इन उत्पादकों ने किसानों को 125 रुपये से लेकर 130 रुपए प्रति कुंतल की कीमत देनी शुरू कर दी ।","दूसरी पारी में पाक बल्लेबाजों ने जिम्मेदारी का परिचय दिया और मैच को लगभग अपनी पकड़ में कर लिया ।","पूरे कार्यक्रम की फिल्म भी बनी है जिसमें स्विच आफ किए जाने की बात साफ हो गई है ।","पुलिस ने मामला दर्ज कर जांच शुरू कर दी है ।","सुब्रमण्यन ने कहा कि पप्पू यादव के मामले में सुप्रीम कोर्ट के आदेश को इस मामले में लागू नहीं किया जा सकता ।","बोर्ड ने कोई विरोध क्यों नहीं किया ।"] +# ml = ["आदिम युग में सब लोग दिन भर काम से थक जाने के बाद मनोरंजन के लिए कही खुले में एक घेरा बनाकर बैठ जाते थे और उस घेरे के बीचों-बीच ही उनका भोजन पकता रहता , खान-पान होता और वही बाद में नाचना-गाना होता ।"] +ml = ['Abdus Salam, a Pakistani scientist, was a good person.'] +ml = ['शर्मीला टैगोर के बेटे सैफ अली खान को 2010 में पद्मा श्री पुरस्कार मिला। वह एक भारतीय अभिनेता है।'] +# ml = ['शाह रुख खान गौरी खान के पति है।'] +ml = ['கடுமையான வலிகளும் , திடீர் தலைச்சுற்றலும் , பின்னர் துளைகளிலிருந்து இரத்தப்போக்குக , மற்றும் உடைப்புகளும் இருந்தன .'] + +# _, ml = resolve_coreferences_for_hindi(ml, coref_model, nlp) + +start_time = time.time() +for s in tqdm(ml,total=len(ml)): + all_sents, exts, ctime, etime = perform_extraction(s,lang,model,tokenizer, nlp,show=False, use_llm=hyper_params['use_llm'], llm_fallback=hyper_params['llm_fallback'], llm_enhancement=hyper_params.get('llm_enhancement', False), llm_filter_mode=hyper_params.get('llm_filter_mode', False)) # show = True to display intermediate results + print(all_sents, exts, ctime, etime) + print(augument_extractions(exts)) + if len(exts) == 0: + print('zero_extraction') + # break + # ctags = predict_with_model(model,s,tokenizer) + print('------------------------------------------------------------------------------------------------------------------\n------------------------------------------------------------------------------------------------------------------\n') +ttaken = round(time.time() - start_time, 3) +print(ttaken) +# input('Press Enter') +exit() +# ------------------------------------------------------------ + +''' + + +# -------------- This is for hindi-benchie extraction -------------- +def aavg(l): + return sum(l)/len(l) + +print('hindi benchie ') +nlp = load_stanza_model(lang, use_gpu) + +df = pd.DataFrame([],columns=['sentence','all_sents','extractions','augmented_exts','ctime','etime']) +i = 0 + +file = open('hindi-benchie/sents.txt','r') # path to sents.txt +content = [x.strip().split('\t')[1] for x in file.readlines()] +content2 = content.copy() +file.close() + +# _, content2 = resolve_coreferences_for_hindi(content, coref_model, nlp) +assert len(content2) == len(content) + +j=0 +tm = 0 +t = tqdm(zip(content, content2), ncols=100, total=len(content)) +avg = 0 +for sorig, sent in t: + # sent = sent.split('\t')[1] # old + if not foreign_characters(sent) and len(sent.split()) < 514: + try: + try: + all_sents, exts, ctime, etime = perform_extraction(sent,lang,model,tokenizer, nlp,show=False,is_a_override=True, use_llm=hyper_params['use_llm'], llm_fallback=hyper_params['llm_fallback'], llm_enhancement=hyper_params.get('llm_enhancement', False), llm_filter_mode=hyper_params.get('llm_filter_mode', False)) + except Exception as e: + # continue + all_sents, exts, ctime, etime = perform_extraction(sent,lang,model,tokenizer, nlp,show=True,is_a_override=True, use_llm=hyper_params['use_llm'], llm_fallback=hyper_params['llm_fallback'], llm_enhancement=hyper_params.get('llm_enhancement', False), llm_filter_mode=hyper_params.get('llm_filter_mode', False)) + df.at[i,'sentence'] = sorig # sent + df.at[i,'all_sents'] = all_sents + df.at[i,'extractions'] = exts + df.at[i,'augmented_exts'] = augument_extractions(exts) + df.at[i,'ctime'] = ctime + df.at[i,'etime'] = etime + i+=1 + except Exception as e: + raise "Error" + print('\n'+str(j+1)+' Error came at') + print(sent) + print(e) + j+=1 + #exts, ctime, etime = perform_extraction(sent,lang,model,tokenizer, nlp,show=True) + + tm+=(aavg(ctime)+aavg(etime)) + avg = tm/(i+j) + t.set_description('avg '+str(round(avg,3))+'s #e '+str(len(df))) + # if i >= 3: + # break + # display(df) + # input('wait') + else: + raise "Error" + df.at[i,'sentence'] = sent + df.at[i,'all_sents'] = [sent] + df.at[i,'extractions'] = [] + df.at[i,'augmented_exts'] = [] + df.at[i,'ctime'] = [] + df.at[i,'etime'] = [] + i+=1 + +df.to_hdf('benchie_indie_new.h5', key=lang, mode='a') +# df.to_csv('benchie_indie_new.csv') diff --git a/GSoC25_H/IndIE/requirements.txt b/GSoC25_H/IndIE/requirements.txt new file mode 100644 index 0000000..49aa362 --- /dev/null +++ b/GSoC25_H/IndIE/requirements.txt @@ -0,0 +1,149 @@ +aiohttp==3.7.4 +argon2-cffi==20.1.0 +async-generator==1.10 +async-timeout==3.0.1 +attrs==19.3.0 +backcall==0.2.0 +beautifulsoup4==4.9.0 +bleach==3.2.2 +blis==0.4.1 +Bottleneck==1.3.2 +catalogue==1.0.0 +certifi==2020.6.20 +cffi==1.14.4 +chardet==3.0.4 +click==7.1.2 +cycler==0.10.0 +cymem==2.0.3 +Cython==3.0a6 +dataclasses==0.6 +decorator==4.4.2 +defusedxml==0.6.0 +docopt==0.6.2 +editdistance==0.5.3 +entrypoints==0.3 +et-xmlfile==1.0.1 +fastai==1.0.57 +fastprogress==0.2.3 +filelock==3.0.12 +Flask==1.1.2 +future==0.18.2 +graphviz==0.19.1 +gunicorn==20.0.4 +huggingface-hub==0.4.0 +idna==2.10 +idna-ssl==1.1.0 +importlib-metadata==1.6.0 +indictrans==1.2.3 +ipykernel==5.3.4 +ipympl==0.6.3 +ipython==7.16.1 +ipython-genutils==0.2.0 +ipywidgets==7.6.3 +itsdangerous==1.1.0 +jdcal==1.4.1 +jedi==0.17.2 +Jinja2==2.11.2 +jiwer==2.2.0 +joblib==0.17.0 +jsonlines==3.1.0 +jsonschema==3.2.0 +jupyter==1.0.0 +jupyter-client==6.1.7 +jupyter-console==6.2.0 +jupyter-core==4.6.3 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +kiwisolver==1.2.0 +MarkupSafe==1.1.1 +matplotlib==3.2.1 +mistune==0.8.4 +multidict==4.7.5 +murmurhash==1.0.2 +nbclient==0.5.1 +nbconvert==6.0.7 +nbformat==5.1.2 +nest-asyncio==1.4.3 +nltk==3.8.1 +notebook==6.2.0 +numexpr==2.7.1 +numpy==1.19.2 +nvidia-ml-py3==7.352.0 +openpyxl==3.0.3 +packaging==21.3 +pandas==1.0.3 +pandocfilters==1.4.3 +parso==0.7.1 +pbr==5.5.1 +pexpect==4.8.0 +pickleshare==0.7.5 +Pillow==7.1.1 +plac==1.1.3 +preshed==3.0.2 +prometheus-client==0.9.0 +prompt-toolkit==3.0.7 +protobuf==3.11.3 +psutil==5.9.4 +ptyprocess==0.6.0 +pycparser==2.20 +pydub==0.24.1 +Pygments==2.6.1 +PyJWT==1.7.1 +pyparsing==2.4.7 +PyQt5==5.15.2 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.8.1 +pyrsistent==0.17.3 +python-crfsuite==0.9.9 +python-dateutil==2.8.1 +python-Levenshtein==0.12.2 +pytz==2020.1 +PyYAML==6.0 +pyzmq==19.0.2 +qtconsole==5.0.2 +QtPy==1.9.0 +redis==3.4.1 +regex==2020.10.15 +requests==2.24.0 +ollama>=0.3.0 +rq==1.3.0 +sacremoses==0.0.43 +scikit-learn==0.23.2 +scipy==1.5.2 +Send2Trash==1.5.0 +sentence-transformers==2.2.2 +sentencepiece==0.1.91 +six==1.15.0 +sklearn-crfsuite==0.3.6 +soupsieve==2.0 +spacy==2.2.4 +SpeechRecognition==3.8.1 +srsly==1.0.2 +stanza==1.1.1 +tables==3.6.1 +tabulate==0.8.10 +terminado==0.9.2 +testpath==0.4.4 +thinc==7.4.0 +threadpoolctl==2.1.0 +tokenizers==0.12.1 +toml==0.10.2 +torch==1.10.1 +torchvision==0.11.2 +tornado==6.1 +tqdm==4.50.2 +traitlets==4.3.3 +transformers==4.18.0 +twilio==6.45.1 +typing==3.7.4.1 +typing_extensions==4.1.1 +urllib3==1.26.17 +wasabi==0.6.0 +wcwidth==0.2.5 +webencodings==0.5.1 +Werkzeug==1.0.1 +widgetsnbextension==3.5.1 +xlrd==1.2.0 +yarg==0.1.9 +yarl==1.4.2 +zipp==3.1.0 diff --git a/GSoC25_H/IndIE/templates/base.html b/GSoC25_H/IndIE/templates/base.html new file mode 100644 index 0000000..93f0c96 --- /dev/null +++ b/GSoC25_H/IndIE/templates/base.html @@ -0,0 +1,17 @@ + + + + + + +
+

Triples Extractor

+ {% for message in get_flashed_messages() %} +
{{ message }}
+ {% endfor %} + {% block content %} {% endblock %} +
+ + + + diff --git a/GSoC25_H/IndIE/templates/index.html b/GSoC25_H/IndIE/templates/index.html new file mode 100644 index 0000000..3a8e765 --- /dev/null +++ b/GSoC25_H/IndIE/templates/index.html @@ -0,0 +1,73 @@ +{% extends 'base.html' %} + +{% block content %} + +
+
+
+ + +
+ + +
+
+ +
+
+
+ + +{% if data %} +

Triples

+
+ {% for obj in data %} +

Sentence: {{ obj.sentence }}

+ {% if obj.result %} + {% for triple in obj.result %} +

{{ triple }}

+ {% endfor %} + {% else %} + + {% endif %} + {% endfor %} +
+
+ +{% endif %} + + + +{% endblock %} \ No newline at end of file diff --git a/GSoC25_H/IndIE/utils.py b/GSoC25_H/IndIE/utils.py new file mode 100644 index 0000000..ca04f70 --- /dev/null +++ b/GSoC25_H/IndIE/utils.py @@ -0,0 +1,1074 @@ +import nltk +from nltk import Tree +import numpy as np +import stanza, time +from collections import defaultdict +from chunking.chunking_model import * +from chunking.crf_chunker import * +import colorsys +import random +import graphviz +import subprocess, importlib +from llm_extractor import LLMExtractor + +stanza_path = importlib.util.find_spec('stanza').submodule_search_locations[0] +# https://stackoverflow.com/questions/269795/how-do-i-find-the-location-of-python-module-sources +# https://stackoverflow.com/questions/35288021/what-is-the-equivalent-of-imp-find-module-in-importlib +stanza_version = stanza.__version__ + +if not os.path.exists(stanza_path+'/'+stanza_version+'/'): + os.makedirs(stanza_path+'/'+stanza_version+'/') + +prep_dict = { 'में':'in' } +action_relations = ['root','aux','cop','mark','advcl','acl','acl:relcl'] +arg_deprels = ['subj','comp','obj','obl','nmod','appos','nummod'] + +def to_nltk_tree(mat, n, msg=''): + ''' + this function converts dependency matrix to dependency tree + ''' + children = mat.children(n) + if len(children) != 0: + return Tree(mat.node_text(n,msg), [to_nltk_tree(mat, int(child.id)-1, msg) for child in children]) + else: + return mat.node_text(n, msg) + +class phrases(): + def __init__(self, s, h, i, upos, xpos, deprellist, deprel, ptype): + ''' + this class is to create spacy like class for phrases + ''' + self.text, self.head, self.id, self.upos, self.xpos, self.deprellist, self.deprel, self.ptype, self.state = s, h, i, upos, xpos, deprellist, deprel, ptype, '' + + def values(self): + return self.text+'|'+str(self.head)+'|'+str(self.id)+'|'+self.upos+'|'+self.deprellist+'|'+str(self.deprel)+'|'+self.ptype + +class dmatrix(): + def __init__(self,ml): + ''' + if cell ij has 1, then it indicates that word j is a child of word i. Hence parents are stored in rows, and children are stored in columns. + ''' + self.words = ml + self.mat = np.zeros((len(ml),len(ml))) + self.root_value = 0 + for d in ml: + if d.head != 0: + self.mat[d.head-1, int(d.id)-1] = 1 + elif d.head == 0 and str(d.deprel) == 'root': + self.root_value = d.id -1 + + #self.root_value = self.mat.sum(axis=0).argmin() + + def __len__(self): + return len(self.words) + + def show(self): + ''' + shows the dmatrix + ''' + print(" ", end='') + for i in range(len(self.words)): + print((i+1)%10, end=' ') + print() + for i in range(len(self.words)): + print((i+1)%10, list(self.mat[i])) + + def get_root(self): + return self.root_value + + def set_root(self, n): + self.root_value = n + return + + + def children(self, n): + # returns a list of children + c_indexList = np.where(self.mat[n] == 1)[0] + children = [] + for cindx in c_indexList: + children.append(self.words[int(cindx)]) + return children + + def parent(self, n): + # returns parent + if self.root_value == n: + return -1 + else: + return self.words[np.where(self.mat[:,n] == 1)[0][0]] + + def text(self, n): + return self.words[n].text + + def node_text(self, n, msg =''): + ''' + this function returns the text that is to be displayed on the tree nodes + ''' + w = self.words[n] + s = '^'+str(w.id)+'_'+str(w.text)+'&'+str(w.xpos)+'@'+str(w.upos)+'%'+str(w.deprel)+'$' + s = w.text+'_'+str(w.deprel) + if msg=='mpt': + s = str(w.id-1)+'_'+w.text+'\n'+str(w.deprel)+'\n'+str(w.upos) + elif msg == 'urdu': + s = str(w.id-1)+'\n'+str(w.deprel)+'\n'+str(w.upos) + else: + s = ' '+str(w.id-1)+'_'+str(w.text)+' '+'\n'+str(w.deprel)+'\n'+str(w.upos) + return s + + def n_descendants(self, n): + ''' + this calculates number of nodes which has this given node as an ancestor + or in simple language + number of possible children/grand children/great grand children etc of this node + ''' + a = len(self.children(n)) + child_queue = [int(child.id)-1 for child in self.children(n)] + while len(child_queue) > 0: + tl = [ int(child.id)-1 for child in self.children(child_queue[0])] + a = a + len(tl) + child_queue = child_queue + tl + child_queue.reverse() + child_queue.pop() + child_queue.reverse() + return a + + def all_descendants(self, n): + child_queue = [int(child.id)-1 for child in self.children(n)] + descendants = [int(child.id)-1 for child in self.children(n)] + while len(child_queue) > 0: + tl = [ int(child.id)-1 for child in self.children(child_queue[0])] + descendants+=tl + child_queue = child_queue + tl + child_queue.reverse() + child_queue.pop() + child_queue.reverse() + return descendants + + def delete_node(self, n): + children = self.children(n) + parent = self.parent(n) + if parent != -1: + self.mat[parent.id-1,self.words[n].id-1] = 0 + self.mat[parent.id-1] += self.mat[self.words[n].id-1] + for child in children: + child.head = parent.id + self.mat[n,child.id-1] = 0 + self.mat[parent.id-1, child.id-1] = 1 + else: + # for word in self.words: + # print(word.id-1,word.text) + print(self.words[n].values()) + raise "Cannot delete root node" + return + + def siblings(self, n): + parent = self.words[n].head - 1 + # print('parent is',self.words[parent].text) + # input() + tempmat = self.mat.copy() + assert tempmat[parent, n] == 1 # make sure this node and its parent are connected + tempmat[parent, n] = 0 # now break the connection + c_indexList = np.where(tempmat[parent] == 1)[0] # find children of its parent + siblingList = [] + for cindx in c_indexList: + siblingList.append(self.words[int(cindx)]) + return siblingList + +def fixable(tag1, tag2, show=False): + return False + if 'VG' in tag1 and 'VG' in tag2: + pp('\tFIXED',show) + return True + else: + pp('\tCANNOT BE FIXED',show) + return False + +def predicted_ctag_validity(ctags, show=False): + if 'I_' in ctags[0]: + pp('\tI in starting',show) + return False + i = 0 + while i < len(ctags)-1: + if 'I_' in ctags[i] and 'I_' in ctags[i+1]: + if ctags[i].replace('I_','') != ctags[i+1].replace('I_',''): + pp('\tI_X I_Y observed',show) + pp('\t'+'\t'.join(ctags[i-1:i+2]),show) + return fixable(ctags[i].replace('I_',''), ctags[i+1].replace('I_',''), show) + if 'B_' in ctags[i] and 'I_' in ctags[i+1]: + if ctags[i].replace('B_','') != ctags[i+1].replace('I_',''): + pp('\tB_X I_Y observed',show) + pp('\t'+'\t'.join(ctags[i-1:i+2]),show) + return fixable(ctags[i].replace('B_',''), ctags[i+1].replace('I_',''), show) + i+=1 + return True + +def resolve_Xs(ctag): + for i, ct in enumerate(ctag): + if ct == 'X': + if i!=0: + ctag[i] = 'I_'+ctag[i-1].split('_')[1] # 'I_' + previous chunk tag label + else: + ctag[i] = 'B_'+ctag[i+1].split('_')[1] if i+1 < len(ctag) else 'NP' # 'B_' + next chunk tag label + return ctag + +def augument_extractions(exts, prev = [], repeat=False): + aug = [] + for s_exts in exts: + taug, pairs = [], [] + d = defaultdict(bool, {}) + for i,e1 in enumerate(s_exts): + for j,e2 in enumerate(s_exts): + if len(set(e1).union(set(e2))) == 4 and e1[1] == e2[1] and (j,i) not in pairs and d[tuple(set(e1).union(set(e2)))]==False: + head = list(set(e1) - (set(e1).intersection(set(e2))))[0] + rel = e1.copy() + rel.remove(head) + rel = ' '.join(rel) + tail = list(set(e2) - (set(e1).intersection(set(e2))))[0] + taug.append([head,rel,tail]) + pairs.append((i,j)) + d[tuple(set(e1).union(set(e2)))] = 1 + #print(tuple(set(e1).union(set(e2)))) + if repeat: + pl = [] + for p in pairs: + pl.append(p[0]) + pl.append(p[1]) + for i in range(len(s_exts)): + if i not in pl: + taug.append(s_exts[i]) + aug.append(taug) + + return aug # comment this line to make the process recursive + if aug == prev: + # print(aug) + # input('1') + return aug + else: + # print(aug) + # input('2') + aug = augument_extractions(aug, aug, True) + return aug + +def perform_extraction(s, lang, model, tokenizer, nlp, show=False, argshow=False, is_a_override=False, use_llm=False, llm_fallback=True, llm_enhancement=False, llm_filter_mode=False): + if lang == 'hi': + s = s.replace('|','।') + s = re.sub(r'[\U0001F004-\U0001FA95]+','',s) # emoji removal + s = re.sub(r'[\uFE00-\uFE0F]+','',s) # some special character removal + doc = nlp(s) + all_sents, exts = [], [] + chunking_time, ext_time = [], [] + # hai oru undi + is_a = {'hi':'है','ur':'ہے','ta':'ஒரு','te':'ఉంది','mr':'आहे','en':'is'}[lang] # these are the language specific is_a labels + for sent in doc.sentences: + pp('Orig:'+s,show) + pp('Curr:'+sent.text, show) + ml = [] + for word in sent.words: + ml.append(word) + m = dmatrix(ml) # <------------- creating traditional dependency tree + c = '\t'.join([w.text for w in ml]) + pp(c,show) + a = time.time() + if model == 'CRF': + ctags = predict_with_crf(sent) + else: + ctags = predict_with_model(model,c,tokenizer) + if ctags[0] == 'Size exceeded': + pp('Size exceeded for chunking',show) + all_sents.append(sent.text) + exts.append([]) + chunking_time.append(0) + ext_time.append(0) + continue + + ctags = resolve_Xs(ctags) + pp('\t'.join(ctags),show) + if not predicted_ctag_validity(ctags, show): + pp('Error in chunk tags',show) + all_sents.append(sent.text) + exts.append([]) + chunking_time.append(0) + ext_time.append(0) + continue + w_idx_to_p_id = {} + cid = -1 + textL, headL, idL, uposL, xposL, deprelL, phraseL = [], [], [], [], [], [], [] + # ----------------------- collecting all phrases in a list --------------------- + for i, ct in enumerate(ctags+['B_END']): + if 'B_' in ct: # notice: this mechanism is independent of chunk labels, it only looks for chunk boundaries + cid+=1 + if textL: + ph = phrases(' '.join(textL), 0, cid, '.'.join(uposL), '.'.join(xposL), '.'.join(deprelL), 0, ptype) # though it stores the chunk label (ptype) in case it is needed in future + phraseL.append(ph) + textL, headL, idL, uposL, xposL, deprelL = [], [], [], [], [], [] + if i < len(ctags): + textL.append(ml[i].text) + uposL.append(ml[i].upos) + xposL.append(ml[i].xpos) + deprelL.append(str(ml[i].deprel)) + ptype = ct[2:] + w_idx_to_p_id[i] = cid+1 # <------------------ word to phrase mapping + chunking_time.append(round(time.time()-a,3)) + pp('Chunking happened in '+str(time.time()-a)+' secs',show) + # ------------------------------------------------------------------------------- + a = time.time() + # for p in phraseL: + # print(p.values(), end=' -- ') + # print() + # print(w_idx_to_p_id) + + + # phrase List me phrases ke index 1 se start hote hai + # bcoz phrase ke head bhi 1 se start hote hai bcoz stanza me aisa hota tha, and dmatrix is designed in such a way + # stanza me har word ki ID 1 se start hoti hai + + # Indices of phrases in phraseList starts at 1 + # because head of a phrase starts at 1 as well + # because stanza has this kind of format (where id of root is given 1, and its head is given 0), and dmatrix is designed in such a way + + + # m.show() + + # ------------------------- filling the appropriate parent ids using dependency tree --------------------- + # ml[m.get_root()-1] + phrases_included = [w_idx_to_p_id[m.get_root()]-1] + phraseL[phrases_included[0]].deprel = 'root' + # print('m.get_root()',m.get_root(), 'w_idx_to_p_id[m.get_root()]', w_idx_to_p_id[m.get_root()], 'phrase_included',phrases_included) + # print(m.children(5)) + children_queue = m.children(m.get_root()) + i = 0 + while i < len(children_queue): + child = children_queue[i] + if not (str(child.deprel) == 'punct' and child.upos == 'PUNCT'): + if w_idx_to_p_id[child.id-1]-1 not in phrases_included: + word_id_0_indexing = child.id-1 + phrase_id_0_indexing = w_idx_to_p_id[word_id_0_indexing]-1 + phrases_included.append(phrase_id_0_indexing) + phraseL[phrase_id_0_indexing].head = w_idx_to_p_id[child.head-1] + phraseL[phrase_id_0_indexing].deprel = str(child.deprel) + nxt_children = m.children(child.id-1) + if nxt_children: + children_queue+=nxt_children + i+=1 + # ----------------------------------------------------------------------------------------------------------- + + # ------------------ printing traditional dependency tree ------------- + if lang == 'ur': + if show: + for sents in doc.sentences: + for i,word in enumerate(sents.words): + print(i,word.text, word.upos, word.deprel) + tree = to_nltk_tree(m, m.get_root(),'urdu') + else: + tree = to_nltk_tree(m, m.get_root()) + if show and type(tree) == nltk.tree.Tree: + tree.pretty_print() + # ---------------------------------------------------------------------- + + # for p in phraseL: + # print(p.values(), end=' -- ') + # print('\n') + m = dmatrix(phraseL) # <------------- creation of phrase-level dependency tree + + # ------------------ adjustments in phrase-level dependency tree ------------------- + i = 0 + while i < len(phraseL): + if str(phraseL[i].deprel) in ['compound']: + phraseL[ phraseL[i].head - 1 ].text = phraseL[i].text+' '+phraseL[phraseL[i].head - 1].text + phraseL[ phraseL[i].head - 1 ].upos = phraseL[i].upos+'.'+phraseL[phraseL[i].head - 1].upos + phraseL[ phraseL[i].head - 1 ].xpos = phraseL[i].xpos+'.'+phraseL[phraseL[i].head - 1].xpos + phraseL[ phraseL[i].head - 1 ].deprellist = phraseL[i].deprellist+'.'+phraseL[phraseL[i].head - 1].deprellist + phraseL[i].text, phraseL[i].deprel, phraseL[i].upos = '--','--','--' + elif str(phraseL[i].deprel) in ['aux','advmod','case']: + phraseL[ phraseL[i].head - 1 ].text = phraseL[phraseL[i].head - 1].text+' '+phraseL[i].text + phraseL[ phraseL[i].head - 1 ].upos = phraseL[phraseL[i].head - 1].upos+'.'+phraseL[i].upos + phraseL[ phraseL[i].head - 1 ].xpos = phraseL[phraseL[i].head - 1].xpos+'.'+phraseL[i].xpos + phraseL[ phraseL[i].head - 1 ].deprellist = phraseL[phraseL[i].head - 1].deprellist+'.'+phraseL[i].deprellist + phraseL[i].text, phraseL[i].deprel, phraseL[i].upos = '--','--','--' + i+=1 + + # for p in phraseL: + # print(p.values(), end=' -- ') + # print('\n','this '*20) + + m = dmatrix(phraseL) + for i in range(len(m)): + if str(m.words[i].deprel) == '--': + m.delete_node(i) + # ---------------------------------------------------------------------------------- + + + # ------------------ printing phrase-level dependency tree ------------- + if lang == 'ur': + if show: + for i,phrase in enumerate(phraseL): + print(i,phrase.text, phrase.upos, phrase.deprel) + tree = to_nltk_tree(m, m.get_root(),'urdu') + else: + tree = to_nltk_tree(m, m.get_root(),'mpt') + if show and type(tree) == nltk.tree.Tree: + tree.pretty_print() + # show=False + # ---------------------------------------------------------------------- + + def pre_filter_extractions(extractions: list[list[str]]) -> list[list[str]]: + """ + Applies a set of strict, rule-based heuristics to remove obviously invalid extractions + BEFORE they are sent to the expensive LLM filter. + """ + filtered = [] + seen = set() # For removing exact duplicates + + for ext in extractions: + head, rel, tail = ext[0], ext[1], ext[2] + + # --- Rule 1: Reject fragments based on postpositions --- + # Any head/tail ending in common Hindi postpositions is almost always a fragment. + postposition_fragments = ( + ' की', ' के', ' का', ' को', ' में', ' से', ' पर', ' द्वारा' + ) + if head.endswith(postposition_fragments) or tail.endswith(postposition_fragments): + continue # REJECT + + # --- Rule 2: Reject nonsensical relations --- + # The relation should be a verb/action, not a noun phrase. + # A simple check: if the relation contains 'को', it's likely a mis-parsed object. + if ' को' in rel: + continue # REJECT + + # --- Rule 3: Reject overly simple/generic relations --- + # These are often noise from the rule-based system or LLM. + if rel.strip() in ('है', 'थे', 'property'): + continue # REJECT + + # --- Rule 4: Remove exact duplicates --- + ext_tuple = tuple(ext) + if ext_tuple in seen: + continue # REJECT + seen.add(ext_tuple) + + # If it passes all rules, it's a candidate for the LLM filter + filtered.append(ext) + + return filtered + + def prepare_candidates_for_llm(extractions: list[list[str]]) -> list[list[str]]: + """ + Cleans, canonicalizes, and pre-filters a list of raw extractions to create a + high-quality candidate list for the main LLM filter. + This process is designed to be conservative, removing only definite junk. + """ + + # 1. Canonicalization: Clean up each triple individually + canonical_triples = [] + postposition_pattern = re.compile(r'\s+(?:की|के|का|को|में|से|पर|द्वारा)$') + + for ext in extractions: + # Deep copy to avoid modifying original list + head, rel, tail = list(ext) + + # --- Step 1.1: Trim whitespace --- + head, rel, tail = head.strip(), rel.strip(), tail.strip() + + # --- Step 1.2: Intelligently strip trailing postpositions from head/tail --- + # This was the main mistake before. Now we only strip them, we don't reject the whole triple. + head = postposition_pattern.sub('', head) + tail = postposition_pattern.sub('', tail) + + # --- Step 1.3: Normalize common relation variations --- + # This helps in deduplication. + if rel in ("है", "थे", "हैं"): + rel = "property" # Standardize copulas + # if rel == "property": + # # 'property' is often a sign of a bad rule-based extraction. + # # We'll let the LLM filter handle these nuanced cases rather than rejecting them here. + # pass + + canonical_triples.append([head, rel, tail]) + + # 2. Pre-Filtering: Apply rules to the CLEANED list + final_candidates = [] + seen = set() + + for ext in canonical_triples: + head, rel, tail = ext[0], ext[1], ext[2] + + # --- Rule 2.1: Reject empty components (critical) --- + if not head or not rel or not tail: + continue + + # --- Rule 2.2: Reject if relation is obviously a noun/object fragment --- + # This is a much safer rule than just checking for postpositions everywhere. + if ' को ' in rel or ' का ' in rel or ' की ' in rel: + continue + + # --- Rule 2.3: Reject if head AND tail are identical --- + if head == tail: + continue + + # --- Rule 2.4: Deduplication AFTER canonicalization --- + # This is more powerful now because "X की" and "X" are treated as the same. + ext_tuple = tuple(ext) + if ext_tuple in seen: + continue + seen.add(ext_tuple) + + final_candidates.append(ext) + + return final_candidates + + clean_state(m) + + # Initialize LLM extractor if needed + llm_extractor = None + if (use_llm or llm_fallback or llm_enhancement or llm_filter_mode): + llm_extractor = LLMExtractor() + + # Rule-based extraction (PRIMARY) + exts1 = [] + if not use_llm: # Rule-based is primary unless explicitly using LLM only + exts1 = extract(m, m.get_root(),[],is_a, 0,show, argshow, is_a_override) # <---------- Information Extraction happens here + pp(f'Rule-based extraction produced {len(exts1)} extractions', show) + + if use_llm: + # Primary LLM mode (original behavior - kept for compatibility) + pp(f"Using LLM as primary extraction method for sentence: {s}", show) + if llm_extractor is not None: + try: + chunks_for_llm = [p.text for p in phraseL if p.text != '--'] + mdt_info = { + 'phrases': chunks_for_llm, + 'root_phrase': phraseL[m.get_root()].text if m.get_root() < len(phraseL) else '', + 'dependency_relations': [f"{p.text}->{p.deprel}" for p in phraseL if p.text != '--'] + } + + llm_extractions = llm_extractor.extract_triples( + sentence=sent.text, + chunks=chunks_for_llm, + mdt_info=mdt_info, + language=lang, + show=show + ) + exts1 = llm_extractions + + except Exception as e: + pp(f'LLM extraction failed: {e}', show) + pp('Falling back to rule-based extraction', show) + exts1 = extract(m, m.get_root(),[],is_a, 0,show, argshow, is_a_override) + + elif llm_fallback and len(exts1) == 0: + # LLM fallback mode - use LLM when rules produce no extractions + pp(f"Using LLM fallback for sentence with 0 rule-based extractions: {s}", show) + if llm_extractor is not None: + try: + chunks_for_llm = [p.text for p in phraseL if p.text != '--'] + mdt_info = { + 'phrases': chunks_for_llm, + 'root_phrase': phraseL[m.get_root()].text if m.get_root() < len(phraseL) else '', + 'dependency_relations': [f"{p.text}->{p.deprel}" for p in phraseL if p.text != '--'] + } + + llm_extractions = llm_extractor.extract_triples( + sentence=sent.text, + chunks=chunks_for_llm, + mdt_info=mdt_info, + language=lang, + show=show + ) + + if len(llm_extractions) > 0: + exts1 = llm_extractions + pp(f'LLM fallback produced {len(llm_extractions)} extractions', show) + + except Exception as e: + pp(f'LLM fallback failed: {e}', show) + + elif llm_enhancement and len(exts1) > 0: + # LLM enhancement mode - use LLM to improve existing rule-based extractions + pp(f"Using LLM enhancement for {len(exts1)} rule-based extractions", show) + if llm_extractor is not None: + try: + chunks_for_llm = [p.text for p in phraseL if p.text != '--'] + mdt_info = { + 'phrases': chunks_for_llm, + 'root_phrase': phraseL[m.get_root()].text if m.get_root() < len(phraseL) else '', + 'dependency_relations': [f"{p.text}->{p.deprel}" for p in phraseL if p.text != '--'], + 'rule_extractions': exts1 # Pass rule-based extractions to LLM + } + + # Use LLM with enhancement prompt + llm_extractions = llm_extractor.extract_triples( + sentence=sent.text, + chunks=chunks_for_llm, + mdt_info=mdt_info, + language=lang, + show=show, + enhancement_mode=True # Special mode for enhancement + ) + + if len(llm_extractions) > 0: + # Combine rule-based + LLM extractions (remove duplicates later) + combined_extractions = exts1 + llm_extractions + exts1 = combined_extractions + pp(f'LLM enhancement added {len(llm_extractions)} extractions', show) + + except Exception as e: + pp(f'LLM enhancement failed: {e}', show) + # Continue with rule-based extractions if enhancement fails + + # NEW: LLM False Positive Filtering Mode + if llm_filter_mode and len(exts1) > 0 and llm_extractor is not None: + pp(f"Using LLM filter mode to remove false positives from {len(exts1)} extractions", show) + try: + # print(f"exts1 before prepare_candidates_for_llm: {exts1} ") + # exts1 = prepare_candidates_for_llm(exts1) + print(f"exts1 after prepare_candidates_for_llm: {exts1} ") + filtered_extractions = llm_extractor.filter_false_positives( + sentence=sent.text, + extractions=exts1, + language=lang, + show=show + ) + + if len(filtered_extractions) < len(exts1): + original_count = len(exts1) + exts1 = filtered_extractions + pp(f'LLM filter removed {original_count - len(filtered_extractions)} false positives', show) + else: + pp(f'LLM filter kept all extractions', show) + + except Exception as e: + pp(f'LLM filtering failed: {e}', show) + + exts2 = [] + for e in exts1: # removing duplicate extractions + if e not in exts2: + exts2.append(e) + exts.append(exts2) + all_sents.append(sent.text) + ext_time.append(round(time.time()-a,3)) + pp('Extraction happened in '+str(time.time()-a)+' secs',show) + return all_sents,exts, chunking_time, ext_time + +def pp(msg, show, endc='\n'): + if show: + print(msg, end=endc) + return + +def clean_state(m): + for i in range(len(m)): + m.words[i].state = '' + return + +def closest_phrase(m, phrase1, phraseN): + pl = [p.text for p in m.words] if type(m) == dmatrix else m.split(' ') + pl_d = [] + for p in phraseN: + try: + a = pl.index(phrase1) + b = pl.index(p) + d = abs(a - b) + except Exception as e: + try: + a = ' '.join(pl).index(phrase1) + b = ' '.join(pl).index(p) + except Exception as e: + a = ' '.join(pl).index(phrase1.split()[0]) + b = ' '.join(pl).index(p.split()[0]) + offset = len(phrase1) if a < b else len(p) + d = abs(a - b) - offset + 1 + pl_d.append(d) + return phraseN[np.argmin(pl_d)] + +def obl_useful(m,c,stateless=False): + if c.head != 0: # means c is not root + parent = m.words[c.head-1] + if str(parent.deprel) == 'amod' and parent.ptype == 'JJP' and 'PROPN' not in c.upos: + c.state = 'done' if not stateless else c.state + return False + elif str(parent.deprel) == 'root' and parent.upos == 'VERB' and 'PROPN' not in c.upos: + c.state = 'done' if not stateless else c.state + return False + elif str(parent.deprel) == 'obl' and 'PROPN' not in c.upos: + c.state = 'done' if not stateless else c.state + return False + if c.upos == 'PRON': + c.state = 'done' if not stateless else c.state + return False + return True + +def nmod_useful(m,c,stateless=False): + # if list(set(c.upos.split('.'))) == ['NOUN']: # if it has only nouns + # return False + + parent = m.words[c.head-1] + if 'subj' in str(parent.deprel) or 'obj' in str(parent.deprel) or str(parent.deprel) == 'root' or (str(parent.deprel) == 'obl' and obl_useful(m,parent,stateless=stateless)) or if_any_in(action_relations,str(parent.deprel)): + return True + if 'PROPN' in c.upos: + return True + c.state = 'done' if not stateless else c.state + return False + return True + +def find_args(m,n,patterns,show,stateless=False): + ''' + stateless: states change mat karna, I am just testing the function + ''' + arg = phrases('',-1,-1,'','','','','') + for p in patterns: + + if len(p) == 2: + if not arg.text: + for c in m.children(n): + if p[0] in str(c.deprel) and p[1](m,c,stateless=stateless) and 'done' not in c.state: + arg = c + c.state = 'done' if not stateless else c.state + pp('\n\t['+c.text+'] is a <'+p[0]+'>',show) + return arg + else: + pp('\t['+c.text+'] is not a <'+p[0]+'> because '+str(p[0] in str(c.deprel))+str(p[1](m,c,stateless=True))+str('done' not in c.state)+'#___# ',show,'') + + else: + if not arg.text: + for c in m.children(n): + if p[0] in str(c.deprel) and 'done' not in c.state: + arg = c + if not stateless: + c.state = 'done' + pp('\n\t['+c.text+'] is a <'+p[0]+'>',show) + return arg + else: + pp('\t['+c.text+'] is not a <'+p[0]+'> because '+str(p[0] in str(c.deprel))+str('done' not in c.state)+'#___# ',show,'') + pp('',show) + return arg + +def clausal_node(m,n): + head = m.words[n].text.split()[m.words[n].upos.split('.').index('PRON')] + rel = m.words[n].text.split()[m.words[n].upos.split('.').index('VERB')] + if 'PART' in m.words[n].upos: + rel = m.words[n].text.split()[m.words[n].upos.split('.').index('PART')] + ' ' + rel + if 'AUX' in m.words[n].upos: + if m.words[n].upos.split('.').count('AUX') == 1: + rel = rel + ' ' + m.words[n].text.split()[m.words[n].upos.split('.').index('AUX')] + else: + for idx in [i for i,x in enumerate(m.words[n].upos.split('.')) if x =='AUX'] : + rel = rel + ' ' + m.words[n].text.split()[idx] + tail = m.words[n].text.split() + tail.remove(head) + for r in rel.split(' '): + tail.remove(r) + tail = ' '.join(tail) + return head, rel, tail + +def is_clausal_node(m,n): + return 'PRON' in m.words[n].upos.split('.') and ('NOUN' in m.words[n].upos.split('.') or 'PROPN' in m.words[n].upos.split('.')) and ('VERB' in m.words[n].upos.split('.')) + +def if_any_in(wlist, w): + for w2 in wlist: + if w2 in w: + return True + return False + +def extract(m, n, extraction_queue, is_a, running_no=0, show=False, argshow=False, is_a_override=False): + ''' + m: dmatrix + It is a matrix representation of MDT (refer paper to know MDT) + n: Integer + Id of the phrase you are standing on right now. It starts with root. + extraction_queue: list of lists + as the name suggests, it is a queue that stores the extractions + running_no: Integer + a number which helps us to infinite loops, during recursion (never happened in expts) + show: Bool + A flag to show the intermediate steps in an abstract level. + argshow: Bool + it is a flag to show the intermediate steps while matching the arguments. It can be said that it is used when we want to see most fine-grained intermediate steps. + is_a_override: Bool + This flag is set to True only in case of Hindi Benchie. It uses 'property' instead of language specific is_a labels + ''' + pp('-'*50,show) + pp('\t\t Node='+m.words[n].text+'\n',show) + + + if 'cop' in [str(x.deprel) for x in m.children(n)]: + pp('Copular verb found in the children of "'+m.words[n].text+'"',show) + if len(m.children(n))<=2: + # keep copular verb as a relation + # in this, you are almost guaranteed to get a tail, a rel, and a head + pp('Keeping copular verb as a separate relation',show) + tail = m.words[n] + rel, head = '', '' + for c in m.children(n): + if str(c.deprel) == 'cop': + rel = c + break + head = find_args(m,n,[['subj'],['comp'],['obj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if tail.text and head.text and rel.text: + rel.state, tail.state = 'done', 'done' + rel = rel.text + else: + pp('Something is missing among the triplets',show) + pp('Head='+head.text+' Rel='+rel.text+' Tail='+tail.text, show) + else: + # move copular verb with its parent + pp('Moving copular verb with its parent',show) + rel, rel2 = m.words[n].text, '' + for c in m.children(n): + if str(c.deprel) == 'cop': + rel += ' '+c.text + rel2 = c + break + pp('Relation becomes '+rel, show) + head = find_args(m,n,[['subj'],['comp'],['obj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if str(head.deprel) == 'nmod' and 'done' in m.words[n].state and 'AUX' not in m.words[n].upos: + pp('Head='+head.text+' It is a nmod that is an attribute of '+rel,show) + sibl = m.siblings(head.id-1) + aux_found = 'है' + for sib in sibl: + if 'AUX' in sib.upos: + aux_found = sib.text + break + aux_found = 'property' if is_a_override else aux_found # <----------- here actual over-riding happens + tail = head + head = m.words[n] + rel = aux_found + else: + pp('Head='+head.text, show) + tail = find_args(m,n,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if not tail.text: + pp('Empty tail found. Let us search in the head only.', show) + tail = find_args(m,head.id-1,[['obj'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) # if the parent cannot give you a tail, then maybe head can give you, check it + if tail.text: # yes, head gave us a tail + pp('Tail='+tail.text,show) + else: + pp('Still no tail found', show) + pp('Let us check for advcl etc etc',show) + tail = phrases('',-1,-1,'','','','','') + t1 = find_args(m,n,[['advcl'],['acl'],['acl:relcl']],argshow) + if not t1.text: + pp('Even now, it is not able to find any tail',show) + else: + pp('Found an advcl = "'+t1.text+'"',show) + t2 = find_args(m,t1.id-1,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if t2.text: + pp('Found an argument "'+t2.text+'" with it',show) + tail.text = t2.text + ' ' + t1.text + else: + tail = t1 + if tail.text and head.text and rel: + m.words[n].state = 'done' # rel + rel2.state = 'done' + if head.text and tail.text: + extraction_queue.append([head.text,rel,tail.text]) + pp('Extraction obtained are\n',show) + pp(extraction_queue[-1], show) + else: + if head.text: + head.state = 'done' + pp('This head ('+head.text+') is done',show) + + elif 'advcl' in str(m.words[n].deprel) and 'mark' not in [str(x.deprel) for x in m.siblings(n)] and 'mark' not in [str(x.deprel) for x in m.children(n)]: + # mark represents a breakage of clause i.e. advcl clause becomes somewhat independent + # the dependent (rel+tail) is the main predicate of the clause + # the node on which you are standing, can modify the tail or relation, that is why we combine both + pp('advcl spotted at "'+m.words[n].text+'"', show) + rel = m.words[n].text + head = phrases('',-1,-1,'','','','','') + tail = find_args(m,n,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod'],['advcl']],argshow) + parent = m.parent(n) + ext_found = False + for ext in extraction_queue: # checking previous extractions + if parent.text in ext: # parent exists in previous extractions, + if m.words[n].text not in ext: # but the advcl node on which you are standing must not exist in that extraction + ext_found = ext + break + if ext_found: + head.text = ext_found[2]+' '+ ext_found[1] # old_predicate + old_rel + else: + head = find_args(m,n,[['subj'],['comp'],['obj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + + if head.text and tail.text: + extraction_queue.append([head.text,rel,tail.text]) + pp('Extraction obtained are\n',show) + pp(extraction_queue[-1], show) + else: + if head.text: + head.state = 'done' + pp('This head ('+head.text+') is done',show) + + elif 'acl' == str(m.words[n].deprel) or 'acl:relcl' == str(m.words[n].deprel): + # the node on which you are standing modifies the predicate/tail (generally) + pp('acl spotted at "'+m.words[n].text+'"', show) + rel = m.words[n].text + tail = find_args(m,n,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + parent = m.parent(n) + ext_found = False + for ext in extraction_queue: + if parent.text in ext and m.words[n].text not in ext: + ext_found = ext + break + if ext_found: + pp('Previous extraction contains its parent',show) + head = closest_phrase(m,rel,[ext_found[0], ext_found[2]]) # ext_found[0] is old_head, and ext_found[2] is old_tail + else: + pp('Parent not found in previous extraction. Let us make parent as head only.',show) + head = parent.text + + if head and tail.text: + extraction_queue.append([head,rel,tail.text]) + pp('Extraction obtained are\n',show) + pp(extraction_queue[-1], show) + else: + if tail.text: + tail.state = 'done' + pp('This head ('+tail.text+') is done',show) + + elif 'conj' == str(m.words[n].deprel) and m.words[n].head != 0 and if_any_in(arg_deprels, str(m.parent(n).deprel)) and m.words[n].state != 'conj done' and m.words[n].state != 'PRON done': + pp('conj is seen representing a list',show) + ext_found = False + for ext in extraction_queue: + if m.parent(n).text == ext[0]: + head = m.words[n].text + rel = ext[1] + tail = ext[2] + ext_found = True + elif m.parent(n).text == ext[2]: + head = ext[0] + rel = ext[1] + tail = m.words[n].text + ext_found = True + m.words[n].state = 'conj done' + if ext_found: + extraction_queue.append([head,rel,tail]) + pp('Extraction obtained are\n',show) + pp(extraction_queue[-1], show) + else: + pp('Its parent <'+m.parent(n).text+'> is not present in any previous extractions',show) + + else: + # action verb found + if is_clausal_node(m,n) and (m.words[n].state != 'PRON done' and m.words[n].state != 'completely done'): # PRON is pos tag for Pronoun + # entire clause exists in the node + pp(m.words[n].text+'<-- This node contains a clause within itself',show) + head, rel, tail = clausal_node(m,n) + extraction_queue.append([head,rel,tail]) + pp('here Extraction obtained are',show) + pp(extraction_queue[-1], show) + m.words[n].state = 'PRON done' + # m.words[n].upos = m.words[n].upos.replace('PRON','pron') + else: + # here we take the phrase (on which you are standing on) as a relation + pp('I am at node='+m.words[n].text,show) + rel = m.words[n].text + head = find_args(m,n,[['subj'],['comp'],['obj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + tail = phrases('',-1,-1,'','','','','') # <------------------ creating a dummy tail + if ( (str(head.deprel) == 'nmod' or str(head.deprel) == 'appos') and 'done' in m.words[n].state and # nmod merging step i.e. nmod will be treated "is-a" relationship + 'AUX' not in m.words[n].upos # but there should not be an AUX in its pos tag + and + not (str(m.words[n].deprel)=='nmod' and m.words[n].head!=0 and 'AUX' in m.parent(n).upos) ): # if it itself is an nmod, then there should not be an AUX in its parent (if parent exists) + pp('Head='+head.text+' ---> It is a nmod that is an attribute of <'+rel+'>',show) + # sibl = m.siblings(head.id-1) + # pp('It has '+str(len(sibl))+' siblings',show) + def find_nearest_aux(m,n,is_a): + # pp('First we search aux in the siblings of <'+rel+'>') + return is_a + aux_found = find_nearest_aux(m,n,is_a) #is_a #'है' + # for sib in sibl: + # if 'AUX' in sib.upos: + # aux_found = sib.text + # break + # # else: + # # print('*'*100, sib.text) + aux_found = 'property' if is_a_override else aux_found + tail = head + head = m.words[n] + rel = aux_found + else: + # so we are sure that it is not a appositive relationship, let us move on now + pp('Head='+head.text, show) + tail = find_args(m,n,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if head.text and not tail.text and str(m.words[n].deprel) in action_relations: # we have an head but tail is missing: part 1 + pp('Empty tail found. Let us search in the head only.', show) + tail = find_args(m,head.id-1,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) # agar tail parent ke paas se ni mila, to head ke paas shayad mil jaye + if not tail.text: + pp('Still no tail found', show) + if head.text and not tail.text: # # we have an head but tail is missing: part 2 + if is_clausal_node(m,m.words[n].head-1): # check if its parent is a clausal node or not + pp('Since the parent of <'+m.words[n].text+'> is a clausal node',show) + pp('\t let us pick its relation and tail',show) + a, b, c = clausal_node(m,m.words[n].head-1) + tail = head + head = phrases(c,-1,-1,'','','','','') # <---------notice this is not a dummy, head,text will be c + rel = b + elif m.words[n].head != 0: + pp('Since parent of <'+m.words[n].text+'> exists, let us make it tail only',show) + tail = m.parent(n) + else: + pp('Looking into previous extractions',show) + parent = m.words[n] + ext_found = False + for ext in extraction_queue: + if parent.text in ext and head.text not in ext: + ext_found = ext + #break + if ext_found: + pp('Found in previous extractions',show) + tail.text = closest_phrase(m,head.text,[ext_found[0],ext_found[2]]) + else: + pp('Still no tail found', show) + pp('Let us check for advcl etc etc',show) + tail = phrases('',-1,-1,'','','','','') # <------------------ creating a dummy tail + t1 = find_args(m,n,[['advcl'],['acl'],['acl:relcl']],argshow) + if not t1.text: + pp('Even now, it is not able to find any tail',show) + else: + pp('Found an advcl = "'+t1.text+'"',show) + t2 = find_args(m,t1.id-1,[['obj'],['comp'],['subj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow) + if t2.text: + pp('Found an argument "'+t2.text+'" with it',show) + tail.text = t2.text + ' ' + t1.text + else: + tail = t1 + if tail.text: + pp('Tail='+tail.text, show) + if head.text and tail.text: + extraction_queue.append([head.text,rel,tail.text]) + pp('Extraction is',show) + pp(extraction_queue[-1],show) + m.words[n].state = 'done' if not m.words[n].state else m.words[n].state + else: + head.state = 'done' if head.text!='' else '' + # print(head.text) + # input('wait') + + # input('this') + if(running_no>=300): + raise "Infinite loop it seems" + + pp('Checking for leftovers...',show) # by leftovers, here we mean those nodes, that can be a valid or a tail + leftover = find_args(m,n,[['subj'],['comp'],['obj'],['obl',obl_useful],['nmod',nmod_useful],['appos'],['nummod']],argshow,stateless=True) + if leftover.text: #'done' not in c.state and if_any_in(arg_deprels,c.deprel): + pp('There are still some potential entities left in "'+m.words[n].text+'"',show) + pp('\tLike "'+leftover.text+'"',show) + extraction_queue = extract(m,n,extraction_queue,is_a,running_no+1,show,argshow,is_a_override) # <-------- calling recursive + m.words[n].state = 'completely done' + pp('No leftovers found for "'+m.words[n].text+'"',show) + + for c in m.children(n): # let us move to its children now + if m.children(c.id-1) or 'conj' == str(c.deprel): # if that child is not a leaf node or if that child has a conj deprel + pp('Looking at the child <'+c.text+'> now',show) + extraction_queue = extract(m,c.id-1,extraction_queue,is_a,running_no+1,show,argshow,is_a_override) # <-------- calling recursive + else: + c.state = 'leaf done' + return extraction_queue + +def load_stanza_model(lang, use_gpu=False): + # 1 = will not download anything, probably resulting in failure if the resources aren't already in place. + # 2 = will reuse the existing resources.json and models, but will download any missing models. + # 3 = will download a new resources.json and will overwrite any out of date models. + try: + nlp = stanza.Pipeline(lang,dir=stanza_path+'/'+stanza_version+'/',download_method=2,use_gpu=use_gpu) #stanza.Pipeline(lang, use_gpu=use_gpu) + except: + stanza.download(lang, dir=stanza_path+'/'+stanza_version+'/') # or model_dir=stanza_path+'/'+stanza_version+'/' + nlp = stanza.Pipeline(lang,dir=stanza_path+'/'+stanza_version+'/',download_method=2,use_gpu=use_gpu) # stanza.Pipeline(lang, use_gpu=use_gpu) + return nlp + diff --git a/GSoC25_H/IndIE/wsgi.py b/GSoC25_H/IndIE/wsgi.py new file mode 100644 index 0000000..3efb42e --- /dev/null +++ b/GSoC25_H/IndIE/wsgi.py @@ -0,0 +1,5 @@ +from app import app + +if __name__ == "__main__": + app.run() + diff --git a/GSoC25_H/README.md b/GSoC25_H/README.md new file mode 100644 index 0000000..8b0732d --- /dev/null +++ b/GSoC25_H/README.md @@ -0,0 +1,192 @@ +# Neural Hindi Wiki Triple Extraction Pipeline + +This project aims to enhance and evaluate the relation extraction pipeline for Hindi Wikipedia articles, utilizing a combination of state-of-the-art language models and rule-based methods. +This repo builds on the work done in GSoC24 for the Hindi chapter. + +## Components + +### LLM_IE +Contains code for the plug-and-play evaluation framework for measuring how well small-language-models (SLMs) extract `(subject, relation, object)` triplets from Hindi text using the official [*Hindi-BenchIE*](https://github.com/ritwikmishra/hindi-benchie) benchmark. + +It also contains the finetuning folder which currently only has the synthetic data generation and filtering scripts. + +Generated data and all extraction results can be found at this [Google Drive link](https://drive.google.com/drive/folders/1rYZbLRgZRwfyVJJvsxhqqODQvIrA1JCs) + +TODO: A lot of this code overlaps with the ReAct/ module code. Can be cleaned up. + + +### Link Prediction +Performed various experiments with link prediction modules using the DBpedia hindi data upto May 2025. Few things we tried: +- Two different KGE models - TransE & ConvE +- Incorporating and comparing MURIL Embeddings as starting points (initial embeddings) dimensionally reduced using PCA + +Lot of scope for future work here like hyperparameter tuning, advance entity representation using embeddings of first para of wikipedia text etc. Of course using the english graph in conjunction with the hindi dataset will enhance such a model. + +### IndIE Enhancement +The idea here is simple. + +IndIE relies on a three-stage pipeline to produce its final output: Sentence (input) -> Chunking (P1) -> Creation of MDT (P2) -> Handwritten Rules (P3) -> Triplets (Output) + +Let’s look at what each of these phases does at a high level: + +1. Chunking: This is the process of breaking down the input sentence into meaningful multi-word units. Each chunk represents: +Noun phrases (entities, objects) +Verb phrases (actions, states) +Prepositional phrases (relationships, locations, times) +Other syntactic units +For example: Sentence: कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . Chunks: [‘कार्यरूप जगत को’, ‘देखकर ही’, ‘शक्तिरूपी माया की’, ‘सििद्ध होती है’, ’.’] + +2. Merged Dependency Tree: The MDT shows how chunks relate to each other grammatically, helping identify subjects, objects, and modifiers. For example for the same above sentence, we would derive the following MDT: + +```code +Root Phrase: "सििद्ध होती है" (main predicate/action) +Dependency Relations: + - कार्यरूप जगत को->obj + - देखकर ही->advcl + - शक्तिरूपी माया की->nmod + - सििद्ध होती है->root + - .->0 +``` + +3. Handwritten Rules for Triplet Extraction: For the final output, indIE uses over 100 handwritten rules to derive the final output. This is the brittle component that we want to enhance. + +The idea here was to try replacing the component of hand written rules. Instead of relying on these, we pass the chunks and MDT to a small LM like Gemma 3. We explain to Gemma 3 deeply what a dependency tree is and how it works. Once the model is provided with all this information, it should ideally be able to generate better triplets than before. + +We ran multiple experiments here and eventually after multiple iterations we were able to achieve 66% recall up from 50% from the baseline indIE model. + +### Predicate Linking +This module was an addition to the pipeline from last year to map the extracted relations to the DBpedia ontology. +We map Hindi predicate phrases to English DBpedia ontology properties (`dbo:*`) using a hybrid approach: + +- Graph evidence: direct `dbo:*` edges between `dbr:S` and `dbr:O` (both directions) +- Lexical match: SPARQL label search (Hindi/English) +- Type compatibility: `rdfs:domain`/`rdfs:range` vs `rdf:type(S)`/`rdf:type(O)` +- Multilingual sentence embeddings: local index over the ontology built from `GSoC24_H/ontology_input/ontology--DEV_type=parsed.ttl` + + +Scoring (higher is better): +```python +w_graph, w_emb, w_lex, w_type = 0.4, 0.3, 0.2, 0.1 +# weighted sum -> prioritize graph, then embedding, then lexical, then type +score = w_graph * graph_score + w_emb * emb_score + w_lex * lex_score + w_type * type_score +``` + +Outputs include `property_uri`, labels, score, direction (`S->O` or `O->S`), and evidence breakdown. + + +## How to Run +- Install dependencies by running in the GSoC25/ root + +```pip install -r requirements.txt``` + +### SLM guided IE +- Lives in llm_IE/ +- Refer llm_IE/README.md + +### Link Prediction +- Lives in link_prediction/ +- 2 notebooks - one for analysis, one for actual implementation of the models +- Run the notebooks using jupyter individually + +### Predicate Linking (Hindi → DBpedia Ontology) +Implementation lives in `src/predicate_linking.py`. + +- CLI (coref → RE → EL → predicate linking): +```bash +python GSoC25_H/src/start.py \ + --input_dir GSoC25_H/input \ + --do_coref --do_rel --do_el --do_prop_link --verbose +``` +Logs progress phase-wise (graph, lexical, embedding, typing, scoring) and prints top candidate. + +Automated creation of ontology property and embeddings files upon first run. Cached artifacts written under `GSoC25_H/models/ontology/`: +- `dbpedia_property_catalog.json` +- `dbpedia_property_embeddings.npy` +- `dbpedia_property_index.json` + +To reset caches, delete the files above and rerun. + +### Streamlit Demo +From inside the GSoC25_H/ folder Run +```streamlit run src/demo.py``` + + +### Data +All experiments, results and generated data was uploaded to Google Drive. Find it [here](https://drive.google.com/drive/folders/1fgbZdGAnLhIASQRKEuyOwbBFvFZvJt_R?usp=sharing). + + +### What Work was Done +* Streamline the existing pipeline and make it easy to run +* Implement and evaluate new triplet extraction methods using Small Language Models (SLM) +* Enhance the IndIE method by integrating SLMs in the last stage of IndIE +* Implement link prediction and evaluate to predict missing links using the existing hindi KG +* Implement predicate linking to dbpedia ontology in the existing framework +* Deploy the SPARQL endpoint and test its performance + + +## Progress Overview + +### Week 1-2 + +- Streamlined the existing pipeline from GSoC'24, made it simple to run (steps below) +- Rebased and raised final PR for addings Hindi mappings and extractors - https://github.com/dbpedia/extraction-framework/pull/776 + +### Week 3 + +- Simple framework for evaluating the performance of SLMs w.r.t various prompt strategies on the Hindi BenchIE dataset +- Lives in **llm_IE/** directory +- Read https://advenk.github.io/av-blog/posts/gsoc-25/gsoc-week-3/ + +### Week 4 + +- Used ReAct framework for prompting +- Link prediction setup + +### Week 5 +- Link Prediction notebook completed +- Integrated gemma into the last stage of the IndIE pipeline + +### Week 6 +- Experimented and evaluated IndIE + gemma pipeline from previous week +- Achieved ~65% recall +- Designed finetuning plan + +### Week 7 +- Wrote the synthetic data generation script +- Deployed and performance tested the SPARQL endpoint (lives in https://github.com/advenk/virtuoso-sparql-endpoint-quickstart/tree/gsoc25_hindi_chapter) + +### Week 8-9 +- Paper Review of "Text-to-SPARQL Goes Beyond English: Multilingual Question Answering Over Knowledge Graphs through Human-Inspired Reasoning" +- Document the SPARQL endpoint (temporarily here: http://95.217.58.54:8890/sparql) +- Synthetic Data Generation script change + +### Week 10 +- Evaluated code for entity linking in depth +- Identified Gaps +- EL setup + +### Week 11 +- Implemented predicate linking to dbpedia ontology +- Integrated into existing pipeline + +### Week 12 +- EL normalisation to dbpedia resources from wikidata ID +- Translated and scored lexical similarity for predicates +- Clean up and wrap up of code +- Consolidating a + +## Known Limitations and Future Work +- Enhance predicate linking to include type linking. It currently only handles relational linking but not type linking. Type linking would require us to identify if a triplet is of the form (subject, "है", object) and then link it as the subject -> type -> object. For other triplets (relational), this is handled. The major difference is the "object" in a type linking is a class in the ontology whereas in regular relational linking this is a property. +- Enhance link prediction using English knowledge graph, hyperparam tuning, better embeddings for disambiguation etc +- Finetune gemma3 using latest synthetically generated data then gauge performance +- Refine the pipeline for enhanced accuracy. + + +## Other related links +- Weekly Blog: https://advenk.github.io/av-blog/ +- Unmerged PR for Hindi mappings and extractors: https://github.com/dbpedia/extraction-framework/pull/776 - Can be merged only after updating the mappings via UI. + +## Archived +- SPARQL performance testing code (not to be merged) - https://github.com/advenk/virtuoso-sparql-endpoint-quickstart/tree/gsoc25_hindi_chapter + +- Hindi SPARQL temporary endpoint deployed at http://95.217.58.54:8890/sparql (archived as of 15/09/2025) \ No newline at end of file diff --git a/GSoC25_H/ReAct/config.py b/GSoC25_H/ReAct/config.py new file mode 100644 index 0000000..1f6df0e --- /dev/null +++ b/GSoC25_H/ReAct/config.py @@ -0,0 +1,140 @@ +import os +from dataclasses import dataclass, field +from typing import List, Dict, Any + +@dataclass +class ModelConfig: + """Configuration for a specific model.""" + name: str + description: str + temperature: float = 0.0 + top_p: float = 0.9 + max_tokens: int = 2048 + timeout: int = 120 + +@dataclass +class ToolConfig: + """Configuration for a tool that can be used by the model.""" + name: str + description: str + parameters: Dict[str, Any] + +@dataclass +class PromptStrategyConfig: + """Configuration for a function-calling prompt strategy.""" + name: str + description: str + tool_names: List[str] + +@dataclass +class ExperimentConfig: + """Configuration for the evaluation experiment.""" + models: List[str] = field(default_factory=list) + prompt_strategies: List[str] = field(default_factory=list) + output_dir: str = "results_react" + max_retries: int = 1 + random_seed: int = 42 + +# --- Available Components --- + +AVAILABLE_MODELS: Dict[str, ModelConfig] = { + "gemma3:12b-it-qat": ModelConfig( + name="gemma3:12b-it-qat", + description="Google Gemma 3 12B Instruct, QAT." + ), + "gemma3:4b": ModelConfig( + name="gemma3:4b", + description="Google Gemma 3 4B Instruct." + ), + "gemma3:4b-it-fp16": ModelConfig( + name="gemma3:4b-it-fp16", + description="Google Gemma 3 4B Instruct, fp16 precision." + ), + "llama3.2:3b-instruct-fp16": ModelConfig( + name="llama3.2:3b-instruct-fp16", + description="Meta Llama 3.2 3B Instruct, fp16 precision." + ), +} + +AVAILABLE_TOOLS: Dict[str, ToolConfig] = { + "extract_triplets": ToolConfig( + name="extract_triplets", + description="Extracts one or more information triplets (subject, relation, object) from a given Hindi sentence.", + parameters={ + "type": "object", + "properties": { + "triplets": { + "type": "array", + "description": "A list of triplets found in the sentence.", + "items": { + "type": "object", + "properties": { + "subject": {"type": "string", "description": "The subject of the relation."}, + "relation": {"type": "string", "description": "The relation connecting the subject and object."}, + "object": {"type": "string", "description": "The object of the relation."} + }, + "required": ["subject", "relation", "object"] + } + } + }, + "required": ["triplets"] + } + ) +} + +AVAILABLE_PROMPT_STRATEGIES: Dict[str, PromptStrategyConfig] = { + "react_cot_with_evidence": PromptStrategyConfig( + name="react_cot_with_evidence", + description="A ReAct based strategy that uses the model's native tool-calling feature.", + tool_names=["extract_triplets"] + ) +} + +class Config: + def __init__(self): + self.models = AVAILABLE_MODELS + self.tools = AVAILABLE_TOOLS + self.prompt_strategies = AVAILABLE_PROMPT_STRATEGIES + + self.experiment = ExperimentConfig( + models=["gemma3:4b", "gemma3:12b-it-qat"], + prompt_strategies=["react_cot_with_evidence"] + ) + self.evaluation_data_path = os.path.join(os.path.dirname(__file__), "hindi_benchie_gold.txt") + + def get_model_config(self, model_key: str) -> ModelConfig: + if model_key not in self.models: + raise ValueError(f"Model '{model_key}' not found.") + return self.models[model_key] + + def get_prompt_strategy(self, strategy_key: str) -> PromptStrategyConfig: + if strategy_key not in self.prompt_strategies: + raise ValueError(f"Prompt strategy '{strategy_key}' not found.") + return self.prompt_strategies[strategy_key] + + def get_tool(self, tool_name: str) -> ToolConfig: + if tool_name not in self.tools: + raise ValueError(f"Tool '{tool_name}' not found.") + return self.tools[tool_name] + + def validate(self) -> bool: + """Validates the configuration.""" + for model_key in self.experiment.models: + if model_key not in self.models: + raise ValueError(f"Experiment model '{model_key}' is not defined in available models.") + + for strategy_key in self.experiment.prompt_strategies: + if strategy_key not in self.prompt_strategies: + raise ValueError(f"Experiment strategy '{strategy_key}' is not defined in available strategies.") + strategy = self.prompt_strategies[strategy_key] + for tool_name in strategy.tool_names: + if tool_name not in self.tools: + raise ValueError(f"Tool '{tool_name}' for strategy '{strategy_key}' not found.") + + if not os.path.exists(self.evaluation_data_path): + print(f"Warning: Evaluation data file not found: {self.evaluation_data_path}") + + print("Configuration is valid.") + return True + +config = Config() \ No newline at end of file diff --git a/GSoC25_H/ReAct/data_loader.py b/GSoC25_H/ReAct/data_loader.py new file mode 100644 index 0000000..2f309a1 --- /dev/null +++ b/GSoC25_H/ReAct/data_loader.py @@ -0,0 +1,36 @@ +import os +from typing import Dict + +class BenchieDataLoader: + """Loads sentences from the Hindi-Benchie golden standard file.""" + def __init__(self, golden_standard_path: str): + self.golden_standard_path = golden_standard_path + self.sentences: Dict[str, str] = {} + if os.path.exists(self.golden_standard_path): + self.load_data() + else: + print(f"Warning: Golden standard file not found at {self.golden_standard_path}") + + def load_data(self): + """Reads the golden standard file and parses sentences.""" + try: + with open(self.golden_standard_path, 'r', encoding='utf-8') as f: + content = f.read() + + # The separator is a long line of '=' characters + sections = content.split('==================================================================================================================================================================================') + + for section in sections: + if 'sent_id:' in section: + lines = section.strip().split('\n') + if lines and '\t' in lines[0]: + sent_info, sentence = lines[0].split('\t', 1) + sent_id_str = sent_info.replace('sent_id:', '').strip() + if sent_id_str: + self.sentences[sent_id_str] = sentence.strip() + except Exception as e: + print(f"Error loading or parsing golden standard file: {e}") + + def get_all_sentences(self) -> Dict[str, str]: + """Returns all loaded sentences as a dictionary.""" + return self.sentences \ No newline at end of file diff --git a/GSoC25_H/ReAct/detailed_comparison.py b/GSoC25_H/ReAct/detailed_comparison.py new file mode 100644 index 0000000..a0050f5 --- /dev/null +++ b/GSoC25_H/ReAct/detailed_comparison.py @@ -0,0 +1,309 @@ +import os +import json +import re +import string +from typing import Dict, List, Set, Tuple, Any + +# --- Hindi-BenchIE Core Logic --- +# This logic is adapted from the original BenchIE script to ensure correct comparison. +def compare_clean_golden_ext_with_oie_ext(ext_g: List[str], ext_oie: str) -> str: + ext_oie_list = ext_oie.split('\t') + if len(ext_g) != len(ext_oie_list): return 'not satisfied' + bw = [] + for g_part, o_part in zip(ext_g, ext_oie_list): + ol, gl = o_part.split(), g_part.split() + tbw, i, j = [], 0, 0 + while i < len(ol) and j < len(gl): + if ol[i] != re.sub(r'\]|\[|\{[a-z]+\}', '', gl[j]): + if '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: bracket_end += 1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}', gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start] + gl[bracket_end + 1:] + continue + else: break + else: i += 1; j += 1 + if i == len(ol): + while j != len(gl) and '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: bracket_end += 1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}', gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start] + gl[bracket_end + 1:] + if j == len(gl): bw.extend(tbw) + else: return 'not satisfied' + else: return 'not satisfied' + if bw: return 'satisfied but with ' + ','.join(bw) + else: return 'satisfied' + +def compare_raw_golden_ext_with_oie_ext(ext_golden: str, ext_oie: str, default_passive: bool) -> str: + ext_golden_options = ext_golden.split(' |OR| ') + bl = [] + for ext_g_option in ext_golden_options: + passive = default_passive + if ' <--{not allowed in passive}' in ext_g_option: + passive = False; ext_g_option = ext_g_option.replace(' <--{not allowed in passive}', '') + elif ' <--{allowed in passive}' in ext_g_option: + passive = True; ext_g_option = ext_g_option.replace(' <--{allowed in passive}', '') + ext_g_parts = ext_g_option.split(' --> ') + b = compare_clean_golden_ext_with_oie_ext(ext_g_parts, ext_oie) + if b == 'satisfied': return b + if passive and b != 'satisfied' and len(ext_g_parts) == 3: + t = ext_g_parts[2]; ext_g_parts[2] = ext_g_parts[0]; ext_g_parts[0] = t + b2 = compare_clean_golden_ext_with_oie_ext(ext_g_parts, ext_oie) + if b2 == 'satisfied': return b2 + bl.append(b2) + if 'satisfied but' in b: bl.append(b) + else: bl.append('not satisfied') + satisfied_but_options = [b for b in bl if 'satisfied but' in b] + if satisfied_but_options: return sorted(satisfied_but_options, key=len)[0] + return 'not satisfied' + +def fn_sb(cd: Dict, cel: List[str], fn: int = 0) -> int: + i = 0 + while i < len(cel): + ce = cel[i] + if ce in cd and 'not satisfied' == cd[ce]: + fn += 1; cd[ce] = 'X' + elif ce in cd and 'satisfied but' in cd[ce]: + cel2 = cd[ce].split()[-1].split(','); fn = fn_sb(cd, cel2, fn) + i += 1 + return fn + +def n_extractions_in_smallest_cluster(golden_dict: Dict, sent_key: str) -> int: + sent_clusters = golden_dict.get(sent_key, {}) + if not sent_clusters: return 0 + min_essentials = float('inf') + for cluster_data in sent_clusters.values(): + num_essentials = len(cluster_data.get('essential', [])) + if num_essentials < min_essentials: min_essentials = num_essentials + return min_essentials if min_essentials != float('inf') else 0 + +class DetailedComparer: + """ + Compares extracted triplets against a golden standard using the rigorous Hindi-BenchIE logic. + """ + def __init__(self, golden_standard_path: str): + self.golden_dict, self.sentences = self._parse_golden_standard(golden_standard_path) + + def _parse_golden_standard(self, file_path: str) -> Tuple[Dict, Dict]: + """Correctly parses the complex BenchIE golden standard file.""" + try: + with open(file_path, 'r', encoding='utf-8') as f: gold_lines = [l.strip() for l in f] + except FileNotFoundError: + print(f"FATAL: Golden standard file not found at {file_path}") + return {}, {} + + golden_dict, sentences, essential_exts, compensating_dict, cluster_number, cluster_dict, sentence_number = {}, {}, [], {}, '', {}, '' + for line in gold_lines: + if 'sent_id:' in line: + if sentence_number: + cluster_dict[f'cluster {cluster_number}'] = {'essential': essential_exts, 'compensatory': compensating_dict} + golden_dict[f'sent {sentence_number}'] = cluster_dict + essential_exts, compensating_dict, cluster_number, cluster_dict = [], {}, '', {} + match = re.search(r'sent_id:(\d+)\s+(.*)', line) + if match: + sentence_number, sentence_text = match.group(1), match.group(2) + sentences[sentence_number] = sentence_text + elif '------ Cluster' in line: + if cluster_number: + cluster_dict[f'cluster {cluster_number}'] = {'essential': essential_exts, 'compensatory': compensating_dict} + essential_exts, compensating_dict = [], {} + cluster_number = re.search(r'\d+', line)[0] + elif re.search(r'\{[a-z]\}', line[:4]): compensating_dict[line[1]] = line[4:] + elif '='*20 not in line and line: essential_exts.append(line) + if sentence_number and cluster_number: + cluster_dict[f'cluster {cluster_number}'] = {'essential': essential_exts, 'compensatory': compensating_dict} + golden_dict[f'sent {sentence_number}'] = cluster_dict + return golden_dict, sentences + + def _load_extractions(self, path: str) -> Dict[str, List[Tuple[str, str, str]]]: + """Loads extracted triplets from a raw extraction file.""" + extracted_data: Dict[str, List[Tuple[str, str, str]]] = {} + try: + with open(path, 'r', encoding='utf-8') as f: + for line in f: + if line.strip() and '\t' in line: + parts = line.strip().split('\t') + if len(parts) == 4: + sent_id, subj, rel, obj = parts + if sent_id not in extracted_data: + extracted_data[sent_id] = [] + extracted_data[sent_id].append((subj.strip(), rel.strip(), obj.strip())) + except FileNotFoundError: + print(f"Error: Extraction file not found at {path}") + return extracted_data + + def _get_sentence_analysis(self, sent_id: str, model_extractions_for_sent: List) -> Dict[str, Any]: + """Performs BenchIE analysis for a single sentence to find the best cluster match.""" + sent_key = f'sent {sent_id}' + if sent_key not in self.golden_dict: return {"status": "no_golden_extractions"} + + sent_golden_data = self.golden_dict[sent_key] + processed_model_exts = [] + for e_tuple in model_extractions_for_sent: + e_str = '\t'.join(e_tuple) + e_clean = e_str.translate(str.maketrans('', '', string.punctuation + '।')).strip() + e_clean = re.sub(' +', ' ', e_clean) + processed_model_exts.append({'original': e_tuple, 'clean': e_clean, 'matched': False}) + + best_cluster_analysis, min_fn_count = None, float('inf') + + for cluster_no, cluster_data in sent_golden_data.items(): + state_dict = { + 'essential': {i: 'not satisfied' for i in range(len(cluster_data['essential']))}, + 'compensatory': {k: 'not satisfied' for k in cluster_data['compensatory']} + } + true_positives = [] + + for model_ext in processed_model_exts: + if model_ext['matched']: continue + is_tp_for_this_cluster = False + for i, ext_g in enumerate(cluster_data['essential']): + if state_dict['essential'][i] == 'not satisfied': + res = compare_raw_golden_ext_with_oie_ext(ext_g, model_ext['clean'], True) + if res != 'not satisfied': + state_dict['essential'][i] = res; true_positives.append({'model_extraction': model_ext['original'], 'matched_golden': ext_g, 'match_type': res}) + is_tp_for_this_cluster = True; model_ext['matched'] = True; break + if is_tp_for_this_cluster: continue + for ck, ext_g in cluster_data['compensatory'].items(): + if state_dict['compensatory'][ck] == 'not satisfied': + res = compare_raw_golden_ext_with_oie_ext(ext_g, model_ext['clean'], True) + if res != 'not satisfied': + state_dict['compensatory'][ck] = res; true_positives.append({'model_extraction': model_ext['original'], 'matched_golden': ext_g, 'match_type': res}) + model_ext['matched'] = True; break + + fn_count, unmatched_golden = 0, [] + compensatory_copy = state_dict['compensatory'].copy() + for i, ext_g in enumerate(cluster_data['essential']): + essential_state = state_dict['essential'][i] + if essential_state == 'not satisfied': + fn_count += 1; unmatched_golden.append({'type': 'essential', 'extraction': ext_g}) + elif 'satisfied but' in essential_state: + compensatory_needed = essential_state.split()[-1].split(',') + fn_for_this = fn_sb(compensatory_copy, compensatory_needed) + if fn_for_this > 0: + fn_count += fn_for_this + unmatched_golden.append({'type': 'essential_with_unmatched_compensatory', 'extraction': ext_g, 'needs': compensatory_needed}) + + if fn_count < min_fn_count: + min_fn_count = fn_count + best_cluster_analysis = { + "sent_id": sent_id, "text": self.sentences.get(sent_id, "N/A"), "status": "analyzed", + "best_cluster": cluster_no, "true_positives": true_positives, + "false_positives": [{'model_extraction': e['original']} for e in processed_model_exts if not e['matched']], + "false_negatives": unmatched_golden, + "summary": {"TP": len(true_positives), "FP": len([e for e in processed_model_exts if not e['matched']]), "FN": fn_count} + } + return best_cluster_analysis + + def compare_extractions(self, extraction_filepath: str) -> Dict: + """Compares a file of raw extractions with the golden standard using BenchIE logic.""" + model_extractions = self._load_extractions(extraction_filepath) + if not self.golden_dict: return {"error": "Golden standard not loaded."} + if not model_extractions: return {"error": f"No extractions found in {extraction_filepath}."} + + report_data = {"sentences": []} + total_tp, total_fp, total_fn = 0, 0, 0 + + all_sent_ids = set(self.sentences.keys()) | set(model_extractions.keys()) + + for sent_id in sorted(all_sent_ids, key=int): + analysis = self._get_sentence_analysis(sent_id, model_extractions.get(sent_id, [])) + if analysis and analysis.get('summary'): + summary = analysis['summary'] + total_tp += summary.get('TP', 0) + total_fp += summary.get('FP', 0) + total_fn += summary.get('FN', 0) + report_data["sentences"].append(analysis) + + missed_sent_ids = set(self.sentences.keys()) - set(model_extractions.keys()) + missing_fn_count = sum(n_extractions_in_smallest_cluster(self.golden_dict, f'sent {sid}') for sid in missed_sent_ids) + total_fn += missing_fn_count + + precision = total_tp / (total_tp + total_fp) if (total_tp + total_fp) > 0 else 0 + recall = total_tp / (total_tp + total_fn) if (total_tp + total_fn) > 0 else 0 + f1_score = 2 * (precision * recall) / (precision + recall) if (precision + recall) > 0 else 0 + + report_data["overall_metrics"] = { + "precision": precision, "recall": recall, "f1_score": f1_score, + "total_true_positives": total_tp, "total_false_positives": total_fp, "total_false_negatives": total_fn, + "note": f"{missing_fn_count} FNs are from {len(missed_sent_ids)} sentences with no model-generated extractions." + } + return report_data + +def process_file(comparer: DetailedComparer, extraction_filepath: str): + """Runs the comparison for a single file and saves the results.""" + print("=" * 80) + print(f"Processing file: {os.path.basename(extraction_filepath)}") + + results = comparer.compare_extractions(extraction_filepath) + + if "error" in results: + print(f" Error: {results['error']}") + print("=" * 80) + return + + print("\n--- Overall Metrics ---") + print(json.dumps(results.get('overall_metrics', {}), indent=2, ensure_ascii=False)) + + output_dir = os.path.dirname(extraction_filepath) + comparison_filename = f"comparison_{os.path.basename(extraction_filepath).replace('.txt', '.json')}" + comparison_filepath = os.path.join(output_dir, comparison_filename) + + with open(comparison_filepath, 'w', encoding='utf-8') as f: + json.dump(results, f, indent=2, ensure_ascii=False) + + print(f"\nDetailed comparison saved to: {comparison_filepath}") + print("=" * 80) + + +def main(): + """ + Main function to run the comparison. + Processes a single file if provided, otherwise processes all extraction + files in the 'results_react' directory. + """ + import argparse + parser = argparse.ArgumentParser(description="Compare LLM extractions with the Hindi-BenchIE golden standard.") + parser.add_argument( + "extraction_file", + type=str, + nargs='?', + default=None, + help="Path to a specific raw extraction file (e.g., extractions_...txt). If omitted, all 'extractions_*.txt' files in 'results_react/' will be processed." + ) + args = parser.parse_args() + + script_dir = os.path.dirname(__file__) + golden_standard_path = os.path.join(script_dir, "hindi_benchie_gold.txt") + + comparer = DetailedComparer(golden_standard_path) + + files_to_process = [] + if args.extraction_file: + if not os.path.exists(args.extraction_file): + print(f"Error: Provided file not found at '{args.extraction_file}'") + return + files_to_process.append(args.extraction_file) + else: + results_dir = os.path.join(script_dir, 'results_react') + print(f"No specific file provided. Searching for extraction files in: {results_dir}") + if not os.path.isdir(results_dir): + print(f"Error: Results directory not found at '{results_dir}'") + return + + for filename in sorted(os.listdir(results_dir)): + if filename.startswith('extractions_') and filename.endswith('.txt'): + files_to_process.append(os.path.join(results_dir, filename)) + + if not files_to_process: + print("No extraction files found to process.") + return + + for f_path in files_to_process: + process_file(comparer, f_path) + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/GSoC25_H/ReAct/evaluation.py b/GSoC25_H/ReAct/evaluation.py new file mode 100644 index 0000000..a4dec38 --- /dev/null +++ b/GSoC25_H/ReAct/evaluation.py @@ -0,0 +1,194 @@ +import os +import json +import time +from datetime import datetime +import re +from typing import Any, Dict, List, Optional + +from pydantic import BaseModel, Field + +from config import config +from data_loader import BenchieDataLoader +from prompt_factory import PromptFactory +from llm_interface import LLMInterface + +class Triplet(BaseModel): + """Represents a single Subject-Relation-Object triplet.""" + subject: str = Field(..., description="The identified subject") + relation: str = Field(..., description="The identified relation") + object: str = Field(..., description="The identified object") + +class RelationParameters(BaseModel): + """Parameters for the extract_relation function, accepting a list of triplets.""" + triplets: List[Triplet] = Field(..., description="A list of extracted (subject, relation, object) triplets.") + +class FunctionCall(BaseModel): + """A model to represent a function call from the LLM.""" + name: str + parameters: RelationParameters +def extract_relation(triplets: List[Dict[str, str]]) -> Dict[str, Any]: + """ + Processes the extracted relation triplets. + """ + return {"status": "success", "data": triplets} + +def parse_function_call(model_response: str) -> Optional[FunctionCall]: + """ + Parses the model's response to find and validate a JSON function call. + This is improved to find a JSON block even if it's mixed with other text. + """ + # Use regex to find a JSON object block in the response + json_match = re.search(r'{\s*"name":\s*"extract_relation"[\s\S]*}', model_response) + if not json_match: + return None + + json_str = json_match.group(0) + + try: + data = json.loads(json_str) + return FunctionCall(**data) + except (json.JSONDecodeError, TypeError, ValueError) as e: + # This can help in debugging if the JSON is malformed + print(f"JSON parsing/validation failed: {e}") + return None + + +def run_evaluation(): + """Main function to run the ReAct evaluation framework.""" + + # 1. Load Configuration and Initialize Components + cfg = config + cfg.validate() + + data_loader = BenchieDataLoader(cfg.evaluation_data_path) + prompt_factory = PromptFactory(cfg) + + if len(data_loader) == 0: + print("No sentences to process. Exiting.") + return + + # 2. Iterate Through All Combinations of Models and Strategies + for model_key in cfg.experiment.models: + model_config = cfg.get_model_config(model_key) + llm_interface = LLMInterface(model_config, max_retries=cfg.experiment.max_retries) + + for strategy_key in cfg.experiment.prompt_strategies: + strategy_config = cfg.get_prompt_strategy(strategy_key) + + print("="*80) + print(f"Running evaluation for Model: '{model_config.name}' with Strategy: '{strategy_config.name}'") + print("="*80) + + all_results = [] + raw_extractions = [] + total_time = 0 + + sentences = data_loader.get_all_sentences() + sorted_sent_ids = sorted(sentences.keys(), key=lambda x: int(x)) + triplets = [] + # 3. Process Each Sentence + for i, sent_id in enumerate(sorted_sent_ids): + sentence = sentences[sent_id] + print(f" Processing sentence {i+1}/{len(sorted_sent_ids)} (ID: {sent_id})...") + + start_time = time.time() + + # a. Create prompt + messages = prompt_factory.create_prompt(strategy_key, sentence) + + # b. Get model response + response = llm_interface.generate_response(messages) + + if not response: + print(f" -> Skipping sentence {sent_id} due to model error") + # timeout etc can occur + # still store a result so we know it was attempted + result = { + "sent_id": sent_id, + "sentence": sentence, + "model": model_key, + "strategy": strategy_key, + "llm_response": "", + "extracted_triplets": [], + "time_taken": (time.time() - start_time) + } + all_results.append(result) + continue + + + model_response = response['message']['content'] + function_call = parse_function_call(model_response) + + if function_call and function_call.name == "extract_relation": + try: + params = function_call.parameters + result = extract_relation(triplets=[triplet.dict() for triplet in params.triplets]) + triplets = result.get('data', []) + except Exception as e: + print(f"Error executing function call: {e}") + triplets = [] # Ensure triplets is a list + else: + print("Model did not return a valid function call.") + triplets = [] # Ensure triplets is a list + + end_time = time.time() + duration = end_time - start_time + total_time += duration + + # d. Store results + result = { + "sent_id": sent_id, + "sentence": sentence, + "model": model_key, + "strategy": strategy_key, + "llm_response": dict(response['message']), + "extracted_triplets": triplets, + "time_taken": duration + } + all_results.append(result) + + if triplets: + print(f" -> Extracted {len(triplets)} triplet(s) in {duration:.2f}s.") + for t in triplets: + raw_extractions.append(f"{sent_id}\t{t['subject']}\t{t['relation']}\t{t['object']}") + else: + print(f" -> No triplets extracted. ({duration:.2f}s)") + + # 4. Save Results for this Combination + avg_time = total_time / len(sentences) if sentences else 0 + print(f"Finished. Total time: {total_time:.2f}s, Avg time/sentence: {avg_time:.2f}s") + + output_dir = os.path.join(os.path.dirname(__file__), cfg.experiment.output_dir) + if not os.path.exists(output_dir): + os.makedirs(output_dir) + + model_name_safe = model_key.replace(":", "_").replace("/", "_") + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + + # save results + json_filename = f"detailed_analysis_{model_name_safe}_{strategy_key}_{timestamp}.json" + json_filepath = os.path.join(output_dir, json_filename) + + # print("\n--- Preparing to save JSON. Checking data types... ---") + # for i, res in enumerate(all_results): + # llm_resp_type = type(res.get("llm_response")) + # if llm_resp_type is not dict: + # print(f" [Entry {i+1}] llm_response is of type: {llm_resp_type} <-- POTENTIAL ISSUE") + # else: + # print(f" [Entry {i+1}] llm_response is of type: {llm_resp_type}") + # print("---------------------------------------------------------\n") + + with open(json_filepath, 'w', encoding='utf-8') as f: + json.dump(all_results, f, indent=2, ensure_ascii=False) + print(f"Detailed results saved to: {json_filepath}") + + # Save raw extractions for compatibility with benchie + extraction_filename = f"extractions_{model_name_safe}_{strategy_key}.txt" + extraction_filepath = os.path.join(output_dir, extraction_filename) + with open(extraction_filepath, 'w', encoding='utf-8') as f: + f.write("\n".join(raw_extractions)) + print(f"Raw extractions saved to: {extraction_filepath}") + print("-" * 80) + +if __name__ == "__main__": + run_evaluation() \ No newline at end of file diff --git a/GSoC25_H/ReAct/hindi_benchie_gold.txt b/GSoC25_H/ReAct/hindi_benchie_gold.txt new file mode 100644 index 0000000..afa3387 --- /dev/null +++ b/GSoC25_H/ReAct/hindi_benchie_gold.txt @@ -0,0 +1,963 @@ +sent_id:1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +------ Cluster 1 ------ +[शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] +{a} शक्तिरूपी --> property --> माया [की] +{b} कार्यरूप --> property --> जगत [को] +================================================================================================================================================================================== +sent_id:2 अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +------ Cluster 1 ------ +अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता +{a} ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट +{b} अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता +================================================================================================================================================================================== +sent_id:3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +------ Cluster 1 ------ +[विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा +[केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +[भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +{a} विवादित --> property --> अंगुलि चिह्नों [का] +{b} केन्द्रीय --> property --> सरकार के विभागों +{c} भारत --> property --> सरकार के उपक्रमों +================================================================================================================================================================================== +sent_id:4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +------ Cluster 1 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} प्रसिद्ध --> property --> 007 के गुप्त नाम से +------ Cluster 2 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट +[फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{c} प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से +{d} 007 [के] --> property --> गुप्त नाम [से] +------ Cluster 3 ------ +[007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में +{a} यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध +{b} फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +================================================================================================================================================================================== +sent_id:5 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +------ Cluster 1 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +------ Cluster 2 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +================================================================================================================================================================================== +sent_id:6 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +------ Cluster 1 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को +{a} 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में +------ Cluster 2 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{b} नवीनतम --> property --> वेतनमानों [को] +------ Cluster 3 ------ +[01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल --> property --> 2009 से +{b} नवीनतम --> property --> वेतनमानों [को] +================================================================================================================================================================================== +sent_id:7 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +------ Cluster 1 ------ +[गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर +01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की +{c} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] +------ Cluster 2 ------ +[गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर +01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल +================================================================================================================================================================================== +sent_id:8 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +------ Cluster 1 ------ +[06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +------ Cluster 2 ------ +[06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +================================================================================================================================================================================== +sent_id:9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +------ Cluster 1 ------ +06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था +------ Cluster 2 ------ +06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म +------ Cluster 3 ------ +06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} +{a} 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था +================================================================================================================================================================================== +sent_id:10 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट +{a} 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया +{b} पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट +================================================================================================================================================================================== +sent_id:11 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +------ Cluster 1 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +{c} कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} +------ Cluster 2 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +[1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +================================================================================================================================================================================== +sent_id:12 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{a} 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में +{b} [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{c} दूसरा --> property --> सीज़न +================================================================================================================================================================================== +sent_id:13 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +------ Cluster 1 ------ +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का +{a} 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया +================================================================================================================================================================================== +sent_id:14 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +------ Cluster 1 ------ +[1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से +{a} 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ +{b} शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:15 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +------ Cluster 1 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस +अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +------ Cluster 2 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा +अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +================================================================================================================================================================================== +sent_id:16 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +------ Cluster 1 ------ +[1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त +गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री +{a} 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया +{b} स्वायत्तशासी --> property --> प्रान्त +{c} इसके पहले --> property --> मुख्य मन्त्री +================================================================================================================================================================================== +sent_id:17 हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +------ Cluster 1 ------ +हिन्दी प्रचार सभा --> थी --> एक आन्दोलन +हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ +{a} भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] +================================================================================================================================================================================== +sent_id:18 बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +------ Cluster 1 ------ +[बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा +{a} बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा +{b} कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर +{c} एक अनूठी --> property --> आभा +================================================================================================================================================================================== +sent_id:19 तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +------ Cluster 1 ------ +सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +------ Cluster 2 ------ +सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] +तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू +{a} सोनू --> बन चुके हैं --> अब तक +------ Cluster 3 ------ +सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +================================================================================================================================================================================== +sent_id:20 कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +------ Cluster 1 ------ +कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण +कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] +{a} [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण +{b} सबसे अधिक --> property --> प्रयोगनीय +================================================================================================================================================================================== +sent_id:21 बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +------ Cluster 1 ------ +सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +{a} [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] +{b} राजधानी --> property --> चेकोस्लोवाकिया की +================================================================================================================================================================================== +sent_id:22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +------ Cluster 1 ------ +वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +------ Cluster 2 ------ +वे --> हैं --> प्रथम भारतीय +[राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +------ Cluster 3 ------ +[योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] +{a} योग एवं --> property --> शिक्षा +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +================================================================================================================================================================================== +sent_id:23 सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +------ Cluster 1 ------ +[सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +[स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +{a} स्कूल की --> property --> पढ़ाई [पूरी करने तक] +{b} वित्तीय --> property --> सहायता [भी] +================================================================================================================================================================================== +sent_id:24 आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +------ Cluster 1 ------ +यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए +यह स्थान --> दर्शनीय केन्द्र है --> आज भी +{a} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 2 ------ +यह स्थान --> है --> [दर्शनीय]{a} केन्द्र +[दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए +[दर्शनीय]{a} केन्द्र --> है --> आज भी +{a} दर्शनीय --> property --> केन्द्र +{b} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 3 ------ +यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय +{a} दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए +{b} लोगों के लिए --> property --> क्षेत्र के +------ Cluster 4 ------ +यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र +{a} दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए +{b} क्षेत्र के --> property --> लोगों के लिए +================================================================================================================================================================================== +sent_id:25 इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +------ Cluster 1 ------ +पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का +इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] +{a} प्रतिनिधित्व --> property --> करता है +------ Cluster 2 ------ +इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण +================================================================================================================================================================================== +sent_id:26 मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +------ Cluster 1 ------ +मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की +[शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं +{a} शब्द की --> property --> आत्मा [समझकर ही] +{b} इस श्रेष्ठ --> property --> तत्त्व की +================================================================================================================================================================================== +sent_id:27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +------ Cluster 1 ------ +[हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में +{a} हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] +================================================================================================================================================================================== +sent_id:28 उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +------ Cluster 1 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 2 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 3 ------ +उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को +{a} बच्चे को --> देने से --> स्पष्ट इंकार कर दिया +================================================================================================================================================================================== +sent_id:29 शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +------ Cluster 1 ------ +[शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से +{a} तुलनात्मक अध्ययन --> property --> शिक्षा का +================================================================================================================================================================================== +sent_id:30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +------ Cluster 1 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा +{a} भारतीय --> property --> रेल [द्वारा संचालित] +{b} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 2 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 3 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +================================================================================================================================================================================== +sent_id:31 वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +------ Cluster 1 ------ +यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 2 ------ +[यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 3 ------ +यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +------ Cluster 4 ------ +[वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन +{a} पश्चिम बंगाल का --> property --> यह शहर +{b} वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +================================================================================================================================================================================== +sent_id:32 सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +------ Cluster 1 ------ +सिलकोट --> है --> एक गाँव +सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +{a} गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} +{c} कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] +{d} उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +------ Cluster 2 ------ +सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का +{a} सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के +------ Cluster 3 ------ +सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का +{a} सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] +------ Cluster 4 ------ +सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव +{a} सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का +================================================================================================================================================================================== +sent_id:33 एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +------ Cluster 1 ------ +[एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में +{a} तकनीकी केंद्र [को] --> property --> एयर लाइन [के] +================================================================================================================================================================================== +sent_id:34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +------ Cluster 1 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] +{c} [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{d} चीफ कोर्ट के --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा +================================================================================================================================================================================== +sent_id:35 किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +------ Cluster 1 ------ +बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को +बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से +================================================================================================================================================================================== +sent_id:36 जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +------ Cluster 1 ------ +विक्रम ने --> सोचा --> एक हल +विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल +================================================================================================================================================================================== +sent_id:37 सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +------ Cluster 1 ------ +शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 2 ------ +शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का +------ Cluster 3 ------ +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 4 ------ +सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +================================================================================================================================================================================== +sent_id:38 मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +------ Cluster 1 ------ +मर्लगोंड --> है --> एक गाँव +मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में +मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 2 ------ +मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में +एक गाँव है --> property --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 3 ------ +मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> कुभीर मण्डल में +भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] +------ Cluster 4 ------ +मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का +मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में +{a} अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +{b} कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +================================================================================================================================================================================== +sent_id:39 बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +------ Cluster 1 ------ +[व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ +बाद में --> लिखे गये --> अनेक ग्रन्थ +{a} व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर +================================================================================================================================================================================== +sent_id:40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +------ Cluster 1 ------ +[1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में +{a} 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में +{b} इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता +================================================================================================================================================================================== +sent_id:41 उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +------ Cluster 1 ------ +[उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम +इस जगह का नाम --> रखा गया --> रुस्तम खान +{a} उनके --> property --> नाम पर +------ Cluster 2 ------ +उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} +{a} रुस्तम खान --> रखा गया --> जगह का नाम +================================================================================================================================================================================== +sent_id:42 कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +------ Cluster 1 ------ +कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना +[अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +{a} [अपने] घर पर ही --> property --> रहना +------ Cluster 2 ------ +कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना +{a} [अपने] घर पर ही --> property --> रहना +{b} [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +================================================================================================================================================================================== +sent_id:43 मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +------ Cluster 1 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी +मार्च 2001 में --> वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 2 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी +मार्च 2001 में --> वापसी हुई [फिर] --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 3 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी +मार्च 2001 में --> [फिर] वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +================================================================================================================================================================================== +sent_id:44 इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +------ Cluster 1 ------ +[इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा +3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला +{a} आधारशिला --> property --> इसकी रचना की +------ Cluster 2 ------ +3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +[इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +{a} इसकी --> property --> रचना की +================================================================================================================================================================================== +sent_id:45 इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +------ Cluster 1 ------ +वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से +इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह +================================================================================================================================================================================== +sent_id:46 त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +------ Cluster 1 ------ +त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से +त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में +{a} सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से +------ Cluster 2 ------ +त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से +{a} चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से +================================================================================================================================================================================== +sent_id:47 मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +------ Cluster 1 ------ +उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] +{a} मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] +------ Cluster 2 ------ +उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} +{a} हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त +------ Cluster 3 ------ +मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने +================================================================================================================================================================================== +sent_id:48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +------ Cluster 1 ------ +काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में +{a} काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से +------ Cluster 2 ------ +काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} +{a} काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में +================================================================================================================================================================================== +sent_id:49 हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +------ Cluster 1 ------ +[हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर +{a} हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व +{b} [और] मुस्लिमों के --> property --> सभी पर्व +------ Cluster 2 ------ +हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व +{a} मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व +================================================================================================================================================================================== +sent_id:50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को +{a} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} +{b} 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} +{c} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में +{d} 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में +================================================================================================================================================================================== +sent_id:51 यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +------ Cluster 1 ------ +यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल +यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में +{a} फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:52 द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +------ Cluster 1 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 2 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 3 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 4 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +[आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +================================================================================================================================================================================== +sent_id:53 यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +------ Cluster 1 ------ +यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +------ Cluster 2 ------ +यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +================================================================================================================================================================================== +sent_id:54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +------ Cluster 1 ------ +[तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग +{a} समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +{b} तटीय --> property --> कर्नाटक [के] +{c} भोजन में --> property --> [तटीय]{b} कर्नाटक के +{d} नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +================================================================================================================================================================================== +sent_id:55 कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +------ Cluster 1 ------ +कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] +{a} वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] +================================================================================================================================================================================== +sent_id:56 सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +------ Cluster 1 ------ +[सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड +{a} सिफियस चतुर्थ की --> property --> श्रेणी +================================================================================================================================================================================== +sent_id:57 यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +------ Cluster 1 ------ +यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +------ Cluster 2 ------ +यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +================================================================================================================================================================================== +sent_id:58 चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +------ Cluster 1 ------ +इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} +{a} इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से +================================================================================================================================================================================== +sent_id:59 कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +------ Cluster 1 ------ +कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके +कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} +{a} कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में +{b} राजा की --> property --> आयु में +================================================================================================================================================================================== +sent_id:60 अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +------ Cluster 1 ------ +[अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] +{a} अभ्रक [आदि] की --> property --> खानों में +================================================================================================================================================================================== +sent_id:61 इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +------ Cluster 1 ------ +उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} उन्होंने --> लिखे हैं --> [और] उपन्यास +------ Cluster 2 ------ +इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +------ Cluster 3 ------ +इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +================================================================================================================================================================================== +sent_id:62 वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +------ Cluster 1 ------ +वो --> हैं --> मुख्य न्यायाधीश +पहले दलित --> property --> मुख्य न्यायाधीश +[और] पहले मलयाली --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश +{a} पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश +================================================================================================================================================================================== +sent_id:63 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +------ Cluster 1 ------ +[6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{a} 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +------ Cluster 2 ------ +6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने +{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +================================================================================================================================================================================== +sent_id:64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +------ Cluster 1 ------ +स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर +{a} [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी +{b} चाय के --> निर्भर रहती है --> व्यापार पर +================================================================================================================================================================================== +sent_id:65 इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +------ Cluster 1 ------ +इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] +================================================================================================================================================================================== +sent_id:66 उन्हें उत्कल मणि के नाम से जाना जाता है . +------ Cluster 1 ------ +उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से +{a} उत्कल मणि के --> property --> नाम से +------ Cluster 2 ------ +उन्हें --> के नाम से जाना जाता है --> उत्कल मणि +------ Cluster 3 ------ +उन्हें --> नाम से जाना जाता है --> उत्कल मणि के +================================================================================================================================================================================== +sent_id:67 अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +------ Cluster 1 ------ +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +------ Cluster 2 ------ +कृपया --> देखें --> फ्रेंच फ्लेमिश को +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +================================================================================================================================================================================== +sent_id:68 इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +------ Cluster 1 ------ +[इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में +{a} इस नदी का --> property --> ज्यादातर अंश +================================================================================================================================================================================== +sent_id:69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +------ Cluster 1 ------ +[मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का +जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} +{a} अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का +{b} [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) +================================================================================================================================================================================== +sent_id:70 राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +------ Cluster 1 ------ +[राज्य की]{a} राजधानी --> है --> बंगलुरु शहर +[जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का +{a} राज्य की --> property --> राजधानी +{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में +================================================================================================================================================================================== +sent_id:71 ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +------ Cluster 1 ------ +ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए +{b} [और] भयावह --> property --> कहानियों के लिए +------ Cluster 2 ------ +ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों +{b} [और] भयावह --> property --> कहानियों +================================================================================================================================================================================== +sent_id:72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +------ Cluster 1 ------ +उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} +{a} उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह +================================================================================================================================================================================== +sent_id:73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +------ Cluster 1 ------ +पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण +( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +------ Cluster 2 ------ +पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण +{a} ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने +------ Cluster 3 ------ +पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा +{a} ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +================================================================================================================================================================================== +sent_id:74 इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +------ Cluster 1 ------ +इसके पश्चिम में --> स्थित हैं --> अलबामा +[इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} +{a} राज्य --> property --> फ्लोरिडा +================================================================================================================================================================================== +sent_id:75 यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +------ Cluster 1 ------ +यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर में +------ Cluster 2 ------ +यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] +================================================================================================================================================================================== +sent_id:76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +------ Cluster 1 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +------ Cluster 2 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +================================================================================================================================================================================== +sent_id:77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +------ Cluster 1 ------ +आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को +{a} योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में +================================================================================================================================================================================== +sent_id:78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +------ Cluster 1 ------ +इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में +इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से +इसे --> विभाजित किया है --> कुछ लोगों ने +{a} इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में +{b} इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] +================================================================================================================================================================================== +sent_id:79 पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +------ Cluster 1 ------ +[पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +------ Cluster 2 ------ +[पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +================================================================================================================================================================================== +sent_id:80 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +------ Cluster 1 ------ +5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +------ Cluster 2 ------ +5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +================================================================================================================================================================================== +sent_id:81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +------ Cluster 1 ------ +सीता --> पहनाती हैं --> राम को जयमाल +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 2 ------ +सीता --> पहनाती हैं --> जयमाल +सीता --> पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 3 ------ +सीता --> जयमाल पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +================================================================================================================================================================================== +sent_id:82 विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +------ Cluster 1 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर +[इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +------ Cluster 2 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +================================================================================================================================================================================== +sent_id:83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +------ Cluster 1 ------ +प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +------ Cluster 2 ------ +प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +================================================================================================================================================================================== +sent_id:84 एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +------ Cluster 1 ------ +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद +{a} तीसरा कट --> property --> एल्बम [से] +================================================================================================================================================================================== +sent_id:85 चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +------ Cluster 1 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> नहीं थे --> [कोई] [और] मानक +[चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक +------ Cluster 2 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में +================================================================================================================================================================================== +sent_id:86 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +------ Cluster 1 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को +[1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +------ Cluster 2 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +================================================================================================================================================================================== +sent_id:87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +------ Cluster 1 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में +------ Cluster 2 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में +================================================================================================================================================================================== +sent_id:88 उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +------ Cluster 1 ------ +केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले +{a} मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा +================================================================================================================================================================================== +sent_id:89 जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +------ Cluster 1 ------ +इश -- डू में --> सामना होता है --> दो प्राणियों का +इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में +================================================================================================================================================================================== +sent_id:90 ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +------ Cluster 1 ------ +ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में +------ Cluster 2 ------ +ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] +उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] +================================================================================================================================================================================== +sent_id:91 विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +------ Cluster 1 ------ +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में +{a} किसानों के --> property --> दूध विपणन के [पुराने] तरीके +{b} [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के +================================================================================================================================================================================== +sent_id:92 उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +------ Cluster 2 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +================================================================================================================================================================================== +sent_id:93 इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +------ Cluster 1 ------ +[इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 2 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> बचाना [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 4 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को +================================================================================================================================================================================== +sent_id:94 यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +------ Cluster 1 ------ +यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को +यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को +{a} राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की +================================================================================================================================================================================== +sent_id:95 सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +------ Cluster 1 ------ +सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से +सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से +================================================================================================================================================================================== +sent_id:96 छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +------ Cluster 1 ------ +छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का +जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार +{a} ब्लाकों का --> प्रयोग होता था --> लकड़ी के +================================================================================================================================================================================== +sent_id:97 यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +------ Cluster 1 ------ +यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये +{a} सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली +{b} यह --> property --> शब्द +================================================================================================================================================================================== +sent_id:98 यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +------ Cluster 1 ------ +यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में +यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में +{a} बलिया जिले में --> property --> उत्तर प्रदेश के +{b} पश्चिम में --> स्थित है --> बलिया शहर से +================================================================================================================================================================================== +sent_id:99 उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +------ Cluster 1 ------ +उन्होने --> हत्या नहीं करवाई --> पिता की +उन्होने --> हत्या नहीं करवाई --> उसेक बाद +अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या +{a} हत्या --> करते थे --> पिता की +================================================================================================================================================================================== +sent_id:100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +------ Cluster 1 ------ +हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर +प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का +सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का +================================================================================================================================================================================== +sent_id:101 हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +------ Cluster 1 ------ +हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण +================================================================================================================================================================================== +sent_id:102 यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +------ Cluster 1 ------ +केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण +केरल --> प्रसिद्ध है --> विश्व भर में +================================================================================================================================================================================== +sent_id:103 इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +------ Cluster 1 ------ +इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} +{a} सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका +{b} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} +{c} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग +================================================================================================================================================================================== +sent_id:104 दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +------ Cluster 1 ------ +[उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] +उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में +================================================================================================================================================================================== +sent_id:105 ये कहानियाँ किसी देश या समय की हो सकती हैं . +------ Cluster 1 ------ +ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की +{a} ये --> property --> कहानियाँ +================================================================================================================================================================================== +sent_id:106 और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +------ Cluster 1 ------ +[और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को +================================================================================================================================================================================== +sent_id:107 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +------ Cluster 1 ------ +2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] +================================================================================================================================================================================== +sent_id:108 यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +------ Cluster 1 ------ +यहीं पर --> देहांत हो गया --> उनका +सन 1533 में --> देहांत हो गया --> उनका +47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका +रथयात्रा के दिन --> देहांत हो गया --> उनका +{a} अल्पायु [में] --> property --> 47 वर्ष [की] +================================================================================================================================================================================== +sent_id:109 इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +------ Cluster 1 ------ +इसे --> कहा जाता है --> पाण्सिल्क [भी] +यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] +================================================================================================================================================================================== +sent_id:110 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +------ Cluster 1 ------ +वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक +जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप +================================================================================================================================================================================== +sent_id:111 मॉस से मिट्टी में जल रोक रखा जाता है . +------ Cluster 1 ------ +मॉस से --> जल रोक रखा जाता है --> मिट्टी में +------ Cluster 2 ------ +मॉस से --> रोक रखा जाता है --> जल +मिट्टी में --> रोक रखा जाता है --> जल +================================================================================================================================================================================== +sent_id:112 महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +------ Cluster 1 ------ +महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का +{a} वर्तमान रूप --> property --> महाभारत का diff --git a/GSoC25_H/ReAct/llm_interface.py b/GSoC25_H/ReAct/llm_interface.py new file mode 100644 index 0000000..1dca008 --- /dev/null +++ b/GSoC25_H/ReAct/llm_interface.py @@ -0,0 +1,40 @@ +import ollama +import json +import time +from typing import List, Dict, Any + +from config import ModelConfig + +class LLMInterface: + """Interface for interacting with the language model via Ollama.""" + def __init__(self, model_config: ModelConfig, max_retries: int = 1, timeout: int = 60): + self.model_config = model_config + self.max_retries = max_retries + self.client = ollama.Client(timeout=timeout) + + def generate_response(self, messages: List[Dict[str, Any]]) -> Dict[str, Any]: + """ + Generates a response from the LLM, with retries for handling errors. + Now sends a standard chat request without the 'tools' parameter. + """ + retries = 0 + while retries < self.max_retries: + try: + response = self.client.chat( + model=self.model_config.name, + messages=messages, + options={ + "temperature": self.model_config.temperature, + "top_p": self.model_config.top_p, + } + ) + return response + + except Exception as e: + retries += 1 + print(f"Error calling model '{self.model_config.name}': {e}. Retrying ({retries}/{self.max_retries})...") + time.sleep(2 ** retries) + + print(f"Failed to get a valid response from model '{self.model_config.name}' after {self.max_retries} retries.") + return None + diff --git a/GSoC25_H/ReAct/prompt_factory.py b/GSoC25_H/ReAct/prompt_factory.py new file mode 100644 index 0000000..d3e4987 --- /dev/null +++ b/GSoC25_H/ReAct/prompt_factory.py @@ -0,0 +1,119 @@ +from abc import ABC, abstractmethod +from typing import List, Dict, Any + +from config import Config, ToolConfig + + +class BasePromptStrategy(ABC): + """Base class for a ReAct prompt strategy.""" + def __init__(self, strategy_config): + self.name = strategy_config.name + self.description = strategy_config.description + self.tool_names = strategy_config.tool_names + + @abstractmethod + def create_prompt(self, sentence: str, tools: List[ToolConfig]) -> List[Dict[str, Any]]: + """Creates the full prompt messages for the LLM.""" + pass + + +class ReactCoTWithEvidence(BasePromptStrategy): + """A ReAct based strategy that uses the model's native tool-calling feature.""" + def create_prompt(self, sentence: str, tools: List[ToolConfig]) -> List[Dict[str, Any]]: + system_prompt = """You are an expert AI for extracting information from Hindi text. Your task is to first reason step-by-step and then call a function with all extracted relation triplets. + +**PRIMARY INSTRUCTION:** +First, provide your step-by-step reasoning. After your reasoning is complete, you MUST call the `extract_relation` function by providing a single, clean JSON object containing all the triplets you found. + +**REASONING PROCESS:** +For each relation you find in the sentence, follow this thinking process: +1. **Subject:** Identify the subject. +2. **Evidence for Subject:** Quote the exact words from the sentence. +3. **Relation:** Identify the relation. +4. **Evidence for Relation:** Quote the exact words. +5. **Object:** Identify the object. +6. **Evidence for Object:** Quote the exact words. +7. **Constructed Triplet:** Assemble the `(Subject, Relation, Object)` triplet. + +**FUNCTION CALL FORMAT:** +After your reasoning, provide the JSON object in this exact format. Do not add any text after the JSON object. + +{ + "name": "extract_relation", + "parameters": { + "triplets": [ + {"subject": "...", "relation": "...", "object": "..."} + ] + } +} + +**EXAMPLE RESPONSE:** + +**वाक्य:** भारतीय टीम ने फाइनल मैच में ऑस्ट्रेलिया को हराकर विश्व कप जीता। + +**तर्क-वितर्क (Reasoning):** +* **संबंध 1:** + 1. **विषय:** भारतीय टीम ने + 2. **सबूत:** "भारतीय टीम ने" + 3. **संबंध:** हराकर + 4. **सबूत:** "हराकर" + 5. **कर्म:** ऑस्ट्रेलिया को + 6. **सबूत:** "ऑस्ट्रेलिया को" + 7. **अंतिम त्रिपद:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को) +* **संबंध 2:** + 1. **विषय:** भारतीय टीम ने + 2. **सबूत:** "भारतीय टीम ने" + 3. **संबंध:** जीता + 4. **सबूत:** "जीता" + 5. **कर्म:** विश्व कप + 6. **सबूत:** "विश्व कप" + 7. **अंतिम त्रिपद:** (भारतीय टीम ने, जीता, विश्व कप) + +{ + "name": "extract_relation", + "parameters": { + "triplets": [ + { + "subject": "भारतीय टीम ने", + "relation": "हराकर", + "object": "ऑस्ट्रेलिया को" + }, + { + "subject": "भारतीय टीम ने", + "relation": "जीता", + "object": "विश्व कप" + } + ] + } +} + +If you cannot find any relations, simply respond with a message explaining why. Do not call the function. +""" + messages=[ + {"role": "system", "content": system_prompt}, + {"role": "user", "content": f"**वाक्य:** {sentence}"} + ] + return messages + +class PromptFactory: + """Factory for creating prompts based on a selected strategy.""" + def __init__(self, config: Config): + self.config = config + self._strategies = { + "react_cot_with_evidence": ReactCoTWithEvidence + } + + def create_prompt(self, strategy_name: str, sentence: str) -> List[Dict[str, Any]]: + """ + Creates a prompt for a given strategy and sentence. + Returns the list of messages for the API call. + """ + if strategy_name not in self._strategies: + raise ValueError(f"Strategy '{strategy_name}' not supported.") + + strategy_config = self.config.get_prompt_strategy(strategy_name) + strategy = self._strategies[strategy_name](strategy_config) + + tools = [self.config.get_tool(t_name) for t_name in strategy.tool_names] + + return strategy.create_prompt(sentence, tools) \ No newline at end of file diff --git a/GSoC25_H/assets/demo1.png b/GSoC25_H/assets/demo1.png new file mode 100644 index 0000000..b427208 Binary files /dev/null and b/GSoC25_H/assets/demo1.png differ diff --git a/GSoC25_H/assets/demo2.png b/GSoC25_H/assets/demo2.png new file mode 100644 index 0000000..9b50fde Binary files /dev/null and b/GSoC25_H/assets/demo2.png differ diff --git a/GSoC25_H/assets/demo3.png b/GSoC25_H/assets/demo3.png new file mode 100644 index 0000000..5f2e81c Binary files /dev/null and b/GSoC25_H/assets/demo3.png differ diff --git a/GSoC25_H/assets/demo4.png b/GSoC25_H/assets/demo4.png new file mode 100644 index 0000000..5bc4d37 Binary files /dev/null and b/GSoC25_H/assets/demo4.png differ diff --git a/GSoC25_H/assets/demo5.png b/GSoC25_H/assets/demo5.png new file mode 100644 index 0000000..b5248a5 Binary files /dev/null and b/GSoC25_H/assets/demo5.png differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-anchor-text.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-anchor-text.ttl.bz2 new file mode 100644 index 0000000..a481463 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-anchor-text.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-commons-page-links.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-commons-page-links.ttl.bz2 new file mode 100644 index 0000000..2104b09 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-commons-page-links.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-disambiguations.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-disambiguations.ttl.bz2 new file mode 100644 index 0000000..62ef372 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-disambiguations.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2 new file mode 100644 index 0000000..661907c Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-homepages.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-homepages.ttl.bz2 new file mode 100644 index 0000000..7721cd6 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-homepages.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-images.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-images.ttl.bz2 new file mode 100644 index 0000000..8b49157 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-images.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types-transitive.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types-transitive.ttl.bz2 new file mode 100644 index 0000000..646a86c Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types-transitive.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types.ttl.bz2 new file mode 100644 index 0000000..6b67d44 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-instance-types.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-literals.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-literals.ttl.bz2 new file mode 100644 index 0000000..e48b31f Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-literals.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2 new file mode 100644 index 0000000..828de28 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-redirects.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-redirects.ttl.bz2 new file mode 100644 index 0000000..dd5cd84 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-redirects.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-specific-mappingbased-properties.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-specific-mappingbased-properties.ttl.bz2 new file mode 100644 index 0000000..9b90445 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-specific-mappingbased-properties.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/data/hiwiki-20250601-topical-concepts.ttl.bz2 b/GSoC25_H/link_prediction/data/hiwiki-20250601-topical-concepts.ttl.bz2 new file mode 100644 index 0000000..92ff292 Binary files /dev/null and b/GSoC25_H/link_prediction/data/hiwiki-20250601-topical-concepts.ttl.bz2 differ diff --git a/GSoC25_H/link_prediction/hiwiki-analysis.ipynb b/GSoC25_H/link_prediction/hiwiki-analysis.ipynb new file mode 100644 index 0000000..09c6629 --- /dev/null +++ b/GSoC25_H/link_prediction/hiwiki-analysis.ipynb @@ -0,0 +1,1646 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 38, + "id": "3aec8902-9dab-4d32-97bf-62e9dcbb734b", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import bz2\n", + "import pandas as pd\n", + "import numpy as np\n", + "import rdflib\n", + "from rdflib import Graph, URIRef, Literal, Namespace\n", + "from collections import Counter\n", + "import urllib.parse\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "f1454026-ad5f-474f-9737-75cf3b7cc113", + "metadata": {}, + "outputs": [], + "source": [ + "ttl_files = [\n", + " \"data/hiwiki-20250601-anchor-text.ttl.bz2\",\n", + " \"data/hiwiki-20250601-commons-page-links.ttl.bz2\", \n", + " \"data/hiwiki-20250601-disambiguations.ttl.bz2\",\n", + " \"data/hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2\",\n", + " \"data/hiwiki-20250601-homepages.ttl.bz2\",\n", + " \"data/hiwiki-20250601-images.ttl.bz2\",\n", + " \"data/hiwiki-20250601-instance-types-transitive.ttl.bz2\",\n", + " \"data/hiwiki-20250601-instance-types.ttl.bz2\",\n", + " \"data/hiwiki-20250601-mappingbased-literals.ttl.bz2\",\n", + " \"data/hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2\",\n", + " \"data/hiwiki-20250601-redirects.ttl.bz2\",\n", + " \"data/hiwiki-20250601-specific-mappingbased-properties.ttl.bz2\",\n", + " \"data/hiwiki-20250601-topical-concepts.ttl.bz2\"\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "48bffc90-f812-49af-9b30-950dfd6997cc", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-anchor-text.ttl.bz2...\n", + "Parsing hiwiki-20250601-commons-page-links.ttl.bz2...\n", + "Parsing hiwiki-20250601-disambiguations.ttl.bz2...\n", + "Parsing hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2...\n", + "Parsing hiwiki-20250601-homepages.ttl.bz2...\n", + "Parsing hiwiki-20250601-images.ttl.bz2...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-instance-types-transitive.ttl.bz2...\n", + "Parsing hiwiki-20250601-instance-types.ttl.bz2...\n", + "Parsing hiwiki-20250601-mappingbased-literals.ttl.bz2...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0753-04-21'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -4 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0100-07-12'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -100 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0044-03-15'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -44 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -1810 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -1750 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -460 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -370 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -309 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -10 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -276 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -194 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -598 is out of range\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2...\n", + "Parsing hiwiki-20250601-redirects.ttl.bz2...\n", + "Parsing hiwiki-20250601-specific-mappingbased-properties.ttl.bz2...\n", + "Parsing hiwiki-20250601-topical-concepts.ttl.bz2...\n", + "total: 2039012 triples\n" + ] + } + ], + "source": [ + "all_triples = []\n", + "for file_path in ttl_files:\n", + " print(f\"Parsing {os.path.basename(file_path)}...\")\n", + " \n", + " try:\n", + " with bz2.open(file_path, 'rt', encoding='utf-8') as f:\n", + " g = Graph()\n", + " try:\n", + " g.parse(f, format='turtle')\n", + " except (ParserError, Exception) as e:\n", + " print(f\" WARNING: Could not parse {os.path.basename(file_path)}. Error: {e}\")\n", + " continue\n", + "\n", + " for s, p, o in g:\n", + " # clean subject and predicate which are always URIs\n", + " # cleaning for this warning mostly: \n", + " # http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg \n", + " # does not look like a valid URI, trying to serialize this will break.\n", + " s_clean = str(s).replace('\\n', '').replace('\\r', '').strip() \n", + " p_clean = str(p).replace('\\n', '').replace('\\r', '').strip()\n", + "\n", + " if isinstance(o, URIRef):\n", + " o_clean = str(o).replace('\\n', '').replace('\\r', '').strip() \n", + " all_triples.append((s_clean, p_clean, o_clean))\n", + " \n", + " elif isinstance(o, Literal):\n", + " # not including literals because it doesn't make sense to learn attributes like date of birth rather we want\n", + " # to learn symbolic links between 2 entities\n", + " # also theres a lot of issues with this one while parsing the graph like this:\n", + " # \n", + " continue\n", + " # print(f\"literal: {o}\")\n", + " # o_clean = str(o.value) \n", + " # all_triples.append((s_clean, p_clean, o_clean))\n", + "\n", + " except Exception as e:\n", + " print(f\"Error processing file {file_path}: {e}\")\n", + "\n", + "print(f\"total: {len(all_triples)} triples\")" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "f1574793-b084-4a45-8a8d-f214a9b6683a", + "metadata": {}, + "outputs": [], + "source": [ + "# filter out disambiguation triplets\n", + "core_triples = [\n", + " t for t in all_triples \n", + " if 'http://www.w3.org/2002/07/owl#sameAs' not in t[1] and 'http://dbpedia.org/ontology/wikiPageDisambiguates' not in t[1] and t[1].startswith('http://dbpedia.org/ontology/')\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "5d30f221-11d0-4ba4-8e23-0deb9f7532e2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1. http://dbpedia.org/ontology/language | Count: 108087\n", + "2. http://dbpedia.org/ontology/thumbnail | Count: 78098\n", + "3. http://dbpedia.org/ontology/wikiPageRedirects | Count: 77046\n", + "4. http://dbpedia.org/ontology/subdivision | Count: 49789\n", + "5. http://dbpedia.org/ontology/starring | Count: 32077\n", + "6. http://dbpedia.org/ontology/state | Count: 28398\n", + "7. http://dbpedia.org/ontology/district | Count: 25201\n", + "8. http://dbpedia.org/ontology/country | Count: 19176\n", + "9. http://dbpedia.org/ontology/birthPlace | Count: 14088\n", + "10. http://dbpedia.org/ontology/timeZone | Count: 11205\n", + "11. http://dbpedia.org/ontology/occupation | Count: 8277\n", + "12. http://dbpedia.org/ontology/termPeriod | Count: 7609\n", + "13. http://dbpedia.org/ontology/nationality | Count: 4206\n", + "14. http://dbpedia.org/ontology/deathPlace | Count: 3509\n", + "15. http://dbpedia.org/ontology/director | Count: 3279\n", + "16. http://dbpedia.org/ontology/politicalLeader | Count: 3214\n", + "17. http://dbpedia.org/ontology/producer | Count: 3178\n", + "18. http://dbpedia.org/ontology/type | Count: 3151\n", + "19. http://dbpedia.org/ontology/location | Count: 2707\n", + "20. http://dbpedia.org/ontology/musicBy | Count: 2702\n", + "21. http://dbpedia.org/ontology/genre | Count: 2500\n", + "22. http://dbpedia.org/ontology/writer | Count: 2422\n", + "23. http://dbpedia.org/ontology/residence | Count: 2312\n", + "24. http://dbpedia.org/ontology/predecessor | Count: 2269\n", + "25. http://dbpedia.org/ontology/party | Count: 2154\n", + "26. http://dbpedia.org/ontology/almaMater | Count: 2129\n", + "27. http://dbpedia.org/ontology/successor | Count: 1824\n", + "28. http://dbpedia.org/ontology/distributor | Count: 1626\n", + "29. http://dbpedia.org/ontology/author | Count: 1396\n", + "30. http://dbpedia.org/ontology/network | Count: 1372\n" + ] + } + ], + "source": [ + "relation_counts = Counter(t[1] for t in core_triples)\n", + "\n", + "for i, (relation, count) in enumerate(relation_counts.most_common(30)):\n", + " print(f\"{i+1}. {relation:<30} | Count: {count}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "dbd294dd-b072-4037-9706-0356b86d7ca8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1. http://dbpedia.org/ontology/academicAdvisor | Count: 21\n", + "2. http://dbpedia.org/ontology/alongside | Count: 20\n", + "3. http://dbpedia.org/ontology/honours | Count: 19\n", + "4. http://dbpedia.org/ontology/recordedIn | Count: 17\n", + "5. http://dbpedia.org/ontology/architect | Count: 16\n", + "6. http://dbpedia.org/ontology/nonFictionSubject | Count: 16\n", + "7. http://dbpedia.org/ontology/administrativeCenter | Count: 15\n", + "8. http://dbpedia.org/ontology/viceChancellor | Count: 13\n", + "9. http://dbpedia.org/ontology/restingPlacePosition | Count: 11\n", + "10. http://dbpedia.org/ontology/minister | Count: 11\n", + "11. http://dbpedia.org/ontology/creatorOfDish | Count: 10\n", + "12. http://dbpedia.org/ontology/athletics | Count: 9\n", + "13. http://dbpedia.org/ontology/opponent | Count: 9\n", + "14. http://dbpedia.org/ontology/translator | Count: 9\n", + "15. http://dbpedia.org/ontology/coverArtist | Count: 8\n", + "16. http://dbpedia.org/ontology/province | Count: 7\n", + "17. http://dbpedia.org/ontology/manager | Count: 7\n", + "18. http://dbpedia.org/ontology/sport | Count: 7\n", + "19. http://dbpedia.org/ontology/endingTheme | Count: 6\n", + "20. http://dbpedia.org/ontology/head | Count: 6\n", + "21. http://dbpedia.org/ontology/mother | Count: 5\n", + "22. http://dbpedia.org/ontology/chairman | Count: 5\n", + "23. http://dbpedia.org/ontology/ceo | Count: 5\n", + "24. http://dbpedia.org/ontology/county | Count: 4\n", + "25. http://dbpedia.org/ontology/rector | Count: 3\n", + "26. http://dbpedia.org/ontology/lieutenant | Count: 3\n", + "27. http://dbpedia.org/ontology/provost | Count: 2\n", + "28. http://dbpedia.org/ontology/principal | Count: 2\n", + "29. http://dbpedia.org/ontology/taoiseach | Count: 2\n", + "30. http://dbpedia.org/ontology/bodyDiscovered | Count: 1\n" + ] + } + ], + "source": [ + "least_common = relation_counts.most_common()[-30:]\n", + "for i, (relation, count) in enumerate(least_common):\n", + " print(f\"{i+1}. {relation:<30} | Count: {count}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "10f9da1b-3f50-44c4-af48-c85e7f684769", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Total unique entities found in core_triples: 304395\n" + ] + } + ], + "source": [ + "# Analyze Entity Degree (Connectivity)\n", + "\n", + "entity_degrees = Counter()\n", + "for head, relation, tail in core_triples:\n", + " entity_degrees[head] += 1\n", + " entity_degrees[tail] += 1\n", + "\n", + "print(f\"\\nTotal unique entities found in core_triples: {len(entity_degrees)}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "9b728ca3-a07a-46f2-bb96-cd32be5a15e6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "count 304395.000000\n", + "mean 3.575361\n", + "std 84.226941\n", + "min 1.000000\n", + "25% 1.000000\n", + "50% 1.000000\n", + "75% 3.000000\n", + "max 28392.000000\n", + "Name: degree, dtype: float64\n" + ] + } + ], + "source": [ + "degree_df = pd.DataFrame(entity_degrees.values(), columns=['degree'])\n", + "print(degree_df['degree'].describe())" + ] + }, + { + "cell_type": "markdown", + "id": "5ea3ff8c-f22c-40ed-8ae4-bf11184015a3", + "metadata": {}, + "source": [ + "### metadata and structural noise we can remove\n", + "wikiPageRedirects (77046 count): This is not a semantic relationship. It's a structural artifact from Wikipedia that says \"this page is a redirect to another\". Keeping this will teach the model that many things are simply equivalent, which is not useful for predicting new facts. we can remove this safely. \n", + "\n", + "\n", + "thumbnail (78098 count): This links an entity to its image URL. It has zero semantic value for predicting relationships like (Person, birthPlace, City). It's just noise\n", + "\n", + "\n", + "mainArticleForCategory (606 count): This is another structural link between a category page and its main article. Not a semantic fact. Remove.\n", + "\n", + "language(108087 count): This almost always links an entity to a language entity (dbr:Hindi_language). technically it is semantic but it can create a massive, uninformative hub around the Hindi_language entity, biasing our model.\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "416e3a82-0111-41a7-a614-41ef42aa81ac", + "metadata": {}, + "source": [ + "\n", + "### high-frequency but potentially noisy relations\n", + "language (#2, 13,838 count): This links entities (like movies, books, people) to their language (e.g., http://dbpedia.org/resource/Hindi). This creates a massive \"hub\" where the \"Hindi\" entity is connected to thousands of things. While technically a fact, it doesn't help in predicting diverse relationships and can skew the model. We want to predict things about India, not that India's language is Hindi. For a more focused KGC task, it's best to remove this.\n", + "\n", + "\n", + "timeZone (#10, 1,418 count): Similar to language, this connects many locations to a few timezone entities (like \"Asia/Kolkata\"). This is also a candidate for removal to improve focus.\n" + ] + }, + { + "cell_type": "markdown", + "id": "b9167089-6af0-4b85-9a95-3215e744f85a", + "metadata": {}, + "source": [ + "\n", + "\n", + "### semantic core relations we shold keep\n", + "starring, occupation, nationality, director, subdivision, state, district, country, birthPlace, deathPlace, location, residence. These are the facts we want to model.\n", + "starring, producer, director, writer, musicBy, genre: forms a strong sub-graph about media and films.\n", + "occupation, politician, party, almaMater: Great biographical and political relations.\n", + "All the others in the top 30 are generally good semantic relationships.\n", + "\n", + "### rare relations \n", + "generally model can't learn from sprase relations which only show up a couple of times. relations like Relations like bodyDiscovered (1), taoiseach (2), or mother (5) are too sparse.\n", + "My plan is to set a threshold and remove any relation that appears fewer than 50 or 100 times. While we lose some specific facts, we can create a denser, more learnable graph for the model.\n" + ] + }, + { + "cell_type": "markdown", + "id": "34ebe68a-edc7-406a-83ef-a277a0a8de3e", + "metadata": {}, + "source": [ + "## Entity Degree / connectivity analysis\n", + "\n", + "count: 304395: we have ~305k unique entities in this core_triples set.\n", + "mean: 3.57: The average entity is connected to 3-4 other things. quite low..sparse graph. \n", + "std: 84.22: degrees are not distributed evenly at all. some entities have a lot more connections than the avg. \n", + "\n", + "50% (median): 1.0: This is the most critical statistic. It means at least 50% of your entities have only ONE connection! These are \"leaf\" nodes. The model has no context for these entities and cannot learn a meaningful vector for them. They are pure noise for the training process.\n", + "\n", + "\n", + "max: 50000: This shows a massive \"hub\" entity, which is almost certainly the entity http://dbpedia.org/ontology/wikiPageRedirects is pointing to.\n", + "\n", + "\n", + "The Histogram: The \"Zoomed-in View\" plot confirms this visually. There is a gigantic bar at Degree = 1 with over 200,000 entities. This is the \"long tail\" of very sparsely connected nodes that we must prune.\n", + "\n", + "\n", + "The structure is dominated by a small number of massive \"hubs\" that connect to everything, while the vast majority of entities are on the periphery with very few connections.\n", + "\n", + "### The Strategy: Pruning the Graph\n", + "Based on this analysis, my strategy is to perform a two-step pruning process to create a smaller, denser, and more semantically coherent graph.\n", + "\n", + "Semantic Filtering: We will remove the relations from Category A and B using a \"blacklist\".\n", + "\n", + "\n", + "Frequency Pruning (K-Core Pruning): We will remove all relations that appear too infrequently and all entities that are not connected enough times.\n", + "\n", + "when we split into train/val/test sets we should make sure that entities in our val/test also appear in train set. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a3fd9537-d37c-41d9-90ef-4f2ea1748731", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "abb1172c-1217-44d8-a17a-2a5e78d7f2ce", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "GSoC25 Main", + "language": "python", + "name": "gsoc25_main" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/GSoC25_H/link_prediction/link_prediction.ipynb b/GSoC25_H/link_prediction/link_prediction.ipynb new file mode 100644 index 0000000..091ff4d --- /dev/null +++ b/GSoC25_H/link_prediction/link_prediction.ipynb @@ -0,0 +1,8848 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "3aec8902-9dab-4d32-97bf-62e9dcbb734b", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import bz2\n", + "import pandas as pd\n", + "import numpy as np\n", + "import rdflib\n", + "from rdflib import Graph, URIRef, Literal, Namespace\n", + "from collections import Counter\n", + "import urllib.parse\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "\n", + "import pykeen\n", + "from pykeen.datasets import Dataset\n", + "from pykeen.models import ConvE, DistMult\n", + "from pykeen.training import training_loop\n", + "from pykeen.triples import TriplesFactory\n", + "from pykeen.pipeline import pipeline\n", + "from pykeen.predict import predict_target\n", + "\n", + "from sklearn.model_selection import train_test_split" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "f1454026-ad5f-474f-9737-75cf3b7cc113", + "metadata": {}, + "outputs": [], + "source": [ + "ttl_files = [\n", + " \"data/hiwiki-20250601-anchor-text.ttl.bz2\",\n", + " \"data/hiwiki-20250601-commons-page-links.ttl.bz2\", \n", + " \"data/hiwiki-20250601-disambiguations.ttl.bz2\",\n", + " \"data/hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2\",\n", + " \"data/hiwiki-20250601-homepages.ttl.bz2\",\n", + " \"data/hiwiki-20250601-images.ttl.bz2\",\n", + " \"data/hiwiki-20250601-instance-types-transitive.ttl.bz2\",\n", + " \"data/hiwiki-20250601-instance-types.ttl.bz2\",\n", + " \"data/hiwiki-20250601-mappingbased-literals.ttl.bz2\",\n", + " \"data/hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2\",\n", + " \"data/hiwiki-20250601-redirects.ttl.bz2\",\n", + " \"data/hiwiki-20250601-specific-mappingbased-properties.ttl.bz2\",\n", + " \"data/hiwiki-20250601-topical-concepts.ttl.bz2\"\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "48bffc90-f812-49af-9b30-950dfd6997cc", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-anchor-text.ttl.bz2...\n", + "Parsing hiwiki-20250601-commons-page-links.ttl.bz2...\n", + "Parsing hiwiki-20250601-disambiguations.ttl.bz2...\n", + "Parsing hiwiki-20250601-geo-coordinates-mappingbased.ttl.bz2...\n", + "Parsing hiwiki-20250601-homepages.ttl.bz2...\n", + "Parsing hiwiki-20250601-images.ttl.bz2...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhutan-Paro-Stadt-06-Zentrum-2015-gje.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Rotes_Rathaus_June_2023_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Rotes_Rathaus_June_2023_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_tower_9-11_edit.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_tower_9-11_edit.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudabkkholidayinn0609.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudabkkholidayinn0609.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGarudawsuthat0107.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGarudawsuthat0107.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGalèneJoplinII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGalèneJoplinII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCassiterite2bis.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCassiterite2bis.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFluoriteBoltsburn.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFluoriteBoltsburn.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCalcitefillols.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCalcitefillols.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nColemaniteUSGOV.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nColemaniteUSGOV.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChalcanthitefranceII.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChalcanthitefranceII.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLegranditeMexique.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLegranditeMexique.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n(Muzo)_Emerald_crystal_in_its_matrix.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMELLITE_Taillée_Hongrie.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMELLITE_Taillée_Hongrie.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Chaukhandi_Necropolis_near_Karachi_asv2020-02_img09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img11_Clifton_Beach.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img17_Mohatta_Palace.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img41_StPatrick_Cathedral.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPK_Karachi_asv2020-02_img62_Frere_Hall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nFishingshipsatKarachiHarbour.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nFishingshipsatKarachiHarbour.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri_di_biciclette_-_immagine_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri_di_biciclette_-_immagine_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette-pioggia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette-pioggia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette_folla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette_folla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLadri-biciclette.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLadri-biciclette.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Sagittarius_-_Horoscope_from_%27The_book_of_birth_of_Iskandar\\\"_Wellcome_L0040138.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMezquita_de_Nasirolmolk,_Shiraz,_Irán,_2016-09-24,_DD_66-68_HDR.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGhavam_Garden,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGhavam_Garden,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShahpouri-House-in-Shiraz-Persia-Photo-by-Hossein-Amini.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLuna_Park,_Shiraz.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLuna_Park,_Shiraz.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPasargad232-edit.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPasargad232-edit.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTombs_of_Artaxerxes_I_and_Darius_I,_with_Sassanid-era_bas-reliefs_below_-_Naqsh-e_Rustam,_Iran.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBishapur_(Iran)_Sassanid_Period_2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBishapur_(Iran)_Sassanid_Period_2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMargoon_Waterfall_-_panoramio.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMargoon_Waterfall_-_panoramio.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSüdindischer_Meister_um_850_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSüdindischer_Meister_um_850_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSittanavasal_Jain_Statue_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSittanavasal_Jain_Statue_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nDream_of_Queen_Maya_-_Medallion_-_2nd_Century_BCE_-_Red_Sandstone_-_Bharhut_Stupa_Railing_Pillar_-_Madhya_Pradesh_-_Indian_Museum_-_Kolkata_2012-11-16_1834.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nYakshi_on_elephant.Bharhut.Bharat_Kala_Bhavan.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCunninghamBharhut.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCunninghamBharhut.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBharutRelief.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBharutRelief.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nd_main.0.0.0x0.360x411.jpeg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nd_main.0.0.0x0.360x411.jpeg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_Glories_by_Kiitsu_Suzuki,_early_19ty_century.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nClaudeLorraine.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nClaudeLorraine.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSkyscrapers_connaught_place_New_Delhi.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSkyscrapers_connaught_place_New_Delhi.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKolkata_City_skyline_from_Hoogly_bridge.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKolkata_City_skyline_from_Hoogly_bridge.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChennai_Skyline.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChennai_Skyline.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nUB_City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nUB_City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMindSpace_campus_in_Hyderabad,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMindSpace_campus_in_Hyderabad,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAmdavad_Aerial.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAmdavad_Aerial.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPune-City.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPune-City.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGauravPath1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGauravPath1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHawaMahal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHawaMahal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n_International_Criminal_Court_logo.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n_International_Criminal_Court_logo.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBarcelona_Cathedral_Interior_-_Altarpiece_of_our_Lady_of_the_Rosebush_-_Agusti_Pujol_1617-1629.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMika_singh_iifa_press_conference.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMika_singh_iifa_press_conference.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nShaan_at_Music_Mania_2013.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nShaan_at_Music_Mania_2013.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSunidhi_Chauhan_02.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSunidhi_Chauhan_02.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIIM_Ahmedabad.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIIM_Ahmedabad.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nStarling,_Mohali_,Punjab,_India.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nStarling,_Mohali_,Punjab,_India.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTwo-toed_anteater_balanced_on_a_stick.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTwo-toed_anteater_balanced_on_a_stick.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMyrmecophaga_tridactyla_-_Phoenix_Zoo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n2014_Cape_Verde._Sal._Baywatch.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n2014_Cape_Verde._Sal._Baywatch.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParallel_steps_-_Navy_Guards_replacing_the_Older_Ones_at_Mazar-e-Quaid_during_Pakistan's_Independence_Day.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_El_paso_del_Mar_rojo_Studiolo.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_001.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_001.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSanti_di_Tito_-_The_Annunciation_-_Walters_371677.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nOgnissanti,_Santi_di_Tito,_Sacra_covesazione.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBhanwari-devi-folk-singer.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBhanwari-devi-folk-singer.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBayon_Angkor_frontal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBayon_Angkor_frontal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBakong_-_Central_Shrine_(4192579495).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBakong_-_Central_Shrine_(4192579495).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge_Banteay_Kdei_Temple.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge_Banteay_Kdei_Temple.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCambodge-BanteaySamré2.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCambodge-BanteaySamré2.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nBanteay_Srei_66.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nBanteay_Srei_66.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLe_Baphuon_(Angkor)_(6832283873).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLe_Baphuon_(Angkor)_(6832283873).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nChao_Say_Tevoda.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nChao_Say_Tevoda.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nKrol_Ko_(5984979200).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nKrol_Ko_(5984979200).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nLolei1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nLolei1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEastmebon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEastmebon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhimeanakas,_Angkor_Thom,_Camboya,_2013-08-16,_DD_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Phnom_Bakheng.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Phnom_Bakheng.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPhnom_Krom_007.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPhnom_Krom_007.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Kraven_(4190503758).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Kraven_(4190503758).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrasat_Suor_Prat_2014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrasat_Suor_Prat_2014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPrè_Rup_(Angkor)_(6953384297).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPrè_Rup_(Angkor)_(6953384297).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRoulos_Group_-_003_Preah_Ko_(8588894346).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSpeanthmasmall.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSpeanthmasmall.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSrah_Srang_-_Vasters_0346_(6597699179).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTaprohmfacetower01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTaprohmfacetower01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Som,_Angkor,_Camboya,_2013-08-17,_DD_14.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTa_Keo,_Angkor,_Camboya,_2013-08-16,_DD_09.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nThommanon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nThommanon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nTerraza_de_los_Elefantes,_Angkor_Thom,_Camboya,_2013-08-16,_DD_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nAngkor_Thom_Terrasse_des_Lepra-Königs_03.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWest_Mebon_0014.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWest_Mebon_0014.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParol_Himalayan_Village_gate.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParol_Himalayan_Village_gate.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nPillar_outside_Trible_Museum_Bhopal.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nPillar_outside_Trible_Museum_Bhopal.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nMahant_Ghasidas_Sangrahalaya_Raipur_(1).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nएक_अन्य_मुख्य_रैनसमवेयर_ट्रोजन_है,_जो_विंडोज_आधारित_उपकरण_को_अपना_शिकार_बनाता_है।_यह_पहली_बार_2014_में_दिखा_था।_इसे_जेडो_विज्ञापन_नेटवर्क_के_द्वारा_सितम्बर_2014_के_अंत_के_आसपास_ही_कई_बड़े_वेबसाइट_में_दिखाया_गया_था।_कोई_भी_विज्ञापन_में_क्लिक_करता_था_तो_वह_उसे_एक_वेबसाइट_में_ले_जाता_था,_जो_ब्राउज़र_के_प्लगइन_का_उपयोग_डाउनलोड_करने_के_लिए_करता_था।_इस_पर_अनुसंधान_कर_रहे_बराकुडा_नेटवर्क_के_अनुसार_इसमें_डिजिटल_हस्ताक्षर_भी_होता_था,_जिसके_कारण_सुरक्षा_सॉफ्टवेयर_इसे_ठीक_मानते_थे।_क्रिप्टोवाल_3.0_जावास्क्रिप्ट_में_लिखा_होता_है,_जो_ईमेल_में_फ़ाइल_के_रूप_में_भेजा_जाता_है।_यह_.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nVictoria_Memorial,_Calcutta_-_LIFE.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nWriters_Building.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nWriters_Building.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRuplal_House_old.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRuplal_House_old.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nCompleted_Bridge._(23126065986).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nCompleted_Bridge._(23126065986).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nInside_The_Viceregal_Lodge,_Shimla.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nInside_The_Viceregal_Lodge,_Shimla.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n20150107_Kiltan_seen_from_south.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n20150107_Kiltan_seen_from_south.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nकुणाल_बहल_-_एसबीआई-स्नैपडील_एमओयू_हस्ताक्षर_समारोह_-_कोलकाता_2015-05-21_0657.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nView_beyond_words.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nView_beyond_words.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nजॉन_स्टैफ़ोर्ड_स्मिथ_(बपतिस्मा।_30_मार्च_1750_-_21_सितंबर_1836)_एक_अंग्रेजी_संगीतकार,_चर्च_के_आयोजक_और_प्रारंभिक_संगीतज्ञ_थे।_वह_जोहान_सेबेस्टियन_बाख_द्वारा_कार्यों_की_पांडुलिपियों_के_पहले_गंभीर_संग्रहकर्ताओं_में_से_एक_थे।_जॉन_स्टैफ़ोर्ड_स्मिथ_Stafford_Smith.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSculpted_Frieze_ruins_on_Jaggayyapeta_Buddhist_stupa_01.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nParasuramesvara_Temple_05.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nParasuramesvara_Temple_05.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/Royal Banner of Arag%C3%B3n.svg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:Royal Banner of Arag%C3%B3n.svg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nIrpin_stadion_1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nIrpin_stadion_1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\n.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\n.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Sugar_Moon.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Sugar_Moon.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRose.A.Mailend1.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRose.A.Mailend1.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJulia-child-rose.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJulia-child-rose.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nEdelrose_Schloss_Ippenburg_2010.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nEdelrose_Schloss_Ippenburg_2010.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nHybrid_Tea_-_Fragrant_Cloud_3_(crop).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nJust_Joey_(4287071889).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nJust_Joey_(4287071889).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_Anneliese_Rothenberger.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_Anneliese_Rothenberger.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_%27Double_Delight%27_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_%27Double_Delight%27_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nRosa_alpine_Sunset_-_Gran_Breta%C3%B1a_1975_(11982347785)_(cropped).jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nGray90.png?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nGray90.png does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n", + "http://commons.wikimedia.org/wiki/Special:FilePath/\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg?width=300 does not look like a valid URI, trying to serialize this will break.\n", + "http://hi.wikipedia.org/wiki/चित्र:\\nSouth_Korea_President_Yoon_Suk_Yeol_portrait.jpg does not look like a valid URI, trying to serialize this will break.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-instance-types-transitive.ttl.bz2...\n", + "Parsing hiwiki-20250601-instance-types.ttl.bz2...\n", + "Parsing hiwiki-20250601-mappingbased-literals.ttl.bz2...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0753-04-21'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -4 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0100-07-12'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -100 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#date, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 593, in parse_xsd_date\n", + " return parse_date(date_string if not minus else (\"-\" + date_string))\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/isodate/isodates.py\", line 193, in parse_date\n", + " raise ISO8601Error(\"Unrecognised ISO 8601 date format: %r\" % datestring)\n", + "isodate.isoerror.ISO8601Error: Unrecognised ISO 8601 date format: '-0044-03-15'\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -44 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -1810 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -1750 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -460 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -370 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -309 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -10 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -276 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -194 is out of range\n", + "Failed to convert Literal lexical form to value. Datatype=http://www.w3.org/2001/XMLSchema#gYear, Converter=\n", + "Traceback (most recent call last):\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/term.py\", line 2163, in _castLexicalToPython\n", + " return conv_func(lexical) # type: ignore[arg-type]\n", + " File \"/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/rdflib/xsd_datetime.py\", line 624, in parse_xsd_gyear\n", + " return date(y, 1, 1)\n", + "ValueError: year -598 is out of range\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parsing hiwiki-20250601-mappingbased-objects-uncleaned.ttl.bz2...\n", + "Parsing hiwiki-20250601-redirects.ttl.bz2...\n", + "Parsing hiwiki-20250601-specific-mappingbased-properties.ttl.bz2...\n", + "Parsing hiwiki-20250601-topical-concepts.ttl.bz2...\n", + "total: 2039012 triples\n" + ] + } + ], + "source": [ + "all_triples = []\n", + "for file_path in ttl_files:\n", + " print(f\"Parsing {os.path.basename(file_path)}...\")\n", + " \n", + " try:\n", + " with bz2.open(file_path, 'rt', encoding='utf-8') as f:\n", + " g = Graph()\n", + " try:\n", + " g.parse(f, format='turtle')\n", + " except (ParserError, Exception) as e:\n", + " print(f\" WARNING: Could not parse {os.path.basename(file_path)}. Error: {e}\")\n", + " continue\n", + "\n", + " for s, p, o in g:\n", + " # clean subject and predicate which are always URIs\n", + " # cleaning for this warning mostly: \n", + " # http://hi.wikipedia.org/wiki/चित्र:\\nPreah_Khan_temple_at_Angkor,_Cambodia.jpg \n", + " # does not look like a valid URI, trying to serialize this will break.\n", + " s_clean = str(s).replace('\\n', '').replace('\\r', '').strip() \n", + " p_clean = str(p).replace('\\n', '').replace('\\r', '').strip()\n", + "\n", + " if isinstance(o, URIRef):\n", + " o_clean = str(o).replace('\\n', '').replace('\\r', '').strip() \n", + " all_triples.append((s_clean, p_clean, o_clean))\n", + " \n", + " elif isinstance(o, Literal):\n", + " # not including literals because it doesn't make sense to learn attributes like date of birth rather we want\n", + " # to learn symbolic links between 2 entities\n", + " # also theres a lot of issues with this one while parsing the graph like this\n", + " # \n", + " continue\n", + " # print(f\"literal: {o}\")\n", + " # o_clean = str(o.value) \n", + " # all_triples.append((s_clean, p_clean, o_clean))\n", + "\n", + " except Exception as e:\n", + " print(f\"Error processing file {file_path}: {e}\")\n", + "\n", + "print(f\"total: {len(all_triples)} triples\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "f1574793-b084-4a45-8a8d-f214a9b6683a", + "metadata": {}, + "outputs": [], + "source": [ + "# filter out disambiguation triplets\n", + "core_triples = [\n", + " t for t in all_triples \n", + " if 'http://www.w3.org/2002/07/owl#sameAs' not in t[1] and 'http://dbpedia.org/ontology/wikiPageDisambiguates' not in t[1] and t[1].startswith('http://dbpedia.org/ontology/')\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "5d30f221-11d0-4ba4-8e23-0deb9f7532e2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1. http://dbpedia.org/ontology/language | Count: 108087\n", + "2. http://dbpedia.org/ontology/thumbnail | Count: 78098\n", + "3. http://dbpedia.org/ontology/wikiPageRedirects | Count: 77046\n", + "4. http://dbpedia.org/ontology/subdivision | Count: 49789\n", + "5. http://dbpedia.org/ontology/starring | Count: 32077\n", + "6. http://dbpedia.org/ontology/state | Count: 28398\n", + "7. http://dbpedia.org/ontology/district | Count: 25201\n", + "8. http://dbpedia.org/ontology/country | Count: 19176\n", + "9. http://dbpedia.org/ontology/birthPlace | Count: 14088\n", + "10. http://dbpedia.org/ontology/timeZone | Count: 11205\n", + "11. http://dbpedia.org/ontology/occupation | Count: 8277\n", + "12. http://dbpedia.org/ontology/termPeriod | Count: 7609\n", + "13. http://dbpedia.org/ontology/nationality | Count: 4206\n", + "14. http://dbpedia.org/ontology/deathPlace | Count: 3509\n", + "15. http://dbpedia.org/ontology/director | Count: 3279\n", + "16. http://dbpedia.org/ontology/politicalLeader | Count: 3214\n", + "17. http://dbpedia.org/ontology/producer | Count: 3178\n", + "18. http://dbpedia.org/ontology/type | Count: 3151\n", + "19. http://dbpedia.org/ontology/location | Count: 2707\n", + "20. http://dbpedia.org/ontology/musicBy | Count: 2702\n", + "21. http://dbpedia.org/ontology/genre | Count: 2500\n", + "22. http://dbpedia.org/ontology/writer | Count: 2422\n", + "23. http://dbpedia.org/ontology/residence | Count: 2312\n", + "24. http://dbpedia.org/ontology/predecessor | Count: 2269\n", + "25. http://dbpedia.org/ontology/party | Count: 2154\n", + "26. http://dbpedia.org/ontology/almaMater | Count: 2129\n", + "27. http://dbpedia.org/ontology/successor | Count: 1824\n", + "28. http://dbpedia.org/ontology/distributor | Count: 1626\n", + "29. http://dbpedia.org/ontology/author | Count: 1396\n", + "30. http://dbpedia.org/ontology/network | Count: 1372\n" + ] + } + ], + "source": [ + "relation_counts = Counter(t[1] for t in core_triples)\n", + "\n", + "for i, (relation, count) in enumerate(relation_counts.most_common(30)):\n", + " print(f\"{i+1}. {relation:<30} | Count: {count}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "dbd294dd-b072-4037-9706-0356b86d7ca8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1. http://dbpedia.org/ontology/academicAdvisor | Count: 21\n", + "2. http://dbpedia.org/ontology/alongside | Count: 20\n", + "3. http://dbpedia.org/ontology/honours | Count: 19\n", + "4. http://dbpedia.org/ontology/recordedIn | Count: 17\n", + "5. http://dbpedia.org/ontology/nonFictionSubject | Count: 16\n", + "6. http://dbpedia.org/ontology/architect | Count: 16\n", + "7. http://dbpedia.org/ontology/administrativeCenter | Count: 15\n", + "8. http://dbpedia.org/ontology/viceChancellor | Count: 13\n", + "9. http://dbpedia.org/ontology/restingPlacePosition | Count: 11\n", + "10. http://dbpedia.org/ontology/minister | Count: 11\n", + "11. http://dbpedia.org/ontology/creatorOfDish | Count: 10\n", + "12. http://dbpedia.org/ontology/opponent | Count: 9\n", + "13. http://dbpedia.org/ontology/athletics | Count: 9\n", + "14. http://dbpedia.org/ontology/translator | Count: 9\n", + "15. http://dbpedia.org/ontology/coverArtist | Count: 8\n", + "16. http://dbpedia.org/ontology/sport | Count: 7\n", + "17. http://dbpedia.org/ontology/province | Count: 7\n", + "18. http://dbpedia.org/ontology/manager | Count: 7\n", + "19. http://dbpedia.org/ontology/endingTheme | Count: 6\n", + "20. http://dbpedia.org/ontology/head | Count: 6\n", + "21. http://dbpedia.org/ontology/chairman | Count: 5\n", + "22. http://dbpedia.org/ontology/ceo | Count: 5\n", + "23. http://dbpedia.org/ontology/mother | Count: 5\n", + "24. http://dbpedia.org/ontology/county | Count: 4\n", + "25. http://dbpedia.org/ontology/lieutenant | Count: 3\n", + "26. http://dbpedia.org/ontology/rector | Count: 3\n", + "27. http://dbpedia.org/ontology/taoiseach | Count: 2\n", + "28. http://dbpedia.org/ontology/principal | Count: 2\n", + "29. http://dbpedia.org/ontology/provost | Count: 2\n", + "30. http://dbpedia.org/ontology/bodyDiscovered | Count: 1\n" + ] + } + ], + "source": [ + "least_common = relation_counts.most_common()[-30:]\n", + "for i, (relation, count) in enumerate(least_common):\n", + " print(f\"{i+1}. {relation:<30} | Count: {count}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "10f9da1b-3f50-44c4-af48-c85e7f684769", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Total unique entities found in core_triples: 304395\n" + ] + } + ], + "source": [ + "# Analyze Entity Degree (Connectivity)\n", + "\n", + "entity_degrees = Counter()\n", + "for head, relation, tail in core_triples:\n", + " entity_degrees[head] += 1\n", + " entity_degrees[tail] += 1\n", + "\n", + "print(f\"\\nTotal unique entities found in core_triples: {len(entity_degrees)}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "9b728ca3-a07a-46f2-bb96-cd32be5a15e6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "count 304395.000000\n", + "mean 3.575361\n", + "std 84.226941\n", + "min 1.000000\n", + "25% 1.000000\n", + "50% 1.000000\n", + "75% 3.000000\n", + "max 28392.000000\n", + "Name: degree, dtype: float64\n" + ] + } + ], + "source": [ + "degree_df = pd.DataFrame(entity_degrees.values(), columns=['degree'])\n", + "print(degree_df['degree'].describe())" + ] + }, + { + "cell_type": "markdown", + "id": "5ea3ff8c-f22c-40ed-8ae4-bf11184015a3", + "metadata": {}, + "source": [ + "### metadata and structural noise we can remove\n", + "wikiPageRedirects (77046 count): This is not a semantic relationship. It's a structural artifact from Wikipedia that says \"this page is a redirect to another\". Keeping this will teach the model that many things are simply equivalent, which is not useful for predicting new facts. we can remove this safely. \n", + "\n", + "\n", + "thumbnail (78098 count): This links an entity to its image URL. It has zero semantic value for predicting relationships like (Person, birthPlace, City). It's just noise\n", + "\n", + "\n", + "mainArticleForCategory (606 count): This is another structural link between a category page and its main article. Not a semantic fact. Remove.\n", + "\n", + "language(108087 count): This almost always links an entity to a language entity (dbr:Hindi_language). technically it is semantic but it can create a massive, uninformative hub around the Hindi_language entity, biasing our model.\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "416e3a82-0111-41a7-a614-41ef42aa81ac", + "metadata": {}, + "source": [ + "\n", + "### high-frequency but potentially noisy relations\n", + "language (#2, 13,838 count): This links entities (like movies, books, people) to their language (e.g., http://dbpedia.org/resource/Hindi). This creates a massive \"hub\" where the \"Hindi\" entity is connected to thousands of things. While technically a fact, it doesn't help in predicting diverse relationships and can skew the model. We want to predict things about India, not that India's language is Hindi. For a more focused KGC task, it's best to remove this.\n", + "\n", + "\n", + "timeZone (#10, 1,418 count): Similar to language, this connects many locations to a few timezone entities (like \"Asia/Kolkata\"). This is also a candidate for removal to improve focus.\n" + ] + }, + { + "cell_type": "markdown", + "id": "b9167089-6af0-4b85-9a95-3215e744f85a", + "metadata": {}, + "source": [ + "\n", + "\n", + "### semantic core relations we shold keep\n", + "starring, occupation, nationality, director, subdivision, state, district, country, birthPlace, deathPlace, location, residence. These are the facts we want to model.\n", + "starring, producer, director, writer, musicBy, genre: forms a strong sub-graph about media and films.\n", + "occupation, politician, party, almaMater: Great biographical and political relations.\n", + "All the others in the top 30 are generally good semantic relationships.\n", + "\n", + "### rare relations \n", + "generally model can't learn from sprase relations which only show up a couple of times. relations like Relations like bodyDiscovered (1), taoiseach (2), or mother (5) are too sparse.\n", + "My plan is to set a threshold and remove any relation that appears fewer than 50 or 100 times. While we lose some specific facts, we can create a denser, more learnable graph for the model.\n" + ] + }, + { + "cell_type": "markdown", + "id": "34ebe68a-edc7-406a-83ef-a277a0a8de3e", + "metadata": {}, + "source": [ + "## Entity Degree / connectivity analysis\n", + "\n", + "count: 304395: we have ~305k unique entities in this core_triples set.\n", + "mean: 3.57: The average entity is connected to 3-4 other things. quite low..sparse graph. \n", + "std: 84.22: degrees are not distributed evenly at all. some entities have a lot more connections than the avg. \n", + "\n", + "50% (median): 1.0: This is the most critical statistic. It means at least 50% of your entities have only ONE connection! These are \"leaf\" nodes. The model has no context for these entities and cannot learn a meaningful vector for them. They are pure noise for the training process.\n", + "\n", + "\n", + "max: 50000: This shows a massive \"hub\" entity, which is almost certainly the entity http://dbpedia.org/ontology/wikiPageRedirects is pointing to.\n", + "\n", + "\n", + "The Histogram: The \"Zoomed-in View\" plot confirms this visually. There is a gigantic bar at Degree = 1 with over 200,000 entities. This is the \"long tail\" of very sparsely connected nodes that we must prune.\n", + "\n", + "\n", + "The structure is dominated by a small number of massive \"hubs\" that connect to everything, while the vast majority of entities are on the periphery with very few connections.\n", + "\n", + "### The Strategy: Pruning the Graph\n", + "Based on this analysis, my strategy is to perform a two-step pruning process to create a smaller, denser, and more semantically coherent graph.\n", + "\n", + "Semantic Filtering: We will remove the relations from Category A and B using a \"blacklist\".\n", + "\n", + "\n", + "Frequency Pruning (K-Core Pruning): We will remove all relations that appear too infrequently and all entities that are not connected enough times.\n", + "\n", + "when we split into train/val/test sets we should make sure that entities in our val/test also appear in train set. " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "a3fd9537-d37c-41d9-90ef-4f2ea1748731", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "number of core triples before pruning: 544161\n", + "number of triples after semantic filtering: 269108\n" + ] + } + ], + "source": [ + "# remove triples as per blacklist\n", + "print(f\"number of core triples before pruning: {len(core_triples)}\")\n", + "\n", + "RELATION_BLACKLIST = [\n", + " 'http://dbpedia.org/ontology/wikiPageRedirects',\n", + " 'http://dbpedia.org/ontology/thumbnail',\n", + " 'http://dbpedia.org/ontology/language',\n", + " 'http://dbpedia.org/ontology/timeZone',\n", + " 'http://dbpedia.org/ontology/restingPlacePosition',\n", + " 'http://dbpedia.org/ontology/mainArticleForCategory'\n", + "]\n", + "semantically_filtered_triples = [t for t in core_triples if t[1] not in RELATION_BLACKLIST]\n", + "\n", + "print(f\"number of triples after semantic filtering: {len(semantically_filtered_triples)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "abb1172c-1217-44d8-a17a-2a5e78d7f2ce", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Final number of high-quality triples: 51607\n", + "\n" + ] + } + ], + "source": [ + "# prune graph as per required relation frequency and entity degree\n", + "\n", + "MIN_RELATION_FREQUENCY = 50\n", + "MIN_ENTITY_DEGREE = 6\n", + "\n", + "relation_counts = Counter(t[1] for t in semantically_filtered_triples)\n", + "valid_relations = {r for r, c in relation_counts.items() if c >= MIN_RELATION_FREQUENCY}\n", + "temp_triples = [t for t in semantically_filtered_triples if t[1] in valid_relations]\n", + "\n", + "while True:\n", + " entity_degrees = Counter()\n", + " for h, _, t in temp_triples:\n", + " entity_degrees[h] += 1\n", + " entity_degrees[t] += 1\n", + " valid_entities = {e for e, d in entity_degrees.items() if d >= MIN_ENTITY_DEGREE}\n", + " pruned_triples = [t for t in temp_triples if t[0] in valid_entities and t[2] in valid_entities]\n", + " if len(pruned_triples) == len(temp_triples):\n", + " break\n", + " temp_triples = pruned_triples\n", + "\n", + "print(f\"Final number of high-quality triples: {len(pruned_triples)}\\n\")" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "9da8862d-0961-4006-b271-6f1366c348e8", + "metadata": {}, + "outputs": [], + "source": [ + "# data prep for training\n", + "df = pd.DataFrame(pruned_triples, columns=['head', 'relation', 'tail'])\n", + "entities = pd.concat([df['head'], df['tail']]).unique()\n", + "relations = df['relation'].unique()\n", + "entity_to_id = {entity: i for i, entity in enumerate(entities)}\n", + "relation_to_id = {relation: i for i, relation in enumerate(relations)}\n", + "id_to_entity = {i: entity for entity, i in entity_to_id.items()}\n", + "id_to_relation = {i: rel for rel, i in relation_to_id.items()}\n", + "\n", + "\n", + "# triples_as_ids = np.array([(entity_to_id[h], relation_to_id[r], entity_to_id[t]) for h, r, t in df.itertuples(index=False)])\n", + "# train_ids, temp_ids = train_test_split(triples_as_ids, test_size=0.2, random_state=42)\n", + "# validation_ids, test_ids = train_test_split(temp_ids, test_size=0.5, random_state=42)\n", + "\n", + "\n", + "# this doesnt ensure that entities in our val/test also occur in our train set - hence the next cell fixes that\n", + "# tf_train = TriplesFactory(mapped_triples=train_ids, entity_to_id=entity_to_id, relation_to_id=relation_to_id, create_inverse_triples = True)\n", + "# tf_validation = TriplesFactory(mapped_triples=validation_ids, entity_to_id=entity_to_id, relation_to_id=relation_to_id, create_inverse_triples = True)\n", + "# tf_test = TriplesFactory(mapped_triples=test_ids, entity_to_id=entity_to_id, relation_to_id=relation_to_id, create_inverse_triples = True)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "978389e6-23c5-44c0-8f79-dcb47ea1d967", + "metadata": {}, + "outputs": [], + "source": [ + "pruned_triples_array = np.array(pruned_triples, dtype=object)\n", + "\n", + "all_tf = TriplesFactory.from_labeled_triples(\n", + " triples=pruned_triples_array,\n", + " create_inverse_triples=True # Let PyKEEN handle inverse triples for the full graph\n", + ")\n", + "tf_train, tf_validation, tf_test = all_tf.split(\n", + " ratios=[0.8, 0.1, 0.1],\n", + " random_state=42,\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "4a42f002-3fb7-41b8-a902-02bc54b2d07e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of entities in overall graph: 7584\n", + "Number of entities in training set: 7584\n", + "Number of entities in validation set: 7584\n", + "Number of entities in test set: 7584\n" + ] + } + ], + "source": [ + "id_to_entity = all_tf.entity_id_to_label\n", + "id_to_relation = all_tf.relation_id_to_label\n", + "\n", + "print(f\"Number of entities in overall graph: {len(all_tf.entity_to_id)}\")\n", + "print(f\"Number of entities in training set: {len(tf_train.entity_to_id)}\")\n", + "print(f\"Number of entities in validation set: {len(tf_validation.entity_to_id)}\")\n", + "print(f\"Number of entities in test set: {len(tf_test.entity_to_id)}\")" + ] + }, + { + "cell_type": "markdown", + "id": "2825c3a8-3976-4633-8a83-003c46bed565", + "metadata": {}, + "source": [ + "## Training with TransE\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "251436a7-4216-435d-b6e7-5f686c168116", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:pykeen.triples.triples_factory:Creating inverse triples.\n", + "/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/torch/utils/data/dataloader.py:683: UserWarning: 'pin_memory' argument is set as true but not supported on MPS now, then device pinned memory won't be used.\n", + " warnings.warn(warn_msg)\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "90d1ea3667ad4f40b330fecc54f4beb2", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Training epochs on mps:0: 0%| | 0/100 [00:00\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
tail_idscoretail_labelin_validationin_testing
60736073-58.279877http://hi.dbpedia.org/resource/लक्ष्मी_छायाFalseFalse
14201420-58.299492http://hi.dbpedia.org/resource/कुंदन_(हिन्दी_फ...FalseFalse
32793279-58.301270http://hi.dbpedia.org/resource/देवेन_वर्माFalseFalse
23312331-58.313400http://hi.dbpedia.org/resource/जलाल_आग़ाFalseFalse
71557155-58.328964http://hi.dbpedia.org/resource/सुरेश_चटवालFalseFalse
49754975-58.361649http://hi.dbpedia.org/resource/मदन_पुरीFalseFalse
31913191-58.362354http://hi.dbpedia.org/resource/दीपक_शिर्केFalseFalse
72607260-58.385082http://hi.dbpedia.org/resource/सोमी_अलीFalseFalse
71587158-58.418663http://hi.dbpedia.org/resource/सुरैयाFalseFalse
52495249-58.421432http://hi.dbpedia.org/resource/मीना_टीFalseFalse
\n", + "" + ], + "text/plain": [ + " tail_id score tail_label \\\n", + "6073 6073 -58.279877 http://hi.dbpedia.org/resource/लक्ष्मी_छाया \n", + "1420 1420 -58.299492 http://hi.dbpedia.org/resource/कुंदन_(हिन्दी_फ... \n", + "3279 3279 -58.301270 http://hi.dbpedia.org/resource/देवेन_वर्मा \n", + "2331 2331 -58.313400 http://hi.dbpedia.org/resource/जलाल_आग़ा \n", + "7155 7155 -58.328964 http://hi.dbpedia.org/resource/सुरेश_चटवाल \n", + "4975 4975 -58.361649 http://hi.dbpedia.org/resource/मदन_पुरी \n", + "3191 3191 -58.362354 http://hi.dbpedia.org/resource/दीपक_शिर्के \n", + "7260 7260 -58.385082 http://hi.dbpedia.org/resource/सोमी_अली \n", + "7158 7158 -58.418663 http://hi.dbpedia.org/resource/सुरैया \n", + "5249 5249 -58.421432 http://hi.dbpedia.org/resource/मीना_टी \n", + "\n", + " in_validation in_testing \n", + "6073 False False \n", + "1420 False False \n", + "3279 False False \n", + "2331 False False \n", + "7155 False False \n", + "4975 False False \n", + "3191 False False \n", + "7260 False False \n", + "7158 False False \n", + "5249 False False " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model = pipeline_result_transe.model\n", + "pred = predict_target(\n", + " model=model,\n", + " head=\"http://hi.dbpedia.org/resource/देश_प्रेमी_(1982_फ़िल्म)\",\n", + " relation=\"http://dbpedia.org/ontology/starring\",\n", + " triples_factory=tf_train,\n", + ")\n", + "# remove all targets which we know from training set\n", + "pred_filtered = pred.filter_triples(tf_train)\n", + "# pred_filtered.df.to_csv(\"एडोस_इंटरएक्टिव.csv\")\n", + "\n", + "pred_annotated = pred_filtered.add_membership_columns(validation=tf_validation, testing=tf_test)\n", + "pred_annotated.df[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "f257ecbd-26c7-46f9-bacf-162b09c40e99", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- Model Performance on the Test Set ---\n", + " Metric Value\n", + "4 adjusted_arithmetic_mean_rank 1.665623e-01\n", + "13 median_absolute_deviation 2.683510e+02\n", + "22 z_geometric_mean_rank 6.707749e+01\n", + "31 inverse_geometric_mean_rank 5.166937e-03\n", + "40 arithmetic_mean_rank 6.312593e+02\n", + "49 adjusted_geometric_mean_rank_index 9.309739e-01\n", + "58 variance 1.481916e+06\n", + "67 harmonic_mean_rank 4.192870e+01\n", + "76 inverse_median_rank 4.672897e-03\n", + "85 inverse_harmonic_mean_rank 2.385001e-02\n", + "94 inverse_arithmetic_mean_rank 1.584135e-03\n", + "103 z_inverse_harmonic_mean_rank 1.105881e+02\n", + "112 geometric_mean_rank 1.935383e+02\n", + "121 adjusted_arithmetic_mean_rank_index 8.336576e-01\n", + "130 count 5.161000e+03\n", + "139 standard_deviation 1.217340e+03\n", + "148 adjusted_inverse_harmonic_mean_rank 2.262354e-02\n", + "157 median_rank 2.140000e+02\n", + "166 z_arithmetic_mean_rank 1.037189e+02\n", + "175 hits_at_1 5.037783e-03\n", + "184 hits_at_3 1.433831e-02\n", + "193 hits_at_5 2.111994e-02\n", + "202 hits_at_10 3.817090e-02\n", + "211 z_hits_at_k 7.293060e+01\n", + "220 adjusted_hits_at_k 3.690012e-02\n" + ] + } + ], + "source": [ + "results_df = pipeline_result_transe.metric_results.to_df()\n", + "test_results_df = results_df[\n", + " (results_df['Side'] == 'tail') &\n", + " (results_df['Rank_type'] == 'realistic')\n", + "]\n", + "\n", + "print(\"\\n--- Model Performance on the Test Set ---\")\n", + "print(test_results_df[['Metric', 'Value']])" + ] + }, + { + "cell_type": "markdown", + "id": "2d568e3c-78ef-49cb-b861-aa3bf8534228", + "metadata": {}, + "source": [ + "## ConvE" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "300dd931-1498-444e-8220-11586c602b96", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:pykeen.pipeline.api:Using device: mps\n", + "INFO:pykeen.nn.modules:Resolving None * None * None = 150.\n", + "INFO:pykeen.nn.representation:Inferred unique=False for Embedding()\n", + "INFO:pykeen.nn.representation:Inferred unique=False for Embedding()\n", + "INFO:pykeen.nn.representation:Inferred unique=False for Embedding()\n", + "INFO:pykeen.triples.triples_factory:Creating inverse triples.\n", + "/Users/adityavenkatesh/Documents/Code/nef_new/neural-extraction-framework/GSoC25_H/.env/lib/python3.10/site-packages/torch/utils/data/dataloader.py:683: UserWarning: 'pin_memory' argument is set as true but not supported on MPS now, then device pinned memory won't be used.\n", + " warnings.warn(warn_msg)\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "8341a1a313304bd3ad8100eb6f74b1d2", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Training epochs on mps:0: 0%| | 0/200 [00:00 Saved checkpoint after having finished epoch 10.\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "31225b19c59046c08f958dd748053bad", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Training batches on mps:0: 0%| | 0.00/645 [00:00_.txt` – raw triplets +* `full_dataset_results/full_dataset_evaluation_results.json` – global P / R / F1 per pair + +### Example: deep-dive analysis +```bash +# After full_dataset_evaluation finishes +$ python detailed_comparison_using_benchIE.py +``` +Generates `full_dataset_results/detailed_analysis__.json` with a human-friendly break-down and prints a console summary. + +--- + +## 5. Switching/staging models + +Because the framework talks to **Ollama**, you only need to: +1. `ollama pull ` +2. Add the tag inside `AVAILABLE_MODELS` *and* list it in `ExperimentConfig.models`. + +no other files need changes. + +--- + +## 6. Common issues & fixes + +| Symptom | Likely cause | Fix | +| --- | --- | --- | +| `ConnectionError: Failed to pull or connect` | Ollama server not running | `ollama serve` or reopen the desktop app | +| Model generates but parser returns 0 triplets | Prompt not compatible | Tweak or add a new prompt template | +| `Golden standard file not found` | Path mis-configured | Ensure `config.evaluation["benchie_gold_file"]` is correct relative to `llm_IE` | + +--- \ No newline at end of file diff --git a/GSoC25_H/llm_IE/__init__.py b/GSoC25_H/llm_IE/__init__.py new file mode 100644 index 0000000..f23cc63 --- /dev/null +++ b/GSoC25_H/llm_IE/__init__.py @@ -0,0 +1,36 @@ +""" +LLM Information Extraction Pipeline for Hindi Relation Extraction + +This package provides a comprehensive evaluation framework for assessing +different Large Language Models (LLMs) on Hindi relation extraction tasks +using the hindi-benchie evaluation framework. + +Key Components: +- Ollama model support +- Structured prompt engineering +- Hindi-Benchie Integration (using the actual evaluation code from the benchie repository) +- error analysis and reporting +""" + +__version__ = "1.0.0" +__author__ = "GSoC 2025 Hindi Neural Extraction Framework" + +from .config import Config, AVAILABLE_MODELS +from .llm_interface import OllamaInterface, ExtractionResult +from .benchie_evaluator import ProperBenchieEvaluator +from .prompt_templates import PromptTemplateManager +from .output_parser import OutputParser +from .error_analyzer import ErrorAnalyzer +from .reporter import Reporter + +__all__ = [ + "Config", + "AVAILABLE_MODELS", + "OllamaInterface", + "ExtractionResult", + "ProperBenchieEvaluator", + "PromptTemplateManager", + "OutputParser", + "ErrorAnalyzer", + "Reporter" +] \ No newline at end of file diff --git a/GSoC25_H/llm_IE/config.py b/GSoC25_H/llm_IE/config.py new file mode 100644 index 0000000..02f1d58 --- /dev/null +++ b/GSoC25_H/llm_IE/config.py @@ -0,0 +1,138 @@ +import os +from typing import Dict, List, Any, Union +from dataclasses import dataclass, field + +@dataclass +class ModelConfig: + """Configuration for a specific model""" + name: str + description: str + temperature: float = 0.7 + top_p: float = 0.95 + top_k: int = 50 + max_tokens: int = 1024 + timeout: int = 300 + +@dataclass +class ExperimentConfig: + models: List[str] = field(default_factory=list) + prompt_strategies: List[str] = field(default_factory=list) + evaluation_sets: List[str] = field(default_factory=list) + output_dir: str = "results" + batch_size: int = 10 + max_retries: int = 3 + random_seed: int = 42 + +AVAILABLE_MODELS = { + "mistral:latest": ModelConfig( + name="mistral:latest", + description="Mistral 7B", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "gemma3:4b": ModelConfig( + name="gemma3:4b", + description="Google Gemma 3 4B", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "gemma3:1b": ModelConfig( + name="gemma3:1b", + description="Google Gemma 3 1B", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "gemma3:4b-it-fp16": ModelConfig( + name="gemma3:4b-it-fp16", + description="Google Gemma 3 4B - fp16 precision", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "llama3.2:3b-instruct-fp16": ModelConfig( + name="llama3.2:3b-instruct-fp16", + description="Llama 3.2 3B - fp16 instruction-tuned", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + + "llama3.2:1b-text-fp16": ModelConfig( + name="llama3.2:1b-text-fp16", + description="Llama 3.2 1B - fp16 text-tuned", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "qwen3:4b-fp16": ModelConfig( + name="qwen3:4b-fp16", + description="Qwen 3 4B - fp16 precision", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024 + ), + "gemma3:12b-it-qat": ModelConfig( + name="gemma3:12b-it-qat", + description="Google Gemma 3 12B - 4-bit Quantized (best performer yet - 33.7% F1)", + temperature=0.3, + top_p=0.9, + top_k=40, + max_tokens=1024, + timeout=300 + ) +} + +EVALUATION_CONFIG = { + "benchie_gold_file": "../hindi-benchie/hindi_benchie_gold.txt" +} + +class Config: + """Main configuration class""" + + def __init__(self, config_file: str = None): + self.models = AVAILABLE_MODELS + self.evaluation = EVALUATION_CONFIG + + self.experiment = ExperimentConfig( + # best performing model is gemma3:12b-it-qat + models=["gemma3:4b", "gemma3:12b-it-qat"], + prompt_strategies=["chain_of_thought_ER_english_hindi"], + evaluation_sets=["hindi_benchie_gold.txt"] + ) + + if config_file and os.path.exists(config_file): + self.load_from_file(config_file) + + def get_model_config(self, model_key: str) -> ModelConfig: + """Get configuration for a specific model""" + if model_key not in self.models: + raise ValueError(f"Model '{model_key}' not found in available models") + return self.models[model_key] + + def get_models(self) -> Dict[str, ModelConfig]: + """Get all available models""" + return self.models + + def validate(self) -> bool: + """Validate configuration settings""" + for model_key, model_config in self.models.items(): + if not model_config.name: + raise ValueError(f"Model '{model_key}' has no name specified") + + benchie_file = self.evaluation["benchie_gold_file"] + if not os.path.exists(benchie_file): + print(f"Warning: Benchie gold file not found: {benchie_file}") + + return True + +config = Config() \ No newline at end of file diff --git a/GSoC25_H/llm_IE/detailed_comparison_using_benchIE.py b/GSoC25_H/llm_IE/detailed_comparison_using_benchIE.py new file mode 100644 index 0000000..915693a --- /dev/null +++ b/GSoC25_H/llm_IE/detailed_comparison_using_benchIE.py @@ -0,0 +1,463 @@ +#!/usr/bin/env python3 +""" +Detailed comparison script that uses the original Hindi-BenchIE logic +for accurate, sentence-by-sentence correctness analysis. +""" + +import re +import json +import string +import os +from typing import Dict, List, Tuple, Any + +# --- Hindi-BenchIE Core Logic --- +# Functions adapted from https://github.com/ritwikmishra/hindi-benchie hindi-benchie/code.py + +def compare_clean_golden_ext_with_oie_ext(ext_g: List[str], ext_oie: str) -> str: + """Word-level comparison of a golden extraction part and a model extraction.""" + ext_oie_list = ext_oie.split('\t') + assert len(ext_g) == len(ext_oie_list) + + bw = [] + for g_part, o_part in zip(ext_g, ext_oie_list): + ol = o_part.split() + gl = g_part.split() + tbw = [] + i, j = 0, 0 + while i < len(ol) and j < len(gl): + if ol[i] != re.sub(r'\]|\[|\{[a-z]+\}', '', gl[j]): # match failed + if '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: + bracket_end += 1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}', gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start] + gl[bracket_end + 1:] + continue + else: + break + else: + i += 1 + j += 1 + + if i == len(ol): + while j != len(gl) and '[' == gl[j][0]: + bracket_start, bracket_end = j, j + while ']' not in gl[bracket_end]: + bracket_end += 1 + if '{' in gl[bracket_end] and '}' in gl[bracket_end]: + tbw.append(re.search(r'\{[a-z]+\}', gl[bracket_end])[0][1:-1]) + gl = gl[:bracket_start] + gl[bracket_end + 1:] + + if j == len(gl): + bw.extend(tbw) + else: + return 'not satisfied' + else: + return 'not satisfied' + + if bw: + return 'satisfied but with ' + ','.join(bw) + else: + return 'satisfied' + +def compare_raw_golden_ext_with_oie_ext(ext_golden: str, ext_oie: str, default_passive: bool) -> str: + """Compares a raw golden extraction string with a model extraction, handling |OR| and passives.""" + ext_golden_options = ext_golden.split(' |OR| ') + bl = [] + + for ext_g_option in ext_golden_options: + passive = default_passive + if ' <--{not allowed in passive}' in ext_g_option: + passive = False + ext_g_option = ext_g_option.replace(' <--{not allowed in passive}', '') + elif ' <--{allowed in passive}' in ext_g_option: + passive = True + ext_g_option = ext_g_option.replace(' <--{allowed in passive}', '') + + ext_g_parts = ext_g_option.split(' --> ') + b = compare_clean_golden_ext_with_oie_ext(ext_g_parts, ext_oie) + + if b == 'satisfied': + return b + + if passive and b != 'satisfied' and len(ext_g_parts) == 3: + t = ext_g_parts[2] + ext_g_parts[2] = ext_g_parts[0] + ext_g_parts[0] = t + b2 = compare_clean_golden_ext_with_oie_ext(ext_g_parts, ext_oie) + if b2 == 'satisfied': + return b2 + bl.append(b2) + + if 'satisfied but' in b: + bl.append(b) + else: + bl.append('not satisfied') + + satisfied_but_options = [b for b in bl if 'satisfied but' in b] + if satisfied_but_options: + return sorted(satisfied_but_options, key=len)[0] + + return 'not satisfied' + +def fn_sb(cd: Dict, cel: List[str], fn: int = 0) -> int: + """Helper function to calculate false negatives based on compensatory relations.""" + i = 0 + while i < len(cel): + ce = cel[i] + if ce in cd and 'not satisfied' == cd[ce]: + fn += 1 + cd[ce] = 'X' + elif ce in cd and 'satisfied but' in cd[ce]: + cel2 = cd[ce].split()[-1].split(',') + fn = fn_sb(cd, cel2, fn) + i += 1 + return fn + +def n_extractions_in_smallest_cluster(golden_dict: Dict, sent_key: str) -> int: + """Calculates the number of essential extractions in the smallest cluster.""" + sent_clusters = golden_dict.get(sent_key, {}) + if not sent_clusters: + return 0 + + min_essentials = float('inf') + + for cluster_data in sent_clusters.values(): + num_essentials = len(cluster_data.get('essential', [])) + if num_essentials < min_essentials: + min_essentials = num_essentials + + return min_essentials if min_essentials != float('inf') else 0 + +# --- Main Comparison Class --- + +class BenchIEDetailedComparator: + """ + Generates a detailed comparison using the official Hindi-BenchIE logic. + """ + + def __init__(self, golden_standard_path: str, results_dir: str = "full_dataset_results"): + self.results_dir = results_dir + self.golden_dict, self.sentences = self._parse_golden_standard(golden_standard_path) + + def _parse_golden_standard(self, file_path: str) -> Tuple[Dict, Dict]: + """Parses the golden standard file into the BenchIE dictionary format.""" + with open(file_path, 'r', encoding='utf-8') as f: + gold_lines = [line.strip() for line in f.readlines()] + + golden_dict = {} + sentences = {} + essential_exts, compensating_dict, cluster_number, cluster_dict, sentence_number = [], {}, '', {}, '' + + for line in gold_lines: + if 'sent_id:' in line: + if sentence_number: + ext_dict = {'essential': essential_exts, 'compensatory': compensating_dict} + cluster_dict[f'cluster {cluster_number}'] = ext_dict + golden_dict[f'sent {sentence_number}'] = cluster_dict + essential_exts, compensating_dict, cluster_number, cluster_dict = [], {}, '', {} + + match = re.search(r'sent_id:(\d+)\s+(.*)', line) + if match: + sentence_number = match.group(1) + sentence_text = match.group(2) + sentences[sentence_number] = sentence_text + golden_dict[f's{sentence_number} txt'] = sentence_text + + elif '------ Cluster' in line: + if cluster_number: + ext_dict = {'essential': essential_exts, 'compensatory': compensating_dict} + cluster_dict[f'cluster {cluster_number}'] = ext_dict + essential_exts, compensating_dict = [], {} + cluster_number = re.search(r'\d+', line)[0] + + elif re.search(r'\{[a-z]\}', line[:4]): + compensating_dict[line[1]] = line[4:] + + elif '='*20 not in line and line: + essential_exts.append(line) + + if sentence_number and cluster_number: + ext_dict = {'essential': essential_exts, 'compensatory': compensating_dict} + cluster_dict[f'cluster {cluster_number}'] = ext_dict + golden_dict[f'sent {sentence_number}'] = cluster_dict + + return golden_dict, sentences + + def load_model_extractions(self, extraction_file: str) -> Dict[str, List[Tuple[str, str, str]]]: + """Loads model extractions from a file.""" + model_extractions = {} + with open(extraction_file, 'r', encoding='utf-8') as f: + for line in f: + parts = line.strip().split('\t') + if len(parts) >= 4: + sent_id, subject, relation, obj = parts[0], parts[1], parts[2], parts[3] + if sent_id not in model_extractions: + model_extractions[sent_id] = [] + model_extractions[sent_id].append((subject, relation, obj)) + return model_extractions + + def get_sentence_analysis(self, sent_id: str, model_extractions_for_sent: List) -> Dict[str, Any]: + """Performs BenchIE analysis for a single sentence and returns detailed results.""" + sent_key = f'sent {sent_id}' + if sent_key not in self.golden_dict: + return { + "sent_id": sent_id, + "text": self.sentences.get(sent_id, "N/A"), + "status": "no_golden_extractions", + "model_extractions": model_extractions_for_sent + } + + sent_golden_data = self.golden_dict[sent_key] + + # --- Pre-process model extractions for this sentence --- + processed_model_exts = [] + for e_tuple in model_extractions_for_sent: + e_str = '\t'.join(e_tuple) + e_clean = re.sub(' +', ' ', e_str) + e_clean = e_clean.translate(str.maketrans('', '', string.punctuation + '।')) + e_clean = re.sub(' +', ' ', e_clean) + processed_model_exts.append({'original': e_tuple, 'clean': e_clean, 'matched': False}) + + # --- Iterate through clusters to find the best one (minimum FN) --- + best_cluster_analysis = None + min_fn_count = float('inf') + + for cluster_no, cluster_data in sent_golden_data.items(): + state_dict = { + 'essential': {i: 'not satisfied' for i in range(len(cluster_data['essential']))}, + 'compensatory': {k: 'not satisfied' for k in cluster_data['compensatory']} + } + + true_positives = [] + + # --- First pass: Check for matches and identify TPs --- + for model_ext in processed_model_exts: + if model_ext['matched']: continue + + is_tp_for_this_cluster = False + + # Check against essential extractions + for i, ext_g in enumerate(cluster_data['essential']): + if state_dict['essential'][i] == 'not satisfied': + res = compare_raw_golden_ext_with_oie_ext(ext_g, model_ext['clean'], default_passive=True) + if res != 'not satisfied': + state_dict['essential'][i] = res + true_positives.append({'model_extraction': model_ext['original'], 'matched_golden': ext_g, 'match_type': res}) + is_tp_for_this_cluster = True + model_ext['matched'] = True + break + + if is_tp_for_this_cluster: continue + + # Check against compensatory extractions + for ck, ext_g in cluster_data['compensatory'].items(): + if state_dict['compensatory'][ck] == 'not satisfied': + res = compare_raw_golden_ext_with_oie_ext(ext_g, model_ext['clean'], default_passive=True) + if res != 'not satisfied': + state_dict['compensatory'][ck] = res + true_positives.append({'model_extraction': model_ext['original'], 'matched_golden': ext_g, 'match_type': res}) + is_tp_for_this_cluster = True + model_ext['matched'] = True + break + + # --- Second pass: Calculate FNs for this cluster --- + fn_count = 0 + unmatched_golden = [] + compensatory_copy = state_dict['compensatory'].copy() + + for i, ext_g in enumerate(cluster_data['essential']): + essential_state = state_dict['essential'][i] + if essential_state == 'not satisfied': + fn_count += 1 + unmatched_golden.append({'type': 'essential', 'extraction': ext_g}) + elif 'satisfied but' in essential_state: + compensatory_needed = essential_state.split()[-1].split(',') + fn_for_this = fn_sb(compensatory_copy, compensatory_needed) + if fn_for_this > 0: + fn_count += fn_for_this + unmatched_golden.append({'type': 'essential_with_unmatched_compensatory', 'extraction': ext_g, 'needs': compensatory_needed}) + + if fn_count < min_fn_count: + min_fn_count = fn_count + false_positives = [{'model_extraction': e['original']} for e in processed_model_exts if not e['matched']] + best_cluster_analysis = { + "sent_id": sent_id, + "text": self.sentences.get(sent_id, "N/A"), + "status": "analyzed", + "best_cluster": cluster_no, + "true_positives": true_positives, + "false_positives": false_positives, + "false_negatives": unmatched_golden, + "summary": { + "TP": len(true_positives), + "FP": len(false_positives), + "FN": fn_count + } + } + + # Reset matched status for next sentence analysis if needed + for ext in processed_model_exts: + ext['matched'] = False + + return best_cluster_analysis + + def generate_report(self, model_name: str, strategy: str, limit: int = None, save_to_json: bool = False): + """Generates and prints a detailed report for a model/strategy.""" + extraction_file = os.path.join(self.results_dir, f"extractions_{model_name.replace(':', '_')}_{strategy}.txt") + if not os.path.exists(extraction_file): + print(f"Extraction file not found: {extraction_file}") + return None + + model_extractions = self.load_model_extractions(extraction_file) + + print(f"\n{'='*80}") + print(f"DETAILED BENCHIE COMPARISON: {model_name} with {strategy}") + print(f"{'='*80}") + + report_data = { + "model_name": model_name, + "strategy": strategy, + "sentences": [] + } + + total_tp, total_fp, total_fn = 0, 0, 0 + count = 0 + sorted_sent_ids = sorted(self.sentences.keys(), key=lambda x: int(x)) + + for sent_id in sorted_sent_ids: + if limit and count >= limit: + break + + analysis = self.get_sentence_analysis(sent_id, model_extractions.get(sent_id, [])) + if not analysis: continue + + summary = analysis.get('summary', {}) + total_tp += summary.get('TP', 0) + total_fp += summary.get('FP', 0) + total_fn += summary.get('FN', 0) + + report_data["sentences"].append(analysis) + count += 1 + + print(f"\nSentence {analysis['sent_id']}: {analysis['text']}") + print(f" Best matching cluster: {analysis.get('best_cluster', 'N/A')}") + summary = analysis.get('summary', {}) + print(f" Summary: TP: {summary.get('TP', 0)}, FP: {summary.get('FP', 0)}, FN: {summary.get('FN', 0)}") + print("-" * 60) + + if analysis.get('true_positives'): + print(" TRUE POSITIVES:") + for tp in analysis['true_positives']: + ext_str = " --> ".join(tp['model_extraction']) + print(f" - Ext: \"{ext_str}\"") + print(f" Matched: \"{tp['matched_golden']}\" ({tp['match_type']})") + + if analysis.get('false_positives'): + print("\n FALSE POSITIVES:") + for fp in analysis['false_positives']: + ext_str = " --> ".join(fp['model_extraction']) + print(f" - Ext: \"{ext_str}\"") + + if analysis.get('false_negatives'): + print("\n FALSE NEGATIVES (Missed Golden Extractions):") + for fn in analysis['false_negatives']: + print(f" - Missed: \"{fn['extraction']}\" ({fn['type']})") + + model_sent_ids = set(model_extractions.keys()) + golden_sent_ids = set(self.sentences.keys()) + missed_sent_ids = golden_sent_ids - model_sent_ids + + missing_fn_count = 0 + if missed_sent_ids: + print("\n" + "="*80) + print(f"ANALYZING {len(missed_sent_ids)} SENTENCES WITH NO MODEL EXTRACTIONS") + print("="*80) + + for sent_id in missed_sent_ids: + sent_key = f'sent {sent_id}' + fn_for_sent = n_extractions_in_smallest_cluster(self.golden_dict, sent_key) + missing_fn_count += fn_for_sent + + missed_sentence_analysis = { + "sent_id": sent_id, + "text": self.sentences.get(sent_id, "N/A"), + "status": "missed_sentence", + "summary": {"TP": 0, "FP": 0, "FN": fn_for_sent} + } + report_data["sentences"].append(missed_sentence_analysis) + print(f" - Sentence {sent_id}: Added {fn_for_sent} FNs (missed all extractions)") + + + total_fn += missing_fn_count + + precision = total_tp / (total_tp + total_fp) if (total_tp + total_fp) > 0 else 0 + recall = total_tp / (total_tp + total_fn) if (total_tp + total_fn) > 0 else 0 + f1_score = 2 * (precision * recall) / (precision + recall) if (precision + recall) > 0 else 0 + + overall_stats = { + "total_true_positives": total_tp, + "total_false_positives": total_fp, + "total_false_negatives": total_fn, + "precision": precision, + "recall": recall, + "f1_score": f1_score, + "note": f"{missing_fn_count} FNs are from {len(missed_sent_ids)} sentences with no model-generated extractions." + } + report_data["overall_stats"] = overall_stats + + print(f"\n{'='*80}") + print("OVERALL STATISTICS") + print(f"{'='*80}") + print(f"Precision: {precision:.4f}") + print(f"Recall: {recall:.4f}") + print(f"F1-Score: {f1_score:.4f}") + print("-" * 30) + print(f"Total TPs: {total_tp}") + print(f"Total FPs: {total_fp}") + print(f"Total FNs: {total_fn} (includes {missing_fn_count} from {len(missed_sent_ids)} completely missed sentences)") + print(f"{'='*80}") + + + if save_to_json: + json_filename = f"detailed_analysis_{model_name.replace(':', '_')}_{strategy}.json" + json_file = os.path.join(self.results_dir, json_filename) + with open(json_file, 'w', encoding='utf-8') as f: + json.dump(report_data, f, ensure_ascii=False, indent=2) + print(f"\nDetailed analysis saved to: {json_file}") + + return report_data + +def main(): + """Main function to run the detailed comparison.""" + from config import config # Import config locally + + script_dir = os.path.dirname(__file__) + golden_standard_path = os.path.abspath(os.path.join(script_dir, config.evaluation["benchie_gold_file"])) + + if not os.path.exists(golden_standard_path): + print(f"FATAL: Golden standard file not found at {golden_standard_path}") + return + + results_dir = "full_dataset_results" + comparator = BenchIEDetailedComparator(golden_standard_path, results_dir) + + print("Generating detailed comparison for all configured models and strategies.") + + model_strategies = [] + for model in config.experiment.models: + for strategy in config.experiment.prompt_strategies: + model_name = config.get_model_config(model).name + model_strategies.append((model_name, strategy)) + + for model, strategy in model_strategies: + comparator.generate_report( + model_name=model, + strategy=strategy, + limit=None, + save_to_json=True + ) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/llm_IE/finetuning/judge_data.py b/GSoC25_H/llm_IE/finetuning/judge_data.py new file mode 100644 index 0000000..8ced13e --- /dev/null +++ b/GSoC25_H/llm_IE/finetuning/judge_data.py @@ -0,0 +1,145 @@ +import openai +import os +import json +import time +from tqdm import tqdm + +client = openai.OpenAI(api_key=os.environ["OPENAI_API_KEY"]) + +JUDGING_MODEL = "gpt-4o-mini" +INPUT_FILE = "synthetic_bench_hindie_data_gpt_oss_120b.jsonl" +OUTPUT_FILE = "synthetic_bench_hindie_data_gpt_oss_120b-scored.jsonl" + +JUDGING_PROMPT_TEMPLATE = """ +**Your Role:** You are an expert Hindi linguist and a meticulous data quality analyst. Your task is to act as a judge, evaluating the quality of synthetically generated data points for a Subject-Relation-Object (SRO) triplet extraction task. Each data point consists of a Hindi sentence and its corresponding SRO extractions, which will be used to fine-tune a smaller language model. Your evaluation must be strict and aligned with the "Bench-HindIE" benchmark's implicit rules. + +**Evaluation Criteria (CRITICAL):** +You will evaluate each data point on a scale of 1 to 10 based on the following criteria. Your primary goal is to determine if this data point is "good enough for fine-tuning," meaning it will teach the smaller model correct, precise, and complete extraction patterns. + +1. **Source Sentence Quality (Weight: 20%):** + * **10/10:** The Hindi sentence is grammatically correct, natural, and complex enough to be a valuable training example. + * **<5/10:** The sentence is grammatically awkward, unnatural, or nonsensical. Training on this could harm the model. + +2. **Span Exactness (Weight: 30%):** + * **10/10:** ALL subjects, relations, and objects in `extracted_triplets` are **exact, contiguous substrings** of the original `hindi_sentence`. There are no added, removed, or altered words. + * **<5/10:** One or more spans are not exact substrings (e.g., they paraphrase, miss prepositions like 'से', or are otherwise altered). This is a critical failure. + +3. **Semantic Correctness of Core Triplets (Weight: 30%):** + * **10/10:** The main verb-based triplets accurately capture the primary events and facts of the sentence. The subject-relation-object mapping is logical and correct (e.g., passive voice agents are handled correctly, causal agents are not confused with subjects of state-of-being verbs). + * **<5/10:** The core triplets misinterpret the sentence's meaning (e.g., reversing the direction of an action, assigning the wrong subject to a verb). This is a critical failure. + +4. **`property` Relation Quality (Weight: 20%):** + * **10/10:** `property` relations are used precisely and consistently for adjectival, possessive, and circumstantial attributes. The extractions are comprehensive without being overly granular or redundant. + * **7/10:** `property` relations are generally correct but miss some opportunities or are slightly inconsistent. + * **<5/10:** `property` relations are used incorrectly, are overly granular (e.g., breaking down every word), or miss many obvious attributes. + +**Output Format:** +For each data point you evaluate, you MUST return a single, valid JSON object with the following structure. Do not add any text before or after the JSON object. + +```json +{ + "score": , + "justification": "A detailed explanation for the score, referencing the specific criteria. Point out any errors in span exactness, semantic correctness, or property usage. If it's a good example, explain why." +} +``` + +**Few-Shot Examples for Judging (How to Apply the Criteria):** + +--- +**Example to Judge 1 (This is a GOOD example):** +* **Sentence:** `कृत्रिम बुद्धिमत्ता को दर्शाता है वह तकनीकी क्षेत्र, जिसका आरम्भ 2010 में राष्ट्रीय विज्ञान संस्थानों द्वारा शुरू हुई।` +* **Triplets:** `[{"subject": "वह तकनीकी क्षेत्र", "relation": "दर्शाता है", "object": "कृत्रिम बुद्धिमत्ता को"}, {"subject": "आरम्भ", "relation": "शुरू हुई", "object": "राष्ट्रीय विज्ञान संस्थानों द्वारा"}, ...]` +* **Your Judgement:** + ```json + { + "score": 10, + "justification": "Excellent. The source sentence is complex and grammatically correct. All spans are exact and contiguous. The core triplets for 'दर्शाता है' and 'शुरू हुई' are semantically correct. The property relations are precise and well-justified. This is a high-quality data point for fine-tuning." + } + ``` + +--- +**Example to Judge 2 (This is a BAD example):** +* **Sentence:** `डॉ. अलीशा बत्रा को जीवविज्ञान एवं रसायन विज्ञान के क्षेत्र में नैनोप्रौद्योगिकी के नवाचार के लिए राष्ट्रीय विज्ञान पुरस्कार (विज्ञान मंत्रालय द्वारा) से सम्मानित किया गया...` +* **Triplets:** `[{"subject": "डॉ. अलीशा बत्रा", "relation": "सम्मानित किया गया", "object": "जीवविज्ञान एवं रसायन विज्ञान के क्षेत्र में नैनोप्रौद्योगिकी के नवाचार के लिए राष्ट्रीय विज्ञान पुरस्कार (विज्ञान मंत्रालय द्वारा) से"}, ...]` +* **Your Judgement:** + ```json + { + "score": 4, + "justification": "Not good enough. The main triplet suffers from a critical 'Overly Broad Object' error. The object for 'सम्मानित किया गया' lumps together the reason, the award, and the giver into one long, imprecise span. This would teach the smaller model a harmful pattern. A high-quality extraction would break this down into multiple, more precise triplets for the award, the reason, and the giver separately. While property relations are okay, the core triplet's flaw is too significant." + } + ``` + +--- +**Example to Judge 3 (This is a BAD example):** +* **Sentence:** `हिमालय व कश्मीर से प्रसिद्ध नदी...भूमिगत जलभण्डार से निरंतर प्रवाहित होता है।` +* **Triplets:** `[{"subject": "हिमालय व कश्मीर से प्रसिद्ध नदी", "relation": "प्रवाहित होता है", "object": "भूमिगत जलभण्डार"}, ...]` +* **Your Judgement:** + ```json + { + "score": 2, + "justification": "Not good enough due to a critical semantic error. The main triplet's object is 'भूमिगत जलभण्डार', but the sentence says the river flows *from* ('से') the reservoir. The object span is not exact as it misses the crucial preposition 'से', reversing the meaning of the action. This is a harmful error that would teach the model to ignore prepositions." + } + ``` +--- + +**Your Task:** Now, evaluate the following data point and provide your judgement in the specified JSON format. +""" + +def get_judgement(data_point_str): + """ + Prompts the judge LLM to evaluate a single data point. + """ + final_prompt = f"{JUDGING_PROMPT_TEMPLATE}\n\n**Data Point to Evaluate:**\n{data_point_str}" + + try: + response = client.chat.completions.create( + model=JUDGING_MODEL, + messages=[{"role": "user", "content": final_prompt}], + temperature=0.0, + response_format={"type": "json_object"} + ) + judgement_str = response.choices[0].message.content + return json.loads(judgement_str) + except Exception as e: + print(f"Error calling OpenAI API: {e}") + return {"score": -1, "justification": f"API Error: {e}"} + + +def main(): + if not os.path.exists(INPUT_FILE): + print(f"Error: Input file '{INPUT_FILE}' not found.") + return + + with open(INPUT_FILE, 'r', encoding='utf-8') as infile: + data_points = [json.loads(line) for line in infile] + + print(f"[*] Found {len(data_points)} data points in '{INPUT_FILE}'.") + print(f"[*] Starting evaluation with model '{JUDGING_MODEL}'.") + print(f"[*] Scored data will be saved to '{OUTPUT_FILE}'.") + + with open(OUTPUT_FILE, 'w', encoding='utf-8') as outfile: + for data_point in tqdm(data_points, desc="Judging Data Points"): + # prepare the data point string for the judge + # we don't need the 'messages' or 'role' wrappers for the judge, just the content + user_content = next((msg['content'] for msg in data_point['messages'] if msg['role'] == 'user'), '') + + # The assistant content is a JSON string, so we need to parse it first + assistant_content_str = next((msg['content'] for msg in data_point['messages'] if msg['role'] == 'assistant'), '{}') + try: + assistant_content_json = json.loads(assistant_content_str) + except json.JSONDecodeError: + assistant_content_json = {"thought_process": "INVALID JSON", "extracted_triplets": []} + + # format it nicely for the judge to read + data_to_judge_str = f"Sentence: `{user_content}`\n\nExtractions:\n```json\n{json.dumps(assistant_content_json, indent=2, ensure_ascii=False)}\n```" + # print(f"data_to_judge_str: {data_to_judge_str}") + + judgement = get_judgement(data_to_judge_str) + data_point['judgement'] = judgement + outfile.write(json.dumps(data_point, ensure_ascii=False) + "\n") + + time.sleep(1) # not required because running locally + print(f"\n[+] Evaluation complete. Scored data saved to '{OUTPUT_FILE}'.") + +if __name__ == "__main__": + main() diff --git a/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_2.py b/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_2.py new file mode 100644 index 0000000..4e29e60 --- /dev/null +++ b/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_2.py @@ -0,0 +1,413 @@ +import google.generativeai as genai +import json +import time +import random +from tqdm import tqdm +import zipfile +import os + +api_key = "" +genai.configure(api_key=api_key) + + +GENERATION_MODEL = "gemini-2.5-flash" +TOTAL_EXAMPLES_TO_GENERATE = 10000 +OUTPUT_SYNTHETIC_DATA_FILE = "synthetic_data_v2/synthetic_bench_hindie_data_gemini_v3.jsonl" + + +SEMANTIC_CONCEPTS = { + "Becoming & Appointment": ["बने", "बन चुके हैं", "नियुक्त हुई", "निदेशक बने", "घोषित किया गया", "एक प्रमुख हस्ती बन चुके हैं", "आजाद हुआ"], + "Initiation & Beginning": ["शुरू की", "शुरू हुई", "आरम्भ हुई", "सुनवाई शुरू हुई", "आधारशिला रखी गयी थी", "बोलीवुड करियर की शुरुआत की"], + "Creation & Composition": ["लिखे गये", "लिखे हैं", "लिखा है", "कहानियाँ लिखे हैं", "संगीत रचना की", "निर्माण करते थे", "लेखबद्ध किये गये हैं"], + "Action, Performance & Execution": ["आयोजित करना", "परीक्षण करना", "द्वारा भेजे गए", "लागू किया गया है", "जारी किया गया", "भेज दिया गया", "संचालित है", "उपयोग किया जाता है", "पेश किया", "लागू किया जाता है", "विभाजित किया है", "पहनाती हैं", "करनी पड़ी", "बचाना", "निर्धारण किया जाता है", "सम्पन्न हुआ", "आज़ाद कराया", "दी जाती है", "करता है", "उपासना करता हूं", "इंकार कर दिया", "स्थानापन्न करना है", "पेश हुए", "रखा गया", "मनाए जाते हैं", "रिलीज़ किया गया", "लगाया जाता है", "डाल दिया", "सुधारा", "पता लगाया", "प्रयुक्त होती है", "प्रकाशित हुए हैं", "बेहतर कर दिया था", "हत्या नहीं करवाई", "प्रोत्साहित करते हैं", "प्रयोग होता था", "प्रयोग में आता है", "रोक रखा जाता है", "मनाया जाता है", "करते थे"], + "Existence & State": ["सििद्ध होती है", "मौजूद है", "थे", "थी", "है", "हैं", "नहीं था", "नहीं है", "शेष हैं", "होता है", "हो सकती हैं", "स्थित है", "स्थित हैं", "में स्थित है", "हिस्सा है", "उदगम स्थान है", "भण्डार है", "प्रमुख हिल स्टेशन है", "एक गाँव है", "दर्शनीय केन्द्र है", "बस सेवा है", "दिखाई पड़ती थी", "प्रथम भारतीय हैं", "योगदानकर्त्ता है", "सारांश है", "बटे हुए हैं", "पीड़ित", "मिलते नहीं है", "नहीं थे"], + "Reception & Achievement": ["पाया", "दर्जा पाया", "प्राप्त करने वाले", "सम्मानित किया गया था", "जीता", "उल्लेखनीय है"], + "Being Known As & Referring To": ["जाना जाता है", "के नाम से जाना जाता है", "नाम से प्रसिद्ध है", "प्रसिद्ध है", "प्रसिद्ध हैं", "कहा जाता है", "संदर्भित करता है", "उल्लेख मिलता है", "दर्शाता है", "वेदाङ्ग का प्रतिनिधित्व करता है", "स्थान का नाम पड़ा", "देखा जाता है"], + "Movement & Occurrence": ["प्रवाहित होता है", "वापसी हुई", "मुकाबला हुआ", "सामना होता है", "मृत्यु हो गई", "देहांत हो गया", "बदल रहे हैं", "स्थान लिया", "बहने वाली", "हो रही"], + "Possession & Relation": ["जुड़ा है", "संपर्क में है", "संपर्क रहा है", "योगदान है", "प्राधान्य था", "जिनके होते हैं", "अंतर्गत होते हैं"], + "Causation & Dependence": ["निर्भर रहती है", "मूल कारण होता है", "उत्पन्न होने के"], + "Cognition, Perception & Preference": ["सोचा", "पसंद करते हैं", "देखें"], + "Modality & Obligation": ["होने चाहिये", "आवश्यक है", "बचाना आवश्यक है"] +} + +STRUCTURE_TEMPLATES = [ + "A sentence describing a cause-and-effect relationship using a verb participle ('देखकर').", + "A sentence fragment with an infinitive verb ('करना'), specifying an action, its object, and a location with a parenthetical time marker.", + "A sentence fragment with an infinitive verb ('करना'), where the object is modified by a passive participle phrase ('द्वारा भेजे गए') that includes a list of two agents joined by 'एवं'.", + "A sentence where the subject is described by an adjectival phrase ('...से प्रसिद्ध') and is located within a list of two items joined by 'व'.", + "A sentence with a full date, an agent, an action verb, and an object which is further identified by a name in quotes.", + "A passive voice sentence stating an implementation, containing a full date with 'से' and a location.", + "A sentence starting with a partial date followed by a colon, describing an event ('सुनवाई') beginning at a specific, nested location.", + "A sentence stating an appointment to a position, including a full date and the organization associated with the position.", + "A sentence defining a percentage of people using a relative clause ('जिनका') that contains a negative statement.", + "A passive voice sentence describing an issuance, with a full date, an agent ('द्वारा'), and an object.", + "An active voice sentence where a subject achieves a status, including a date and additional information using 'के साथ'.", + "A passive voice sentence about a release, containing a full date and a list of two locations joined by 'और'.", + "An active voice sentence describing a replacement, specifying the new person, the old person, the role ('के रूप में'), and a date.", + "A sentence describing liberation from a source ('...से'), including a full date.", + "A complex passive voice sentence detailing a person being sent to a destination, including a date, an agent ('द्वारा'), and accompanying people ('के साथ').", + "A compound sentence joined by 'और', with the first clause in passive voice (a declaration with a date) and the second in active voice (a person becoming a role).", + "A sentence defining a subject, followed by a relative clause ('जो') that provides temporal context using 'के साथ'.", + "A sentence describing a visible quality at a location, with a temporal phrase ('... से ही').", + "An active voice sentence describing a person becoming a prominent figure in a specific field, framed by a time period ('तब से अब तक').", + "A definitional sentence where the subject is described as the superlative of its own category, with its purpose defined by a participle phrase ('...के लिए प्रयोग किया जाने वाला').", + "A sentence describing an action that occurred after a preceding event, indicated by '...करने के बाद'. The object is a location specified with an appositive ('[country] की राजधानी [city]').", + "A sentence identifying a person as 'the first' to do something, where the achievement is described in a long participle phrase involving an award, a giver, and a field of activity with two items joined by 'एवं'.", + "A passive voice sentence stating that aid is given to a recipient, with the duration specified by a condition ending in '... तक'.", + "A sentence defining a place's purpose ('...के लिए') and nature, with a temporal adverb ('आज भी').", + "A sentence stating a representation relationship, introduced by a contextual phrase ('इस सम्बन्ध में').", + "An active voice sentence where the action is justified or explained by a preceding participle phrase ('...समझकर').", + "A sentence stating that a mention ('उल्लेख') is found in a source, where the subject of the mention is a subset ('...में से चार') of a larger group defined by a participle phrase ('...बहने वाली').", + "An active voice sentence describing a refusal ('इंकार कर दिया') of an action involving an infinitive ('देने से').", + "A sentence describing a connection or link ('...से जुड़ा है') between two fields of study.", + "A sentence defining a subject (a train with a number), where the predicate includes a description and a passive participle phrase ('...द्वारा संचालित') indicating the operator.", + "A definitional sentence stating the status of a location within a larger region, with a temporal adverb ('वर्तमान में').", + "A sentence defining a location (village) by specifying its place within a deeply nested administrative hierarchy (Tehsil, District, Division, State, Country).", + "A sentence expressing necessity or a plan using an infinitive + 'है' construction, indicating a relocation to a specific city.", + "A sentence describing an event occurring before a list of two individuals, each identified with a title, joined by 'और'.", + "A sentence stating a person's death, including a full date and a cause introduced by 'की वजह से'.", + "A sentence with a conditional or temporal cause-and-effect structure using 'जब ... तो'.", + "A sentence describing a confrontation between two parties, including the year and the phrase 'एक बार फिर'.", + "A sentence defining a location (village) by specifying its place within a nested administrative hierarchy (Mandal, District, State, Country).", + "A passive voice sentence stating that multiple items ('अनेक ग्रन्थ') were created on a specific topic, with a temporal adverb ('बाद में').", + "An active voice sentence with an elided subject, stating that someone assumed a role at a specific institute in a city, including the year.", + "A passive voice sentence about naming a place, where the basis for the name is indicated by '...के नाम पर'.", + "A sentence describing a preference ('पसंद करते हैं') for an action, with the action's location and an accompanying adverbial phrase ('...से दूर').", + "A sentence describing a return ('वापसी हुई'), specifying the date, role ('के रूप में'), and using the phrase 'एक बार फिर'.", + "A passive voice sentence describing the laying of a foundation, with a full date and an agent specified by 'के द्वारा'.", + "A sentence describing a state of being ('संपर्क में है') with another party, including a purpose ('...के लिए').", + "A passive voice sentence about a person being honored with an award, specifying the field, the year, and the award name.", + "An active voice sentence describing an action done for a new domain, in addition to a previously mentioned one ('...के अतिरिक्त').", + "A passive voice sentence describing the use of a substance, specifying the manner ('... रूप से') and context.", + "A passive voice sentence describing a celebration, where the subject belongs to a list of two groups joined by 'और' and the manner is specified as 'मिलजुल कर'.", + "A passive voice sentence about a release, containing a full date and a list of three or more locations.", + "A passive voice sentence describing a recurring event ('हर साल') at a nested location (city within a country).", + "An active voice sentence where the agent performs an action after another action described by a participle ('...बढ़ कर').", + "A passive voice sentence describing a celebration, specifying a wide geographical area and a time frame using '...के दौरान'.", + "A sentence stating that something is 'notable' ('उल्लेखनीय है'), where the subject involves the use of a list of three items joined by a comma and 'और'.", + "An active voice sentence describing an action that was performed in addition to another, specified with '...के साथ ही'.", + "A definitional sentence using 'कहते हैं' to name a category of things.", + "A sentence stating that something is famous by a specific name, using the structure '...के नाम से प्रसिद्ध है'.", + "A sentence describing a relationship ('संपर्क रहा है') with a list of two entities joined by 'तथा'.", + "A sentence where a discovery ('पता लगाया') is made through a specific action ('...करके'), with the discovery detailed in a subordinate clause starting with 'कि'.", + "A sentence describing the use of an object in a location, where the location is associated with materials specified with 'आदि'.", + "An active voice sentence about creation, where the object is a list of two items joined by 'और', and the manner is specified ('इस शैली में').", + "A sentence defining a person's role, which is modified by a list of two 'first' attributes joined by 'और'.", + "An active voice sentence describing the presentation of a formal document, including a full date, an agent, and the document's owner and type.", + "A sentence describing dependency ('निर्भर रहती है') on a specific activity, qualified by an adverbial phrase ('लगभग पूरी तरह से').", + "A short passive voice sentence about an application, using the adverbial phrase 'साथ ही'.", + "A passive voice sentence stating a person's alias, using the structure '...के नाम से जाना जाता है'.", + "An imperative sentence giving an instruction ('देखें'), prefaced by a purpose clause ('...के लिए') and a politeness marker ('कृपया').", + "A sentence describing the flow ('प्रवाहित होता है') of a major part ('ज्यादातर अंश') of a geographical feature through a location.", + "A compound sentence where the first clause defines a place as part of another, followed by a relative clause ('जिसमें') specifying another location within it.", + "A sentence defining a capital city, followed by a non-restrictive relative clause ('जो') that describes its role as a contributor to a list of two fields joined by 'एवं'.", + "A sentence stating the reason for fame ('...के लिए प्रसिद्ध हैं'), where the reason involves an object modified by a list of two adjectives joined by 'और'.", + "A sentence stating that a list of two types of literary collections, joined by 'और', have been published.", + "An active voice sentence about writing a work, where the agent's name is followed by a parenthetical time period.", + "A sentence describing the location of two different places in relation to a central subject, using parallel directional phrases ('...के पश्चिम में' and '...के दक्षिण में').", + "A sentence specifying the location ('स्थित है') of a venue within a nested geographical hierarchy (city within a country).", + "A compound sentence providing a definition, with the first clause stating what something is and the second, contrastive clause stating what it is not.", + "A sentence using 'कहते हैं' to define a technical term, where the definition is a complex phrase describing a process.", + "An active voice sentence describing a division into a list of two items joined by 'और', framed by a perspective-setting phrase ('...की दृष्टि से').", + "A sentence expressing a presumption about a past event ('...लगी होंगी'), starting with the conjunction 'पर'.", + "A sentence defining a term by explaining what it represents ('...को दर्शाता है').", + "An active voice sentence describing an action, set within a complex contextual phrase ('... के मध्य') which itself contains an agent ('द्वारा').", + "A sentence describing disagreement ('बटे हुए हैं') on a topic, where the topic is elaborated in a subordinate clause starting with 'कि' which contains an interrogative ('किस वर्ष').", + "A sentence describing an organizational structure, followed by a relative clause ('जिनके') that details a property of the previously mentioned unit.", + "A passive voice sentence about a release, containing multiple temporal phrases ('...के बाद', '...के मध्य में').", + "A sentence expressing a clear cause-and-effect relationship using the 'चूंकि... अतः' structure.", + "An active voice sentence describing an improvement for a group of people, where the group is defined by a participle phrase ('...से पीड़ित').", + "A sentence stating a contribution to a field (which is a list of two items joined by 'और'), using a comparison with another person ('...के समान').", + "A passive voice sentence documenting an occurrence, introduced by 'उदाहरणार्थ' and specifying a condition with a time range.", + "A sentence presenting a contrast between two situations using the 'जहां..., ...' structure, with the second clause being negative.", + "A sentence expressing a necessary property ('...होने चाहिये') of a subject in a specific location.", + "An active voice sentence describing a rapid change, specifying multiple levels of location and a complex subject.", + "A sentence describing the start of a career with a specific work, followed by a non-restrictive relative clause ('जिसे') in passive voice providing release information for that work.", + "A sentence stating that an action ('...बचाना') is necessary ('आवश्यक है'), where the object of the action is a list of two items joined by 'एवं'.", + "A sentence of clarification using 'संदर्भित करता है', stating what is being referred to and then, using 'न कि', what is not, with the negated part containing a list joined by 'या'.", + "A sentence describing a transport service between a source ('...से') and a destination ('...के लिए').", + "A sentence describing the use of an object, followed by a relative clause ('जिसका') that specifies who created that object.", + "A sentence explaining the usage of a word ('... प्रयोग में आता है'), where the entity it refers to is described by a participle phrase ('... बनाने वाली').", + "A compound sentence joined by 'और', with both clauses using 'स्थित है' to describe the location of the same subject in two different ways.", + "A sentence stating a negative action, followed by a comparative clause introduced by 'जैसाकि' that describes a contrary common practice.", + "A passive voice sentence describing a determination, specifying the method with a participle ('...फेंककर'), the beneficiary ('...के लिये'), and prefaced by 'सर्वप्रथम'.", + "A simple definitional sentence stating a root cause ('मूल कारण') relationship.", + "A sentence explaining a reason for fame using the 'यही कारण है कि...' structure, where the fame itself is attributed to a cause using '...के कारण'.", + "A sentence defining a place of origin ('उदगम स्थान') with a highly descriptive, multi-part location predicate.", + "A sentence describing the predominance ('प्राधान्य था') of a subject in a specific region and time period ('उन दिनों').", + "A sentence expressing possibility ('...हो सकती हैं') regarding the origin of a subject, with the origins being a list of two items joined by 'या'.", + "A sentence introducing a set of reasons, followed by a relative clause ('जोकि') explaining the function of these reasons.", + "A sentence with an elided subject describing an event's conclusion ('सम्पन्न हुआ') at a specific time under a given name ('...के नाम से').", + "A sentence describing a person's death, containing multiple, layered temporal and locational phrases.", + "A sentence providing a name for something (passive voice) and then giving the reason in a second clause (also passive voice) introduced by 'क्योंकि'.", + "A sentence stating that a person achieved a certain numbered rank/position, followed by a relative clause ('जिन्होंने') that specifies the accomplishment justifying that rank.", + "A short passive voice sentence describing retention, including an instrument ('...से') and a location ('...में').", + "A definitional sentence describing a subject as a repository ('भण्डार') of multiple items indicated by a list ending in 'आदि'." +] + +ANNOTATION_GUIDELINES_FOR_LLM = """ +Annotation Guidelines (CRITICAL - Derived from Bench-HindIE evaluation): + +1. Triplet Definition: An SRO triplet consists of a `subject`, a `relation`, and an `object`. All three must be **exact, contiguous text spans directly from the original sentence**. +2. Span Exactness & Minimality: + * Precision is paramount. Do not add, remove, or alter words within a span. The extracted span must be an identical substring of the original sentence. + * Prefer the most concise, meaningful span that still captures the full intent. + * Do not include extraneous punctuation (e.g., trailing `.` or `,`) in the SRO spans unless it is an integral part of the phrase (e.g., `अक्टूबर को ,` if it's the subject). +3. Relation Types: + * Action-based Relations: Prefer verb phrases (single verb or multi-word expressions) as relations. + * `property` Relation (Strict & Specific Usage): Use `property` exclusively for: + * Adjective-Noun Attributes: (e.g., `दूसरा -> property -> सीज़न`, `अनूठी -> property -> आभा`, `विशेष -> property -> धर्म`). + * Possessive/Belonging: (e.g., `केन्द्रीय -> property -> सरकार के विभागों`, `भारत -> property -> सरकार के उपक्रमों`). + * Circumstantial Attributes/Phrases that describe a characteristic or context of an entity/action but are not the main verb: (e.g., `01 अगस्त 1907 को -> property -> शुरू की` (temporal attribute of an action), `1958 से -> property -> अखिल भारतीय पुलिस डयूटी मीट` (temporal attribute of an entity/event), `योग एवं शिक्षा के क्षेत्र में -> property -> राष्ट्रपति` (domain attribute)). + * Important: The `property` relation should connect meaningful, larger phrases where appropriate, and should not be overly granular or redundant. +4. Completeness & Non-Redundancy: + * Extract ALL distinct and meaningful SRO triplets from the sentence, including both core event-based relations and relevant `property` relations. + * If a sentence has multiple independent facts or clauses, generate a triplet for each. + * Crucial: Do not generate identical or semantically identical duplicate triplets. Each triplet in the `extracted_triplets` array must be unique. + * Infer implied subjects/objects only if they are standard grammatical ellipses in Hindi and result in a clearly understood, unique triplet, and match Bench-HindIE's typical inference patterns. Prioritize explicit mentions. +5. Handling of Complex Sentences: + * For sentences with multiple clauses, relative pronouns (`जो`, `जिसने`, etc.), or conjunctions (`और`, `एवं`), break them down into separate, distinct triplets where each triplet is self-contained. + * Consider alternative valid extractions (`|OR|` in gold standard): If a sentence can be reasonably interpreted in multiple ways, generate all such valid, distinct triplets. +6. Sentence Generation: + * Generate new, grammatically correct, and natural-sounding Hindi sentences. + * Vary sentence complexity (simple, compound, complex), length, and syntactic structures (active/passive voice). + * Vary semantic domains (e.g., history, science, daily life, politics, art, geography, personal actions, etc.) to ensure diversity. +""" + +FEW_SHOT_LLM_EXAMPLES = [ + {"hindi_sentence": "कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है .", "thought_process": "Thought Process for Extraction:\n1. **Deconstruct Sentence:** The sentence implies that 'observing the manifested world' leads to the 'realization of illusory power'.\n2. **Identify Core Relation:** The main action is 'सििद्ध होती है' (is realized/proven).\n3. **Identify Subject & Object:** What is realized? 'शक्तिरूपी माया की'. This is the subject. How is it realized? 'कार्यरूप जगत को देखकर ही'. This is the object.\n * Core Triplet: `{\"subject\":\"शक्तिरूपी माया की\",\"relation\":\"सििद्ध होती है\",\"object\":\"कार्यरूप जगत को देखकर ही\"}`\n4. **Identify `property` Relations:** There are adjectives describing nouns.\n * 'शक्तिरूपी' describes 'माया की'. This is an adjectival property. Triplet: `{\"subject\":\"शक्तिरूपी\",\"relation\":\"property\",\"object\":\"माया की\"}`\n * 'कार्यरूप' describes 'जगत को'. This is an adjectival property. Triplet: `{\"subject\":\"कार्यरूप\",\"relation\":\"property\",\"object\":\"जगत को\"}`\n5. **Final Review:** All spans are exact. All meaningful relations are captured. The set is complete.", "extracted_triplets": [{"subject":"शक्तिरूपी माया की","relation":"सििद्ध होती है","object":"कार्यरूप जगत को देखकर ही"}, {"subject":"शक्तिरूपी","relation":"property","object":"माया की"}, {"subject":"कार्यरूप","relation":"property","object":"जगत को"}]}, + {"hindi_sentence": "केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना .", "thought_process": "Thought Process for Extraction:\n1. **Deconstruct Sentence:** This is a sentence fragment describing a task: to test disputed fingerprints sent by two types of government bodies.\n2. **Identify Core Relation:** The main action is the infinitive 'परीक्षण करना' (to examine/test).\n3. **Identify Subject & Object:** What is being examined? 'विवादित अंगुलि चिह्नों का'. In this structure, it acts as the subject of the action. Who is the agent? 'केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा'. This acts as the object.\n * Core Triplet: `{\"subject\":\"विवादित अंगुलि चिह्नों का\",\"relation\":\"परीक्षण करना\",\"object\":\"केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा\"}`.\n4. **Identify Secondary Relations:** There's a nested action: 'द्वारा भेजे गए' (sent by).\n * Who sent them? 'केन्द्रीय सरकार के विभागों'. What was sent? 'विवादित अंगुलि चिह्नों का'. Triplet: `{\"subject\":\"केन्द्रीय सरकार के विभागों\",\"relation\":\"द्वारा भेजे गए\",\"object\":\"विवादित अंगुलि चिह्नों का\"}`\n * Who else sent them? 'भारत सरकार के उपक्रमों'. What was sent? 'विवादित अंगुलि चिह्नों का'. Triplet: `{\"subject\":\"भारत सरकार के उपक्रमों\",\"relation\":\"द्वारा भेजे गए\",\"object\":\"विवादित अंगुलि चिह्नों का\"}`\n5. **Identify `property` Relations:** There are multiple descriptive attributes.\n * 'विवादित' describes 'अंगुलि चिह्नों का'. Triplet: `{\"subject\":\"विवादित\",\"relation\":\"property\",\"object\":\"अंगुलि चिह्नों का\"}`\n * 'केन्द्रीय' describes 'सरकार के विभागों'. Triplet: `{\"subject\":\"केन्द्रीय\",\"relation\":\"property\",\"object\":\"सरकार के विभागों\"}`\n * 'भारत' describes 'सरकार के उपक्रमों'. Triplet: `{\"subject\":\"भारत\",\"relation\":\"property\",\"object\":\"सरकार के उपक्रमों\"}`\n6. **Final Review:** All spans are exact and contiguous. The complex structure with multiple agents and actions is fully decomposed.", "extracted_triplets": [{"subject":"विवादित अंगुलि चिह्नों का","relation":"परीक्षण करना","object":"केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा"}, {"subject":"केन्द्रीय सरकार के विभागों","relation":"द्वारा भेजे गए","object":"विवादित अंगुलि चिह्नों का"}, {"subject":"भारत सरकार के उपक्रमों","relation":"द्वारा भेजे गए","object":"विवादित अंगुलि चिह्नों का"}, {"subject":"विवादित","relation":"property","object":"अंगुलि चिह्नों का"}, {"subject":"केन्द्रीय","relation":"property","object":"सरकार के विभागों"}, {"subject":"भारत","relation":"property","object":"सरकार के उपक्रमों"}]} +] + + +def create_structure_first_prompt(template_text, target_relation): + """Generates a prompt focused on replicating a specific structure WITH a known relation.""" + return f""" +{ANNOTATION_GUIDELINES_FOR_LLM} + +Your task is to generate a new, original Hindi sentence that embodies a specific grammatical structure and incorporates a target relation. + +**Structural Goal:** "{template_text}" +**Relational Goal:** The main action of your sentence must be based on the relation: **'{target_relation}'**. + +Create a new, creative, information-dense sentence from a domain like science, business, or history that perfectly merges this structure and relation. + +After generating the sentence, provide the `thought_process` for **extraction only**. Follow these steps: +1. Deconstruct the sentence's meaning. +2. Identify the core action/relation and its subject/object. +3. Identify any secondary relations (e.g., nested verbs). +4. Identify all circumstantial, adjectival, or possessive `property` relations. +5. Perform a final review of the extracted triplets for accuracy and completeness. + +Produce only the single JSON object as your output. +""" + +def create_multi_relation_prompt(relation1, relation2): + """Generates a prompt that forces the model to combine two different relations.""" + return f""" +{ANNOTATION_GUIDELINES_FOR_LLM} + +Your task is to craft a single, coherent, and complex Hindi sentence that naturally incorporates actions or states related to BOTH of the following target relations: +1. **Relation 1:** `{relation1}` +2. **Relation 2:** `{relation2}` + +Connect them logically (e.g., cause-and-effect, sequence of events). The sentence must be grammatically correct and information-dense. + +After generating the sentence, provide the `thought_process` for **extraction only**. Follow these steps: +1. Deconstruct the sentence's meaning, noting how the two relations are connected. +2. Identify the core triplet for the first relation. +3. Identify the core triplet for the second relation. +4. Identify all circumstantial, adjectival, or possessive `property` relations that modify any part of the sentence. +5. Perform a final review of the extracted triplets for accuracy and completeness. + +Produce only the single JSON object as your output. +""" + +def create_targeted_relation_prompt(relation): + """Generates a prompt for a single relation, but demands high complexity.""" + return f""" +{ANNOTATION_GUIDELINES_FOR_LLM} + +Your task is to generate a single, new, and complex Hindi sentence where the main action is based on the target relation: **{relation}**. + +The sentence MUST be information-dense, including details like dates, locations, titles, quantities, or other descriptive attributes which will result in multiple `property` relation extractions. + +After generating the sentence, provide the `thought_process` for **extraction only**. Follow these steps: +1. Deconstruct the sentence's meaning. +2. Identify the core action/relation ('{relation}') and its subject/object. +3. Identify any secondary relations (e.g., nested verbs). +4. Identify all circumstantial, adjectival, or possessive `property` relations. +5. Perform a final review of the extracted triplets for accuracy and completeness. + +Produce only the single JSON object as your output. +""" + + +def prepare_few_shot_history(examples): + """Converts few-shot examples into the Gemini API's chat history format.""" + history = [] + for ex in examples: + history.append({'role': 'user', 'parts': [ex["hindi_sentence"]]}) + model_response = json.dumps({ + "hindi_sentence": ex["hindi_sentence"], + "thought_process": ex["thought_process"], + "extracted_triplets": ex["extracted_triplets"] + }, ensure_ascii=False) + history.append({'role': 'model', 'parts': [model_response]}) + return history + +def generate_with_gemini(model, full_prompt_history): + """Centralized function to call the Gemini API and handle responses.""" + try: + response = model.generate_content(full_prompt_history) + time.sleep(1.5) # Respect rate limits + return response.text.strip() + except Exception as e: + print(f"!!! API Error: {e}") + print("!!! Waiting for 10 seconds before retrying...") + time.sleep(10) + return None + + +def select_relations_from_different_concepts(): + """Selects two relations from different semantic concepts.""" + # Get all concept names + concept_names = list(SEMANTIC_CONCEPTS.keys()) + + # Select two different concepts + concept1, concept2 = random.sample(concept_names, 2) + + # Select one relation from each concept + relation1 = random.choice(SEMANTIC_CONCEPTS[concept1]) + relation2 = random.choice(SEMANTIC_CONCEPTS[concept2]) + + return relation1, relation2, concept1, concept2 + + +def main(): + print(f"[*] Starting SOTA synthetic data generation using model '{GENERATION_MODEL}'...") + print(f"[*] Target: {TOTAL_EXAMPLES_TO_GENERATE} examples.") + print(f"[*] Output will be saved to '{OUTPUT_SYNTHETIC_DATA_FILE}'.\n") + + # Initialize Gemini Model + GEMINI_SYSTEM_INSTRUCTION = "You are an expert in Hindi linguistics and information extraction. Your task is to generate complex Hindi sentences and then meticulously extract all subject-relation-object (SRO) triplets from them, following a strict set of annotation guidelines. Your output must always be a single, valid JSON object." + generation_config = {"response_mime_type": "application/json"} + + model = genai.GenerativeModel( + model_name=GENERATION_MODEL, + system_instruction=GEMINI_SYSTEM_INSTRUCTION, + generation_config=generation_config + ) + + os.makedirs(os.path.dirname(OUTPUT_SYNTHETIC_DATA_FILE), exist_ok=True) + + prepared_history = prepare_few_shot_history(FEW_SHOT_LLM_EXAMPLES) + SYSTEM_PROMPT_FOR_FINETUNE = "Extract all subject-relation-object triplets from the given Hindi sentence. Your output must be a JSON object containing a 'thought_process' string and an 'extracted_triplets' array." + + # Prepare Data for Generation Strategies + all_relations = [relation for relations in SEMANTIC_CONCEPTS.values() for relation in relations] + random.shuffle(all_relations) + + generated_count = 0 + relation_index = 0 + max_attempts = TOTAL_EXAMPLES_TO_GENERATE * 2 # Allow for some failures + + with open(OUTPUT_SYNTHETIC_DATA_FILE, 'w', encoding='utf-8') as outfile: + # Main progress bar for successful generations + pbar = tqdm(total=TOTAL_EXAMPLES_TO_GENERATE, desc="Generating examples", unit="example") + attempt_count = 0 + + while generated_count < TOTAL_EXAMPLES_TO_GENERATE and attempt_count < max_attempts: + attempt_count += 1 + + # Weighted Strategy Selection + strategy = random.choices( + ['structure_first', 'multi_relation', 'targeted_relation'], + weights=[0.50, 0.30, 0.20], # Prioritize structure-first + k=1 + )[0] + + prompt_content = "" + if strategy == 'structure_first': + template_text = random.choice(STRUCTURE_TEMPLATES) + target_relation = all_relations[relation_index] + relation_index = (relation_index + 1) % len(all_relations) + pbar.write(f"[*] Strategy: Structure-First | Relation: '{target_relation}'") + prompt_content = create_structure_first_prompt(template_text, target_relation) + + elif strategy == 'multi_relation' and len(SEMANTIC_CONCEPTS) > 1: + rel1, rel2, concept1, concept2 = select_relations_from_different_concepts() + pbar.write(f"[*] Strategy: Multi-Relation | Relations: '{rel1}' ({concept1}) & '{rel2}' ({concept2})") + prompt_content = create_multi_relation_prompt(rel1, rel2) + + else: # Fallback to targeted_relation + strategy = 'targeted_relation' + target_relation = all_relations[relation_index] + relation_index = (relation_index + 1) % len(all_relations) + pbar.write(f"[*] Strategy: Targeted Relation | Relation: '{target_relation}'") + prompt_content = create_targeted_relation_prompt(target_relation) + + messages_for_llm_call = prepared_history + [{'role': 'user', 'parts': [prompt_content]}] + + raw_llm_output = generate_with_gemini(model, messages_for_llm_call) + + if raw_llm_output: + try: + llm_data = json.loads(raw_llm_output) + hindi_sentence = llm_data.get("hindi_sentence") + thought_process_text = llm_data.get("thought_process") + extracted_triplets_list = llm_data.get("extracted_triplets") + + if not (hindi_sentence and thought_process_text and isinstance(extracted_triplets_list, list)): + pbar.write(f"[-] LLM output missing required keys or has wrong types. Skipping.") + pbar.write(f" Raw Faulty Output: {raw_llm_output[:300]}...") + continue + + fine_tune_assistant_response_object = { + "thought_process": thought_process_text, + "extracted_triplets": extracted_triplets_list + } + assistant_content_for_finetune = json.dumps(fine_tune_assistant_response_object, ensure_ascii=False) + mlx_lm_entry = { + "messages": [ + {"role": "system", "content": SYSTEM_PROMPT_FOR_FINETUNE}, + {"role": "user", "content": hindi_sentence}, + {"role": "assistant", "content": assistant_content_for_finetune} + ] + } + + outfile.write(json.dumps(mlx_lm_entry, ensure_ascii=False) + "\n") + outfile.flush() + generated_count += 1 + pbar.update(1) + pbar.write(f"[+] Success! Example {generated_count} saved.\n") + + except json.JSONDecodeError as e: + pbar.write(f"[-] JSON decoding error: {e}. Skipping.") + pbar.write(f" Raw Faulty Output:\n{raw_llm_output[:500]}...\n") + except Exception as e: + pbar.write(f"[-] Unexpected error processing output: {e}. Skipping.\n") + else: + pbar.write("[-] Generation failed. Moving to next attempt.\n") + + pbar.close() + success_rate = (generated_count / attempt_count) * 100 if attempt_count > 0 else 0 + print(f"\n[+] Data generation complete.") + print(f"[+] Total examples generated: {generated_count}") + print(f"[+] Total attempts made: {attempt_count}") + print(f"[+] Success rate: {success_rate:.1f}%") + print(f"[+] Output saved to '{OUTPUT_SYNTHETIC_DATA_FILE}'.") + + # Zip the output file + zip_path = "combined_synthetic_data.zip" + print(f"\n[*] Creating zip archive at '{zip_path}'...") + try: + with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: + zipf.write(OUTPUT_SYNTHETIC_DATA_FILE, os.path.basename(OUTPUT_SYNTHETIC_DATA_FILE)) + print(f"[+] Successfully created zip archive") + except Exception as e: + print(f"[-] Error creating zip archive: {e}") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_gemini.py b/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_gemini.py new file mode 100644 index 0000000..73a6721 --- /dev/null +++ b/GSoC25_H/llm_IE/finetuning/synthetic_data_gen_gemini.py @@ -0,0 +1,200 @@ +# Dependencies +# pip install google-generativeai tqdm + +import google.generativeai as genai +import os +import argparse +import time +import json +from tqdm import tqdm +import shutil + +# API_KEY = os.environ.get("GEMINI_API_KEY") +# if not API_KEY: +# raise ValueError("GEMINI_API_KEY environment variable not set. Please set it to your API key.") + +genai.configure(api_key="") + +PROMPT_TEMPLATE = """ +You are an expert in Hindi linguistics and information extraction, following the ReAct (Reason, Act) methodology. Your task is to generate a high-quality synthetic data point for training a relation extraction model. + +**Your Goal:** For the given topic, generate one diverse and informative Hindi sentence, then extract its relation triples into a structured JSON format. + +**Methodology: ReAct (Reason -> Act)** + +**1. Reason (Think step-by-step):** + - First, analyze the topic: **{topic}**. + - Brainstorm potential scenarios or facts. Think about entities, actions, properties, and nested information. Aim for complexity. + - Formulate a natural-sounding Hindi sentence. + - Plan the extraction. Identify main triples and any property-of relations. Group into clusters if necessary. + +**2. Act (Generate JSON):** + - After reasoning, generate a single, valid JSON object. + - **Important:** Do not output your reasoning process or any other text. Output ONLY the final JSON object. + +**JSON Schema and Instructions:** + +The JSON object must have two keys: `thought` and `extraction`. + +- `thought`: A string containing your reasoning process as described above. +- `extraction`: A JSON object with the following structure: + - `sentence`: (string) The generated Hindi sentence. + - `clusters`: (array of objects) A list of extraction clusters. Usually just one, but more if there are distinct interpretations. + - Each cluster object has: + - `comment`: (string) A brief explanation of what this cluster represents. + - `extractions`: (array of objects) A list of all extractions for this cluster. + - Each extraction object has: + - `subject`: (string) The subject of the triple. + - `relation`: (string) The relation of the triple. + - `object`: (string) The object of the triple. + - `id`: (optional string) A unique letter (e.g., 'a', 'b', 'c') if this extraction is a property that will be referenced by another extraction. + - **Formatting Rules for `subject` and `object` strings:** + - To mark a part of an argument as optional, enclose it in square brackets. Example: `प्राग [को]` + - To link to a property extraction, use curly braces with the `id` of the property extraction. Example: `[चेकोस्लोवाकिया की राजधानी]{{a}} प्राग को` references the property extraction with `id: 'a'`. + +**Example of the Final JSON Output:** + +```json +{{ + "thought": "The topic is 'history'. I will create a sentence about the Soviet forces liberating Prague after capturing Berlin. This involves multiple actions and locations. Main extraction: Soviets liberated Prague. A property of the Soviets is that they captured Berlin first. A property of Prague is that it's the capital of Czechoslovakia. This nesting requires multiple property extractions. I will create one cluster for this primary interpretation.", + "extraction": {{ + "sentence": "बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया .", + "clusters": [ + {{ + "comment": "Primary extraction focusing on the liberation of Prague, with related properties.", + "extractions": [ + {{ + "subject": "सोवियत दस्तों ने", + "relation": "आज़ाद कराया", + "object": "[चेकोस्लोवाकिया की राजधानी]{{a}} प्राग को" + }}, + {{ + "subject": "सोवियत दस्तों ने", + "relation": "property", + "object": "बर्लिन पर क़ब्ज़ा [करने के बाद]" + }}, + {{ + "id": "a", + "subject": "[चेकोस्लोवाकिया की]{{b}} राजधानी", + "relation": "property", + "object": "प्राग [को]" + }}, + {{ + "id": "b", + "subject": "राजधानी", + "relation": "property", + "object": "चेकोस्लोवाकिया की" + }} + ] + }} + ] + }} +}} +``` + +Now, for the topic **"{topic}"**, generate one such JSON object. +""" + +def generate_synthetic_data(model, topic): + """ + Calls the Gemini API to generate a single synthetic data point as a JSON object. + Returns the parsed JSON object or None if an error occurs. + """ + prompt = PROMPT_TEMPLATE.format(topic=topic) + try: + response = model.generate_content( + prompt, + generation_config=genai.types.GenerationConfig( + response_mime_type="application/json", + temperature=0.8, + ) + ) + return json.loads(response.text) + except (json.JSONDecodeError, ValueError) as e: + print(f"Error parsing JSON from API response: {e}") + print(f"Received text: {response.text}") + return None + except Exception as e: + print(f"An API error occurred: {e}") + time.sleep(60) + return None + +def main(): + """Main function to run the data generation pipeline.""" + parser = argparse.ArgumentParser(description="Generate synthetic Hindi BenchIE data as JSONL using Gemini and ReAct.") + parser.add_argument( + "--num_examples", + type=int, + default=8000, + help="Total number of examples to generate." + ) + parser.add_argument( + "--model_name", + type=str, + default="gemini-2.0-flash", + help="Name of the Gemini model to use." + ) + args = parser.parse_args() + + output_dir = "synthetic_data" + os.makedirs(output_dir, exist_ok=True) + + topics = [ + 'इतिहास', 'विज्ञान', 'बॉलीवुड', 'खेल', 'प्रौद्योगिकी', 'राजनीति', + 'साहित्य', 'यात्रा', 'स्वास्थ्य', 'अर्थव्यवस्था', 'कला', 'शिक्षा', + 'पर्यावरण', 'समाज', 'अंतरिक्ष', 'दर्शन', 'भूगोल', 'संगीत' + ] + + model = genai.GenerativeModel(args.model_name) + + start_count = 0 + json_files = [f for f in os.listdir(output_dir) if f.endswith('.json')] + # check if the output directory exists and resume from the last example + if json_files: + try: + # find the highest number from filenames like '1.json', '2.json' + # start from last number instead of count of files + max_num = max([int(f.split('.')[0]) for f in json_files if f.split('.')[0].isdigit()]) + start_count = max_num + except ValueError: + print("Warning: Could not determine start count from filenames. Starting from 0.") + start_count = 0 + + print(f"Starting generation, saving individual files to '{output_dir}/'") + print(f"Resuming from example number {start_count + 1}.") + print(f"Target: {args.num_examples} examples.") + + pbar = tqdm(total=args.num_examples, initial=start_count) + + current_examples_count = start_count + topic_index = 0 + + while current_examples_count < args.num_examples: + topic = topics[(start_count + topic_index) % len(topics)] + + generated_json = generate_synthetic_data(model, topic) + + if generated_json and 'extraction' in generated_json: + current_examples_count += 1 + file_path = os.path.join(output_dir, f"{current_examples_count}.json") + with open(file_path, 'w', encoding='utf-8') as f: + json.dump(generated_json, f, ensure_ascii=False, indent=4) + pbar.update(1) + else: + print(f"Skipping a failed generation for topic '{topic}'. Will retry.") + + topic_index += 1 + # delay for rate limits + time.sleep(2) + + pbar.close() + print("\nGeneration complete. Zipping the output directory...") + try: + # zip the output directory before exiting + shutil.make_archive('synthetic_data', 'zip', output_dir) + print("Successfully created synthetic_data.zip.") + except Exception as e: + print(f"An error occurred during zipping or cleanup: {e}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/llm_IE/full_dataset_evaluation.py b/GSoC25_H/llm_IE/full_dataset_evaluation.py new file mode 100644 index 0000000..55effc8 --- /dev/null +++ b/GSoC25_H/llm_IE/full_dataset_evaluation.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python3 +""" +Full dataset evaluation script - runs on all 112 sentences +""" + +import os +import time +import traceback +from typing import Dict + +from llm_interface import OllamaInterface +from config import config +from prompt_templates import PromptTemplateManager + +class BenchieDataLoader: + """Load and parse Hindi-Benchie golden standard data""" + + def __init__(self, golden_standard_path: str): + self.golden_standard_path = golden_standard_path + self.sentences = {} + self.load_data() + + def load_data(self): + """Load sentences from golden standard file""" + with open(self.golden_standard_path, 'r', encoding='utf-8') as f: + content = f.read() + + # Parse the benchie format + sections = content.split('==================================================================================================================================================================================') + + for section in sections: + if 'sent_id:' in section: + lines = section.strip().split('\n') + if len(lines) > 0: + # Extract sentence ID and text + first_line = lines[0] + if '\t' in first_line: + sent_info, sentence = first_line.split('\t', 1) + sent_id = sent_info.replace('sent_id:', '').strip() + self.sentences[sent_id] = sentence.strip() + + def get_all_sentences(self) -> Dict[str, str]: + """Get all sentences""" + return self.sentences + +def run_full_dataset_evaluation(): + """Run evaluation on complete Hindi-Benchie dataset""" + + print("Starting evaluation on complete Hindi-Benchie dataset...") + + models_to_run = config.experiment.models + strategies_to_run = config.experiment.prompt_strategies + print(f"Models to run: {models_to_run}") + print(f"Strategies to run: {strategies_to_run}") + + golden_standard_path = config.evaluation["benchie_gold_file"] + output_dir = "full_dataset_results" + + print("Loading complete Hindi-Benchie dataset...") + data_loader = BenchieDataLoader(golden_standard_path) + sentences = data_loader.get_all_sentences() + # sentences = dict(list(data_loader.get_all_sentences().items())[:10]) # for testing + print(f"Loaded {len(sentences)} sentences for evaluation.") + + template_manager = PromptTemplateManager() + + # evaluate each model on each strategy + for model_key in models_to_run: + print(f"\nEvaluating model: {model_key}") + print("-" * 50) + + model_config = config.get_model_config(model_key) + try: + model_interface = OllamaInterface(model_config) + except ConnectionError as e: + print(f"Could not initialize model {model_key}: {e}") + continue + + for strategy in strategies_to_run: + print(f" Testing strategy: {strategy}") + print(f" Processing {len(sentences)} sentences...") + + # Extract relations for all sentences + extractions = [] + successful_extractions = 0 + total_time = 0 + failed_sentences = [] + + start_time = time.time() + + for i, (sent_id, sentence) in enumerate(sentences.items(), 1): + if i % 10 == 0: + elapsed = time.time() - start_time + avg_time = elapsed / i if i > 0 else 0 + remaining = (len(sentences) - i) * avg_time + print(f" Progress: {i}/{len(sentences)} ({i/len(sentences)*100:.1f}%) - ETA: {remaining/60:.1f} min") + + prompt = template_manager.generate_prompt(strategy, sentence) + result = model_interface.extract_relations(sentence, prompt) + total_time += result.processing_time + + if result.success: + successful_extractions += 1 + for triplet in result.parsed_triplets: + extractions.append((sent_id, triplet.get('subject', ''), triplet.get('relation', ''), triplet.get('object', ''))) + else: + failed_sentences.append((sent_id, result.error)) + + print(f" Extraction completed in {total_time/60:.1f} minutes") + print(f" Success: {successful_extractions}/{len(sentences)} sentences") + print(f" Total extractions: {len(extractions)}") + + # Save the extractions to a file for the detailed analyzer to use + extraction_filename = f"extractions_{model_interface.model_config.name.replace(':', '_')}_{strategy}.txt" + extraction_filepath = os.path.join(output_dir, extraction_filename) + with open(extraction_filepath, 'w', encoding='utf-8') as f: + for sent_id, subject, relation, obj in extractions: + f.write(f"{sent_id}\t{subject}\t{relation}\t{obj}\n") + + print(f" Extractions saved to: {extraction_filepath}") + + print("\nExtraction generation complete.") + +if __name__ == "__main__": + try: + print("Starting extraction generation for the full dataset...") + run_full_dataset_evaluation() + print("\nExtraction file generation completed.") + + except Exception as e: + print(f"\nAn error occurred during extraction: {e}") + traceback.print_exc() \ No newline at end of file diff --git a/GSoC25_H/llm_IE/hindi_benchie_gold.txt b/GSoC25_H/llm_IE/hindi_benchie_gold.txt new file mode 100644 index 0000000..afa3387 --- /dev/null +++ b/GSoC25_H/llm_IE/hindi_benchie_gold.txt @@ -0,0 +1,963 @@ +sent_id:1 कार्यरूप जगत को देखकर ही शक्तिरूपी माया की सििद्ध होती है . +------ Cluster 1 ------ +[शक्तिरूपी]{a} माया की --> सििद्ध होती है --> [कार्यरूप]{b} जगत को देखकर [ही] +{a} शक्तिरूपी --> property --> माया [की] +{b} कार्यरूप --> property --> जगत [को] +================================================================================================================================================================================== +sent_id:2 अखिल भारतीय पुलिस डयूटी मीट ( 1958 से ) में अंगुलि चिह्न विज्ञान प्रतियोगिता आयोजित करना . +------ Cluster 1 ------ +अखिल भारतीय पुलिस डयूटी मीट [( 1958 से )]{a} में --> आयोजित करना --> [अंगुलि चिह्न विज्ञान]{b} प्रतियोगिता +{a} ( 1958 से ) --> property --> अखिल भारतीय पुलिस डयूटी मीट +{b} अंगुलि चिह्न विज्ञान --> property --> प्रतियोगिता +================================================================================================================================================================================== +sent_id:3 केन्द्रीय सरकार के विभागों एवं भारत सरकार के उपक्रमों द्वारा भेजे गए विवादित अंगुलि चिह्नों का परीक्षण करना . +------ Cluster 1 ------ +[विवादित]{a} अंगुलि चिह्नों का --> परीक्षण करना --> [केन्द्रीय सरकार के विभागों एवं] भारत सरकार के उपक्रमों द्वारा +[केन्द्रीय]{b} सरकार के विभागों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +[भारत]{c} सरकार के उपक्रमों --> द्वारा भेजे गए --> [विवादित]{a} अंगुलि चिह्नों का +{a} विवादित --> property --> अंगुलि चिह्नों [का] +{b} केन्द्रीय --> property --> सरकार के विभागों +{c} भारत --> property --> सरकार के उपक्रमों +================================================================================================================================================================================== +sent_id:4 007 के गुप्त नाम से प्रसिद्ध यह एजेंट फ़्लेमिंग की बारह पुस्तकों व दो लघुकथाओं में मौजूद है . +------ Cluster 1 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों व दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{b} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों [व दो लघुकथाओं में] |OR| फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} प्रसिद्ध --> property --> 007 के गुप्त नाम से +------ Cluster 2 ------ +[फ़्लेमिंग की]{a} बारह पुस्तकों [में] --> मौजूद है --> यह एजेंट +[फ़्लेमिंग की]{b} दो लघुकथाओं में --> मौजूद है --> यह एजेंट +[007 के गुप्त नाम से]{c} प्रसिद्ध --> property --> यह एजेंट +{a} फ़्लेमिंग की --> property --> बारह पुस्तकों |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{b} फ़्लेमिंग की --> property --> दो लघुकथाओं [में] |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +{c} प्रसिद्ध --> property --> [007 के]{d} गुप्त नाम से +{d} 007 [के] --> property --> गुप्त नाम [से] +------ Cluster 3 ------ +[007 के गुप्त नाम से प्रसिद्ध]{a} यह एजेंट --> मौजूद है --> [फ़्लेमिंग की]{b} बारह पुस्तकों व दो लघुकथाओं में +{a} यह एजेंट --> property --> 007 के [गुप्त] नाम से प्रसिद्ध +{b} फ़्लेमिंग की --> property --> बारह पुस्तकों व दो लघुकथाओं में |OR| फ़्लेमिंग की --> बारह पुस्तकों [व दो लघुकथाओं] में मौजूद है --> यह एजेंट +================================================================================================================================================================================== +sent_id:5 01 अगस्त 1907 को उन्होंने अपनी एक पत्रिका ' साधु ' शुरू की . +------ Cluster 1 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +------ Cluster 2 ------ +[01 अगस्त 1907 को]{a} उन्होंने --> शुरू की --> [अपनी] एक पत्रिका [साधु]{b} +{a} 01 अगस्त 1907 को --> property --> शुरू की |OR| 01 अगस्त 1907 को --> शुरू की --> [अपनी] [एक पत्रिका]{b} साधु +{b} [अपनी] एक पत्रिका --> property --> साधु +================================================================================================================================================================================== +sent_id:6 01 अप्रैल 2009 से कंपनी में नवीनतम वेतनमानों को लागू किया गया है . +------ Cluster 1 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> नवीनतम वेतनमानों को +{a} 01 अप्रैल 2009 से --> लागू किया गया है --> नवीनतम वेतनमानों को |OR| 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> कंपनी में +------ Cluster 2 ------ +[01 अप्रैल 2009 से]{a} कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल 2009 से --> property --> लागू किया गया है |OR| 01 अप्रैल 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{b} नवीनतम --> property --> वेतनमानों [को] +------ Cluster 3 ------ +[01 अप्रैल]{a} 2009 से --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +कंपनी में --> लागू किया गया है --> [नवीनतम]{b} वेतनमानों को +{a} 01 अप्रैल --> property --> 2009 से +{b} नवीनतम --> property --> वेतनमानों [को] +================================================================================================================================================================================== +sent_id:7 01 जून : गोधरा ट्रेन कांड की सुनवाई अहमदाबाद के साबरमती केंद्रीय जेल के अंदर शुरू हुई . +------ Cluster 1 ------ +[गोधरा ट्रेन कांड की]{b} सुनवाई --> शुरू हुई --> [अहमदाबाद के]{c} साबरमती केंद्रीय जेल के अंदर +01 जून --> शुरू हुई --> [गोधरा]{a} [ट्रेन कांड की]{b} सुनवाई |OR| 01 जून --> property --> शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} सुनवाई --> property --> [गोधरा]{a} ट्रेन कांड की +{c} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल [के अंदर] +------ Cluster 2 ------ +[गोधरा]{a} ट्रेन कांड की --> सुनवाई शुरू हुई --> [अहमदाबाद के]{b} साबरमती केंद्रीय जेल के अंदर +01 जून --> सुनवाई शुरू हुई --> [गोधरा]{a} ट्रेन कांड की |OR| 01 जून --> property --> सुनवाई शुरू हुई +{a} गोधरा --> property --> ट्रेन कांड +{b} अहमदाबाद के --> property --> साबरमती केंद्रीय जेल +================================================================================================================================================================================== +sent_id:8 06 अक्टूबर 1989 को वे सर्वोच्च न्यायालय की न्यायाधीश नियुक्त हुई . +------ Cluster 1 ------ +[06 अक्टूबर 1989 को]{a} वे [सर्वोच्च न्यायालय की]{b} --> नियुक्त हुई --> न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +------ Cluster 2 ------ +[06 अक्टूबर 1989 को]{a} वे --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश +{a} 06 अक्टूबर 1989 को --> नियुक्त हुई --> [सर्वोच्च न्यायालय की]{b} न्यायाधीश |OR| 06 अक्टूबर 1989 को --> नियुक्त हुई --> वे |OR| 06 अक्टूबर 1989 को --> property --> नियुक्त हुई +{b} सर्वोच्च न्यायालय की --> property --> न्यायाधीश +================================================================================================================================================================================== +sent_id:9 06 प्रतिशत ऐसे लोग थे जिनका कोई विशेष धर्म नहीं था . +------ Cluster 1 ------ +06 प्रतिशत --> [ऐसे] लोग थे --> जिनका कोई विशेष धर्म नहीं था +------ Cluster 2 ------ +06 प्रतिशत लोग --> नहीं था --> कोई विशेष धर्म +------ Cluster 3 ------ +06 प्रतिशत --> थे --> [ऐसे] लोग [जिनका कोई विशेष धर्म नहीं था]{a} +{a} 06 प्रतिशत --> थे --> जिनका कोई विशेष धर्म नहीं था +================================================================================================================================================================================== +sent_id:10 1 अक्टूबर 1854 को इम्पीरियल पोस्टल सर्विस द्वारा पहला डाक टिकट जारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 1854 को]{a} इम्पीरियल पोस्टल सर्विस द्वारा --> जारी किया गया --> [पहला]{b} डाक टिकट +{a} 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला]{b} डाक टिकट |OR| 1 अक्टूबर 1854 को --> जारी किया गया --> [पहला डाक टिकट] इम्पीरियल पोस्टल सर्विस द्वारा |OR| 1 अक्टूबर 1854 को --> property --> जारी किया गया +{b} पहला --> property --> डाक टिकट |OR| पहला --> जारी किया गया --> डाक टिकट +================================================================================================================================================================================== +sent_id:11 1 अक्टूबर 1953 को आंध्र ने कर्नूल को अपनी राजधानी के साथ राज्य का दर्जा पाया . +------ Cluster 1 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> पाया --> कर्नूल [को] [अपनी राजधानी]{c} +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +{c} कर्नूल [को] --> राजधानी का दर्जा पाया --> आंध्र <--{not allowed in passive} +------ Cluster 2 ------ +[1 अक्टूबर 1953 को]{a} आंध्र ने --> दर्जा पाया --> राज्य का +[1 अक्टूबर 1953 को]{a} कर्नूल ने --> दर्जा पाया --> राजधानी का +{a} 1 अक्टूबर 1953 को --> पाया --> दर्जा |OR| 1 अक्टूबर 1953 को --> property --> पाया +================================================================================================================================================================================== +sent_id:12 1 अक्टूबर 2008 को न्यूजीलैंड और ऑस्ट्रेलिया में दूसरा सीज़न ज़ारी किया गया . +------ Cluster 1 ------ +[1 अक्टूबर 2008 को]{a} [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{a} 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [दूसरा]{c} सीज़न |OR| 1 अक्टूबर 2008 को --> property --> ज़ारी किया गया |OR| 1 अक्टूबर 2008 को --> ज़ारी किया गया --> [न्यूजीलैंड और]{b} ऑस्ट्रेलिया में +{b} [1 अक्टूबर 2008 को]{a} न्यूजीलैंड [में] --> ज़ारी किया गया --> [दूसरा]{c} सीज़न +{c} दूसरा --> property --> सीज़न +================================================================================================================================================================================== +sent_id:13 1 अक्टूबर को , रॉबर्ट आइगर ने सीईओ के रूप में माइकल आइजनर का स्थान लिया . +------ Cluster 1 ------ +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> सीईओ के रूप में +[1 अक्टूबर को ,]{a} रॉबर्ट आइगर ने --> स्थान लिया --> माइकल आइजनर का +{a} 1 अक्टूबर को --> स्थान लिया --> माइकल आइजनर का |OR| 1 अक्टूबर को --> स्थान लिया --> रॉबर्ट आइगर ने |OR| 1 अक्टूबर को --> property --> स्थान लिया +================================================================================================================================================================================== +sent_id:14 1 अक्टूबर , 1960 को यह देश इंग्लैंड के शासन से आजाद हुआ . +------ Cluster 1 ------ +[1 अक्टूबर , 1960 को]{a} यह देश --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से +{a} 1 अक्टूबर , 1960 को --> आजाद हुआ --> यह देश |OR| 1 अक्टूबर , 1960 को --> आजाद हुआ --> [इंग्लैंड के]{b} शासन से |OR| 1 अक्टूबर , 1960 को --> property --> आजाद हुआ +{b} शासन [से] --> property --> इंग्लैंड के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:15 1 अगस्त 1915 में चन्द्रसिंह को अन्य गढ़वाली सैनिकों के साथ अंग्रेजों द्वारा फ्रांस भेज दिया गया . +------ Cluster 1 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> फ्रांस +अंग्रेजों द्वारा --> भेज दिया गया --> चन्द्रसिंह को |OR| अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +------ Cluster 2 ------ +[1 अगस्त 1915 में]{a} चन्द्रसिंह को --> भेज दिया गया --> अंग्रेजों द्वारा +अंग्रेजों द्वारा --> भेज दिया गया --> फ्रांस +[अन्य] [गढ़वाली]{b} सैनिकों के साथ --> भेज दिया गया --> चन्द्रसिंह को +{a} 1 अगस्त 1915 में --> भेज दिया गया --> फ्रांस |OR| 1 अगस्त 1915 में --> भेज दिया गया --> चन्द्रसिंह को |OR| 1 अगस्त 1915 में --> property --> भेज दिया गया +{b} गढ़वाली --> property --> सैनिकों [के साथ] +================================================================================================================================================================================== +sent_id:16 1 अप्रैल 1946 को इसे स्वायत्तशासी प्रान्त घोषित किया गया और गोविन्द बल्लभ पन्त इसके पहले मुख्य मन्त्री बने . +------ Cluster 1 ------ +[1 अप्रैल 1946 को]{a} इसे --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त +गोविन्द बल्लभ पन्त --> बने --> [इसके पहले]{c} मुख्य मन्त्री |OR| गोविंद बल्लभ पंत --> बने --> [इसके पहले]{c} मुख्य मंत्री +{a} 1 अप्रैल 1946 को --> घोषित किया गया --> [स्वायत्तशासी]{b} प्रान्त |OR| 1 अप्रैल 1946 को --> घोषित किया गया --> इसे |OR| 1 अप्रैल 1946 को --> property --> घोषित किया गया +{b} स्वायत्तशासी --> property --> प्रान्त +{c} इसके पहले --> property --> मुख्य मन्त्री +================================================================================================================================================================================== +sent_id:17 हिन्दी प्रचार सभा एक आन्दोलन थी जो भारत के स्वतन्त्रता आन्दोलन के साथ ही आरम्भ हुई . +------ Cluster 1 ------ +हिन्दी प्रचार सभा --> थी --> एक आन्दोलन +हिन्दी प्रचार सभा --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ |OR| जो --> आरम्भ हुई --> [भारत के]{a} स्वतन्त्रता आन्दोलन के साथ +{a} भारत के --> property --> स्वतन्त्रता आन्दोलन [के साथ ही] +================================================================================================================================================================================== +sent_id:18 बाल्यकाल से ही कर्मा के चेहरे पर एक अनूठी आभा दिखाई पड़ती थी . +------ Cluster 1 ------ +[बाल्यकाल से ही]{a} [कर्मा के]{b} चेहरे पर --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर [एक अनूठी]{c} आभा +{a} बाल्यकाल से ही --> property --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [कर्मा के]{b} चेहरे पर |OR| बाल्यकाल से ही --> दिखाई पड़ती थी --> [एक अनूठी]{c} आभा +{b} कर्मा के --> property --> चेहरे पर |OR| कर्मा के --> दिखाई पड़ती थी --> चेहरे पर +{c} एक अनूठी --> property --> आभा +================================================================================================================================================================================== +sent_id:19 तब से अब तक , सोनू भारतीय संगीत जगत में एक प्रमुख हस्ती बन चुके हैं . +------ Cluster 1 ------ +सोनू [भारतीय संगीत जगत में]{a} --> बन चुके हैं --> एक प्रमुख हस्ती |OR| [सोनू]{a} [भारतीय]{b} संगीत जगत में --> बन चुके हैं --> एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +------ Cluster 2 ------ +सोनू --> [में] एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत [में] +तब से [अब तक]{a} --> सोनू एक प्रमुख हस्ती बन चुके हैं --> भारतीय संगीत जगत में |OR| तब से [अब तक]{a} --> एक प्रमुख हस्ती बन चुके हैं --> सोनू +{a} सोनू --> बन चुके हैं --> अब तक +------ Cluster 3 ------ +सोनू --> बन चुके हैं --> [भारतीय संगीत जगत में]{a} एक प्रमुख हस्ती |OR| सोनू --> बन चुके हैं --> [भारतीय]{b} संगीत जगत में एक प्रमुख हस्ती +सोनू --> बन चुके हैं --> तब से [अब तक]{c} +{a} [भारतीय]{b} संगीत जगत में --> property --> सोनू +{b} भारतीय --> property --> संगीत जगत में +{c} सोनू --> बन चुके हैं --> अब तक +================================================================================================================================================================================== +sent_id:20 कोप्पेन मौसम वर्गीकरण मौसम आकलन के लिए प्रयोग किया जाने वाला सबसे अधिक प्रयोगनीय मौसम वर्गीकरण है . +------ Cluster 1 ------ +कोप्पेन मौसम वर्गीकरण --> है --> [सबसे अधिक प्रयोगनीय]{a} मौसम वर्गीकरण +कोप्पेन मौसम वर्गीकरण --> property --> मौसम आकलन के लिए [प्रयोग किया जाने वाला] +{a} [सबसे अधिक]{b} प्रयोगनीय --> property --> कोप्पेन मौसम वर्गीकरण +{b} सबसे अधिक --> property --> प्रयोगनीय +================================================================================================================================================================================== +sent_id:21 बर्लिन पर क़ब्ज़ा करने के बाद सोवियत दस्तों ने चेकोस्लोवाकिया की राजधानी प्राग को आज़ाद कराया . +------ Cluster 1 ------ +सोवियत दस्तों ने --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +सोवियत दस्तों ने --> property --> बर्लिन पर क़ब्ज़ा [करने के बाद] |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> सोवियत दस्तों ने |OR| बर्लिन पर क़ब्ज़ा [करने के बाद] --> आज़ाद कराया --> [चेकोस्लोवाकिया की राजधानी]{a} प्राग को +{a} [चेकोस्लोवाकिया की]{b} राजधानी --> property --> प्राग [को] +{b} राजधानी --> property --> चेकोस्लोवाकिया की +================================================================================================================================================================================== +sent_id:22 योग एवं शिक्षा के क्षेत्र में राष्ट्रपति से पद्म श्री सम्मान प्राप्त करने वाले वे प्रथम भारतीय हैं . +------ Cluster 1 ------ +वे --> [प्रथम भारतीय]{a} हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +------ Cluster 2 ------ +वे --> हैं --> प्रथम भारतीय +[राष्ट्रपति से]{a} पद्म श्री सम्मान प्राप्त करने वाले --> हैं --> वे +वे --> property --> [योग एवं] शिक्षा के क्षेत्र में |OR| पद्म श्री --> property --> [योग एवं] शिक्षा के क्षेत्र में +{a} प्रथम भारतीय --> property --> वे +------ Cluster 3 ------ +[योग एवं]{a} शिक्षा के क्षेत्र में --> [वे] प्रथम भारतीय हैं --> [राष्ट्रपति से]{b} पद्म श्री सम्मान प्राप्त करने वाले [वे] +{a} योग एवं --> property --> शिक्षा +{b} राष्ट्रपति से --> प्राप्त करने वाले --> पद्म श्री सम्मान +================================================================================================================================================================================== +sent_id:23 सभी बच्चों को स्कूल की पढ़ाई पूरी करने तक वित्तीय सहायता भी दी जाती है . +------ Cluster 1 ------ +[सभी] बच्चों को --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +[स्कूल की]{a} पढ़ाई पूरी करने तक --> [भी] दी जाती है --> [वित्तीय]{b} सहायता [भी] +{a} स्कूल की --> property --> पढ़ाई [पूरी करने तक] +{b} वित्तीय --> property --> सहायता [भी] +================================================================================================================================================================================== +sent_id:24 आज भी यह स्थान क्षेत्र के लोगों के लिए दर्शनीय केन्द्र है . +------ Cluster 1 ------ +यह स्थान --> दर्शनीय केन्द्र है --> [क्षेत्र के]{a} लोगों के लिए +यह स्थान --> दर्शनीय केन्द्र है --> आज भी +{a} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 2 ------ +यह स्थान --> है --> [दर्शनीय]{a} केन्द्र +[दर्शनीय]{a} केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए +[दर्शनीय]{a} केन्द्र --> है --> आज भी +{a} दर्शनीय --> property --> केन्द्र +{b} क्षेत्र के --> property --> लोगों के लिए +------ Cluster 3 ------ +यह --> है --> [स्थान क्षेत्र के लोगों के लिए]{a} दर्शनीय +{a} दर्शनीय --> है --> [स्थान क्षेत्र के]{b} लोगों के लिए +{b} लोगों के लिए --> property --> क्षेत्र के +------ Cluster 4 ------ +यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केन्द्र |OR| यह स्थान --> है --> [क्षेत्र के लोगों के लिए]{a} दर्शनीय केंद्र +{a} दर्शनीय केन्द्र --> है --> [क्षेत्र के]{b} लोगों के लिए |OR| दर्शनीय केंद्र --> है --> [क्षेत्र के]{b} लोगों के लिए +{b} क्षेत्र के --> property --> लोगों के लिए +================================================================================================================================================================================== +sent_id:25 इस सम्बन्ध में पाणिनीय व्याकरण ही वेदाङ्ग का प्रतिनिधित्व करता है . +------ Cluster 1 ------ +पाणिनीय व्याकरण [ही] --> [प्रतिनिधित्व]{a} करता है --> वेदाङ्ग का +इस सम्बन्ध में --> [प्रतिनिधित्व]{a} करता है --> पाणिनीय व्याकरण [ही] +{a} प्रतिनिधित्व --> property --> करता है +------ Cluster 2 ------ +इस सम्बन्ध में --> वेदाङ्ग का प्रतिनिधित्व करता है --> पाणिनीय व्याकरण +================================================================================================================================================================================== +sent_id:26 मैं शब्द की आत्मा समझकर ही इस श्रेष्ठ तत्त्व की उपासना करता हूं . +------ Cluster 1 ------ +मैं --> उपासना करता हूं --> [इस श्रेष्ठ]{b} तत्त्व की +[शब्द की]{a} आत्मा समझकर [ही] --> उपासना करता हूं --> मैं +{a} शब्द की --> property --> आत्मा [समझकर ही] +{b} इस श्रेष्ठ --> property --> तत्त्व की +================================================================================================================================================================================== +sent_id:27 हिमाचल प्रदेश में बहने वाली पांच नदियों में से चार का उल्लेख ऋग्वेद में मिलता है . +------ Cluster 1 ------ +[हिमाचल प्रदेश में बहने वाली पांच नदियों में से]{a} चार का --> उल्लेख मिलता है --> ऋग्वेद में +{a} हिमाचल प्रदेश में --> बहने वाली --> पांच नदियों में [से] +================================================================================================================================================================================== +sent_id:28 उन्होंने बच्चे को देने से स्पष्ट इंकार कर दिया . +------ Cluster 1 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> [बच्चे को]{a} देने से +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 2 ------ +उन्होंने --> [स्पष्ट] इंकार कर दिया --> बच्चे को [देने से]{a} +{a} देने से --> [स्पष्ट] इंकार कर दिया --> बच्चे को +------ Cluster 3 ------ +उन्होंने --> [देने से]{a} स्पष्ट इंकार कर दिया --> बच्चे को +{a} बच्चे को --> देने से --> स्पष्ट इंकार कर दिया +================================================================================================================================================================================== +sent_id:29 शिक्षा का तुलनात्मक अध्ययन सभी सामाजिक विज्ञानों से जुड़ा है . +------ Cluster 1 ------ +[शिक्षा का]{a} तुलनात्मक अध्ययन --> जुड़ा है --> सभी सामाजिक विज्ञानों से +{a} तुलनात्मक अध्ययन --> property --> शिक्षा का +================================================================================================================================================================================== +sent_id:30 गुजरात क्वीन एक्स्प्रेस 9110 भारतीय रेल द्वारा संचालित एक मेल एक्स्प्रेस ट्रेन है . +------ Cluster 1 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [एक] मेल एक्स्प्रेस ट्रेन +गुजरात क्वीन एक्स्प्रेस [9110]{b} --> है --> [भारतीय]{a} रेल द्वारा संचालित |OR| गुजरात क्वीन एक्स्प्रेस [9110]{b} --> संचालित है --> [भारतीय]{a} रेल द्वारा +{a} भारतीय --> property --> रेल [द्वारा संचालित] +{b} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 2 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> भारतीय रेल द्वारा संचालित [एक] मेल एक्स्प्रेस ट्रेन +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +------ Cluster 3 ------ +गुजरात क्वीन एक्स्प्रेस [9110]{a} --> है --> [एक] मेल एक्स्प्रेस ट्रेन भारतीय रेल द्वारा संचालित +{a} 9110 --> property --> गुजरात क्वीन एक्स्प्रेस +================================================================================================================================================================================== +sent_id:31 वर्तमान में यह शहर पश्चिम बंगाल का प्रमुख हिल स्टेशन है . +------ Cluster 1 ------ +यह शहर [पश्चिम बंगाल का]{a} --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 2 ------ +[यह शहर]{a} पश्चिम बंगाल का --> है --> प्रमुख हिल स्टेशन +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +{a} पश्चिम बंगाल का --> property --> यह शहर +------ Cluster 3 ------ +यह शहर --> प्रमुख हिल स्टेशन है --> पश्चिम बंगाल का +वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +------ Cluster 4 ------ +[वर्तमान में]{b} यह शहर --> है --> [पश्चिम बंगाल का]{a} प्रमुख हिल स्टेशन +{a} पश्चिम बंगाल का --> property --> यह शहर +{b} वर्तमान में --> property --> यह शहर |OR| वर्तमान --> में --> यह शहर +================================================================================================================================================================================== +sent_id:32 सिलकोट , गंगोलीहाट तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का एक गाँव है . +------ Cluster 1 ------ +सिलकोट --> है --> एक गाँव +सिलकोट --> property --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +{a} गंगोलीहाट तहसील में --> property --> [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} |OR| [भारत के]{d} उत्तराखण्ड राज्य के अन्तर्गत --> property --> कुमाऊँ मण्डल के [पिथोरागढ जिले का]{c} +{c} कुमाऊँ मण्डल [के] --> property --> पिथोरागढ जिले [का] +{d} उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +------ Cluster 2 ------ +सिलकोट --> एक गाँव है --> गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} +उत्तराखण्ड राज्य [के अन्तर्गत] --> property --> भारत [के] +सिलकोट --> property --> पिथोरागढ जिले का |OR| एक गाँव --> property --> पिथोरागढ जिले का +{a} सिलकोट --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} |OR| एक गाँव --> property --> उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} पिथोरागढ जिले का --> property --> कुमाऊँ मण्डल के +------ Cluster 3 ------ +सिलकोट , गंगोलीहाट तहसील में [भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के]{a} पिथोरागढ --> एक गाँव है --> जिले का +{a} सिलकोट [गंगोलीहाट तहसील में] --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के] +------ Cluster 4 ------ +सिलकोट --> है --> [तहसील में भारत के उत्तराखण्ड राज्य के अन्तर्गत कुमाऊँ मण्डल के पिथोरागढ जिले का]{a} एक गाँव +{a} सिलकोट --> [एक गाँव] है --> भारत के उत्तराखण्ड राज्य के अन्तर्गत [कुमाऊँ मण्डल के पिथोरागढ जिले का]{b} +{b} सिलकोट --> [एक गाँव] है --> कुमाऊँ मण्डल के पिथोरागढ जिले का +================================================================================================================================================================================== +sent_id:33 एयर लाइन के तकनीकी केंद्र को तिरुवनंतपुरम में स्थानापन्न करना है . +------ Cluster 1 ------ +[एयर लाइन के]{a} तकनीकी केंद्र को --> स्थानापन्न करना है --> तिरुवनंतपुरम में +{a} तकनीकी केंद्र [को] --> property --> एयर लाइन [के] +================================================================================================================================================================================== +sent_id:34 चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और विशेष न्यायाधीश मोहम्मद रजा के सामने दोनों मामले पेश हुए . +------ Cluster 1 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश सर लुइस शर्ट और]{a} [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} [चीफ कोर्ट के मुख्य न्यायाधीश]{c} सर लुइस शर्ट --> पेश हुए --> दोनों मामले +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा [के सामने] +{c} [चीफ कोर्ट के]{d} मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{d} चीफ कोर्ट के --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +[चीफ कोर्ट के मुख्य न्यायाधीश]{a} सर लुइस शर्ट और [विशेष न्यायाधीश]{b} मोहम्मद रजा के सामने --> पेश हुए --> दोनों मामले +{a} चीफ कोर्ट के मुख्य न्यायाधीश --> property --> सर लुइस शर्ट +{b} विशेष न्यायाधीश --> property --> मोहम्मद रजा +================================================================================================================================================================================== +sent_id:35 किसी बीमारी की वजह से बाशो की मृत्यु 28 नवम्बर 1694 को हो गई . +------ Cluster 1 ------ +बाशो की --> मृत्यु हो गई --> 28 नवम्बर 1694 को +बाशो की --> मृत्यु हो गई --> [किसी] बीमारी [की वजह] से +================================================================================================================================================================================== +sent_id:36 जब कोई मतैक्य नहीं हुआ तो विक्रम ने एक हल सोचा . +------ Cluster 1 ------ +विक्रम ने --> सोचा --> एक हल +विक्रम ने --> सोचा --> जब कोई मतैक्य नहीं हुआ |OR| जब कोई मतैक्य नहीं हुआ --> सोचा --> एक हल +================================================================================================================================================================================== +sent_id:37 सन 1696 में एक बार फिर शाही सेना से पंचायती सेना का मुकाबला हुआ . +------ Cluster 1 ------ +शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 2 ------ +शाही सेना से --> मुकाबला हुआ [फिर] --> पंचायती सेना का +सन 1696 में --> मुकाबला हुआ [फिर] --> पंचायती सेना का +------ Cluster 3 ------ +सन 1696 में --> मुकाबला हुआ --> पंचायती सेना का [शाही सेना से]{a} +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +------ Cluster 4 ------ +सन 1696 में --> मुकाबला हुआ --> [शाही सेना से]{a} पंचायती सेना का +एक बार फिर --> मुकाबला हुआ --> पंचायती सेना का +{a} शाही सेना से --> मुकाबला हुआ --> पंचायती सेना का +================================================================================================================================================================================== +sent_id:38 मर्लगोंड , कुभीर मण्डल में भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत के अदिलाबादु जिले का एक गाँव है . +------ Cluster 1 ------ +मर्लगोंड --> है --> एक गाँव +मर्लगोंड --> है --> कुभीर मण्डल में |OR| एक गाँव --> है --> कुभीर मण्डल में +मर्लगोंड --> है --> अदिलाबादु जिले का [एक गाँव] |OR| एक गाँव --> है --> अदिलाबादु जिले का [एक गाँव] +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 2 ------ +मर्लगोंड --> एक गाँव है --> कुभीर मण्डल में +एक गाँव है --> property --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> आन्ध्रप्रदेश राज्य के अन्तर्गत के +भारत [के] --> property --> आन्ध्रप्रदेश राज्य [के अन्तर्गत] +------ Cluster 3 ------ +मर्लगोंड --> एक गाँव है --> अदिलाबादु जिले का +अदिलाबादु जिले का --> property --> कुभीर मण्डल में +भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत --> property --> अदिलाबादु जिले [का] +------ Cluster 4 ------ +मर्लगोंड --> एक गाँव है --> [अदिलाबादु]{a} जिले का +मर्लगोंड --> एक गाँव है --> [कुभीर]{b} मण्डल में +{a} अदिलाबादु --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +{b} कुभीर --> property --> भारत के आन्ध्रप्रदेश राज्य के अन्तर्गत +================================================================================================================================================================================== +sent_id:39 बाद में व्याकरण के दर्शन पक्ष पर अनेक ग्रन्थ लिखे गये . +------ Cluster 1 ------ +[व्याकरण के]{a} दर्शन पक्ष पर --> लिखे गये --> अनेक ग्रन्थ +बाद में --> लिखे गये --> अनेक ग्रन्थ +{a} व्याकरण के --> property --> दर्शन पक्ष पर |OR| व्याकरण के --> लिखे गये --> दर्शन पक्ष पर +================================================================================================================================================================================== +sent_id:40 1975 में इलाहाबाद में नवनिर्मित मेहता अनुसंधान संस्थान में निदेशक बने . +------ Cluster 1 ------ +[1975 में]{a} [इलाहाबाद में]{b} नवनिर्मित मेहता --> निदेशक बने --> अनुसंधान संस्थान में +{a} 1975 में --> निदेशक बने --> [इलाहाबाद में] नवनिर्मित मेहता |OR| 1975 में --> निदेशक बने --> अनुसंधान संस्थान में +{b} इलाहाबाद में --> property --> अनुसंधान संस्थान [में] |OR| इलाहाबाद में --> निदेशक बने --> नवनिर्मित मेहता +================================================================================================================================================================================== +sent_id:41 उनके नाम पर इस जगह का नाम रुस्तम खान रखा गया . +------ Cluster 1 ------ +[उनके]{a} नाम पर --> रखा गया --> इस जगह का नाम +इस जगह का नाम --> रखा गया --> रुस्तम खान +{a} उनके --> property --> नाम पर +------ Cluster 2 ------ +उनके नाम पर --> रखा गया --> जगह का नाम [रुस्तम खान]{a} +{a} रुस्तम खान --> रखा गया --> जगह का नाम +================================================================================================================================================================================== +sent_id:42 कुछ लोग इस आपाधापी से दूर अपने घर पर ही रहना पसंद करते हैं . +------ Cluster 1 ------ +कुछ लोग --> पसंद करते हैं --> [अपने घर पर ही]{a} रहना +[अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +{a} [अपने] घर पर ही --> property --> रहना +------ Cluster 2 ------ +कुछ लोग --> पसंद करते हैं --> [इस आपाधापी से दूर]{b} [अपने घर पर ही]{a} रहना +{a} [अपने] घर पर ही --> property --> रहना +{b} [अपने घर पर ही] रहना --> property --> इस आपाधापी से दूर +================================================================================================================================================================================== +sent_id:43 मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई . +------ Cluster 1 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई --> उनकी +मार्च 2001 में --> वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 2 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> वापसी हुई [फिर] --> उनकी +मार्च 2001 में --> वापसी हुई [फिर] --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +------ Cluster 3 ------ +[अमरीका के]{a} [अट्ठाइसवें]{b} रक्षा सचिव के रूप में --> [फिर] वापसी हुई --> उनकी +मार्च 2001 में --> [फिर] वापसी हुई --> उनकी +{a} अमरीका के --> property --> [अट्ठाइसवें]{b} रक्षा सचिव के रूप में +{b} अट्ठाइसवें --> property --> रक्षा सचिव के रूप में +================================================================================================================================================================================== +sent_id:44 इसकी रचना की आधारशिला 3 मार्च 1884 को सर वाईकर के द्वारा रखी गयी थी . +------ Cluster 1 ------ +[इसकी रचना की]{a} आधारशिला --> रखी गयी थी --> सर वाईकर के द्वारा +3 मार्च 1884 को --> रखी गयी थी --> [इसकी रचना की]{a} आधारशिला +{a} आधारशिला --> property --> इसकी रचना की +------ Cluster 2 ------ +3 मार्च 1884 को --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +[इसकी]{a} रचना की --> आधारशिला रखी गयी थी --> सर वाईकर के द्वारा +{a} इसकी --> property --> रचना की +================================================================================================================================================================================== +sent_id:45 इस तकनीक के लिए वह विभिन्न टेलीविजन कंपनियों से संपर्क में है . +------ Cluster 1 ------ +वह --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से +इस तकनीक के लिए --> संपर्क में है --> विभिन्न टेलीविजन कंपनियों से |OR| इस तकनीक के लिए --> संपर्क में है --> वह +================================================================================================================================================================================== +sent_id:46 त्रिदेवनाथ बैनर्जी को चिकित्सा विज्ञान के क्षेत्र में सन 1961 में पद्म भूषण से सम्मानित किया गया था . +------ Cluster 1 ------ +त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> [सन 1961 में]{a} पद्म भूषण से +त्रिदेवनाथ बैनर्जी को --> property --> चिकित्सा विज्ञान के क्षेत्र में |OR| त्रिदेवनाथ बैनर्जी को --> सम्मानित किया गया था --> चिकित्सा विज्ञान के क्षेत्र में +{a} सन 1961 में --> सम्मानित किया गया था --> पद्म भूषण से +------ Cluster 2 ------ +त्रिदेवनाथ बैनर्जी को [चिकित्सा विज्ञान के क्षेत्र में]{a} --> सम्मानित किया गया था --> पद्म भूषण से +{a} चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> त्रिदेवनाथ बैनर्जी को |OR| चिकित्सा विज्ञान के क्षेत्र में --> सम्मानित किया गया था --> पद्म भूषण से +================================================================================================================================================================================== +sent_id:47 मराठी के अतिरिक्त उन्होने हिन्दी फिल्मों के लिए भी संगीत रचना की . +------ Cluster 1 ------ +उन्होने --> संगीत रचना की --> [मराठी के अतिरिक्त]{a} हिन्दी फिल्मों के लिए [भी] +{a} मराठी के अतिरिक्त --> संगीत रचना की --> हिन्दी फिल्मों के लिए [भी] +------ Cluster 2 ------ +उन्होने --> संगीत रचना की --> मराठी के अतिरिक्त [हिन्दी फिल्मों के लिए भी]{a} +{a} हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> उन्होने |OR| हिन्दी फिल्मों के लिए [भी] --> संगीत रचना की --> मराठी के अतिरिक्त +------ Cluster 3 ------ +मराठी के अतिरिक्त --> हिन्दी फिल्मों के लिए [भी] संगीत रचना की --> उन्होने +================================================================================================================================================================================== +sent_id:48 काइटिन का औद्योगिक रूप से अनेक प्रक्रियाओं में उपयोग किया जाता है . +------ Cluster 1 ------ +काइटिन का --> उपयोग किया जाता है --> [औद्योगिक रूप से]{a} अनेक प्रक्रियाओं में +{a} काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से |OR| काइटिन का --> property --> औद्योगिक रूप से +------ Cluster 2 ------ +काइटिन का --> उपयोग किया जाता है --> औद्योगिक रूप से [अनेक प्रक्रियाओं में]{a} +{a} काइटिन का --> उपयोग किया जाता है --> अनेक प्रक्रियाओं में |OR| काइटिन का --> property --> अनेक प्रक्रियाओं में +================================================================================================================================================================================== +sent_id:49 हिंदूओं और मुस्लिमों के सभी पर्व मिलजुल कर मनाए जाते हैं . +------ Cluster 1 ------ +[हिंदूओं और मुस्लिमों के]{a} सभी पर्व --> मनाए जाते हैं --> मिलजुल कर +{a} हिंदूओं [और मुस्लिमों के]{b} --> property --> सभी पर्व +{b} [और] मुस्लिमों के --> property --> सभी पर्व +------ Cluster 2 ------ +हिंदूओं और मुस्लिमों के --> [मिलजुल कर]{a} मनाए जाते हैं --> सभी पर्व +{a} मिलजुल कर --> मनाए जाते हैं --> [हिंदूओं और मुस्लिमों के] सभी पर्व +================================================================================================================================================================================== +sent_id:50 द डार्क नाईट राइसेस को अमेरिका , संयुक्त राजशाही व कनाडा में 20 जुलाई 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> अमेरिका [, संयुक्त राजशाही व कनाडा में]{a} +द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> 20 जुलाई 2012 को |OR| अमेरिका [, संयुक्त राजशाही व कनाडा में]{b} --> रिलीज़ किया गया --> 20 जुलाई 2012 को +{a} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{c} +{b} 20 जुलाई 2012 को --> रिलीज़ किया गया --> संयुक्त राजशाही [व कनाडा में]{d} +{c} द डार्क नाईट राइसेस को --> रिलीज़ किया गया --> [व] कनाडा में +{d} 20 जुलाई 2012 को --> रिलीज़ किया गया --> [व] कनाडा में +================================================================================================================================================================================== +sent_id:51 यह हर साल जर्मनी के फ्रैंकफर्ट शहर मे लगाया जाता है . +------ Cluster 1 ------ +यह --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर मे --> लगाया जाता है --> हर साल |OR| [जर्मनी के]{a} फ्रैंकफर्ट शहर में --> लगाया जाता है --> हर साल +यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर मे |OR| यह --> लगाया जाता है --> [जर्मनी के]{a} फ्रैंकफर्ट शहर में +{a} फ्रैंकफर्ट शहर मे --> property --> जर्मनी के <--{not allowed in passive} +================================================================================================================================================================================== +sent_id:52 द्रौपदी ने आगे बढ़ कर अर्जुन के गले में वरमाला डाल दिया . +------ Cluster 1 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 2 ------ +द्रौपदी ने [आगे बढ़ कर] --> वरमाला डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 3 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +वरमाला --> डाल दिया --> [आगे बढ़ कर] [अर्जुन के]{a} गले में +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +------ Cluster 4 ------ +द्रौपदी ने [आगे बढ़ कर] --> डाल दिया --> वरमाला +[आगे बढ़ कर] [अर्जुन के]{a} गले में --> डाल दिया --> वरमाला +{a} अर्जुन के --> [वरमाला] डाल दिया --> गले में |OR| अर्जुन के --> property --> गले में +================================================================================================================================================================================== +sent_id:53 यह त्यौहार पूरे उत्तर भारत में राम नवमी के दौरान मनाया जाता है . +------ Cluster 1 ------ +यह [त्यौहार]{b} [पूरे उत्तर भारत में]{a} --> मनाया जाता है --> राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +------ Cluster 2 ------ +यह [त्यौहार]{b} --> मनाया जाता है --> [पूरे उत्तर भारत में]{a} राम नवमी के दौरान +{a} पूरे उत्तर भारत में --> मनाया जाता है --> यह त्यौहार +{b} यह --> property --> त्यौहार +================================================================================================================================================================================== +sent_id:54 तटीय कर्नाटक के भोजन में समुद्री भोजन , नारियल और नारियल तेल का व्यापक उपयोग उल्लेखनीय है . +------ Cluster 1 ------ +[तटीय]{b} [कर्नाटक के]{c} भोजन में --> उल्लेखनीय है --> [समुद्री भोजन , नारियल और]{a} नारियल तेल का [व्यापक] उपयोग +{a} समुद्री भोजन [, नारियल]{d} [और] का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +{b} तटीय --> property --> कर्नाटक [के] +{c} भोजन में --> property --> [तटीय]{b} कर्नाटक के +{d} नारियल का [व्यापक] उपयोग --> उल्लेखनीय है --> [तटीय]{b} [कर्नाटक के]{c} भोजन में +================================================================================================================================================================================== +sent_id:55 कार्ल ने वहां अध्ययन के साथ ही वहां के उपेक्षित जीवविज्ञान उद्यान को भी सुधारा . +------ Cluster 1 ------ +कार्ल ने --> सुधारा --> [वहां के]{a} उपेक्षित जीवविज्ञान उद्यान को [भी] +{a} वहां के --> property --> उपेक्षित जीवविज्ञान उद्यान को [भी] +================================================================================================================================================================================== +sent_id:56 सिफियस चतुर्थ की श्रेणी के तारों को सिफीड कहते हैं . +------ Cluster 1 ------ +[सिफियस चतुर्थ की]{a} [श्रेणी के] तारों को --> [कहते] हैं --> सिफीड +{a} सिफियस चतुर्थ की --> property --> श्रेणी +================================================================================================================================================================================== +sent_id:57 यह ' प्राथमिक विधि अध्यारोप ' के नाम से प्रसिद्ध है . +------ Cluster 1 ------ +यह --> प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} नाम से +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +------ Cluster 2 ------ +यह --> नाम से प्रसिद्ध है --> [प्राथमिक विधि अध्यारोप के]{a} +{a} प्राथमिक विधि अध्यारोप [के] --> property --> नाम [से] +================================================================================================================================================================================== +sent_id:58 चीन तथा जापान से इस देश का अधिक संपर्क रहा है . +------ Cluster 1 ------ +इस देश का --> [अधिक] संपर्क रहा है --> चीन [तथा जापान से]{a} +{a} इस देश का --> [अधिक] संपर्क रहा है --> [तथा] जापान से +================================================================================================================================================================================== +sent_id:59 कश्यप ने तत्काल ज्योतिष गणना करके पता लगाया कि राजा की आयु में कुछ घड़ी शेष हैं . +------ Cluster 1 ------ +कश्यप ने --> पता लगाया --> [तत्काल] ज्योतिष गणना करके +कश्यप ने --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} |OR| [तत्काल] ज्योतिष गणना करके --> पता लगाया --> [राजा की]{b} आयु में [कुछ घड़ी शेष हैं]{a} +{a} कुछ घड़ी --> शेष हैं --> [राजा की]{b} आयु में +{b} राजा की --> property --> आयु में +================================================================================================================================================================================== +sent_id:60 अभ्रक आदि की खानों में मोमबत्तियाँ भी प्रयुक्त होती है . +------ Cluster 1 ------ +[अभ्रक आदि की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] |OR| [अभ्रक की]{a} खानों में --> प्रयुक्त होती है --> मोमबत्तियाँ [भी] +{a} अभ्रक [आदि] की --> property --> खानों में +================================================================================================================================================================================== +sent_id:61 इस शैली में उन्होंने कहानियाँ और उपन्यास लिखे हैं . +------ Cluster 1 ------ +उन्होंने --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} उन्होंने --> लिखे हैं --> [और] उपन्यास +------ Cluster 2 ------ +इस शैली में --> लिखे हैं --> कहानियाँ [और उपन्यास]{a} +उन्होंने --> लिखे हैं --> इस शैली में |OR| कहानियाँ [और उपन्यास]{a} --> लिखे हैं --> इस शैली में +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +------ Cluster 3 ------ +इस शैली में --> कहानियाँ [और उपन्यास]{a} लिखे हैं --> उन्होंने +{a} इस शैली में --> लिखे हैं --> [और] उपन्यास +================================================================================================================================================================================== +sent_id:62 वो पहले दलित और पहले मलयाली मुख्य न्यायाधीश हैं . +------ Cluster 1 ------ +वो --> हैं --> मुख्य न्यायाधीश +पहले दलित --> property --> मुख्य न्यायाधीश +[और] पहले मलयाली --> property --> मुख्य न्यायाधीश +------ Cluster 2 ------ +वो --> हैं --> [पहले दलित]{a} [और] पहले मलयाली मुख्य न्यायाधीश +{a} पहले दलित --> property --> [और] पहले मलयाली मुख्य न्यायाधीश +================================================================================================================================================================================== +sent_id:63 6 जुलाई 2009 को उन्होंने सरकार का वार्षिक बजट पेश किया . +------ Cluster 1 ------ +[6 जुलाई 2009 को]{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{a} 6 जुलाई 2009 को --> पेश किया --> [सरकार का]{b} वार्षिक बजट |OR| 6 जुलाई 2009 को --> पेश किया --> उन्होंने +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +------ Cluster 2 ------ +6 जुलाई 2009 को --> [सरकार का वार्षिक बजट]{a} पेश किया --> उन्होंने +{a} उन्होंने --> पेश किया --> [सरकार का]{b} [वार्षिक]{c} बजट +{b} सरकार का --> property --> [वार्षिक]{c} बजट +{c} वार्षिक --> property --> बजट +================================================================================================================================================================================== +sent_id:64 स्थानीय आबादी लगभग पूरी तरह से चाय के व्यापार पर निर्भर रहती है . +------ Cluster 1 ------ +स्थानीय आबादी --> निर्भर रहती है --> [लगभग] [पूरी तरह से]{a} [चाय के]{b} व्यापार पर +{a} [लगभग] पूरी तरह से --> निर्भर रहती है --> [चाय के]{b} व्यापार पर |OR| [लगभग] पूरी तरह से --> निर्भर रहती है --> स्थानीय आबादी +{b} चाय के --> निर्भर रहती है --> व्यापार पर +================================================================================================================================================================================== +sent_id:65 इसे साथ ही आधारभूत प्रोफ़ाइल में भी लागू किया जाता है . +------ Cluster 1 ------ +इसे [साथ ही] --> लागू किया जाता है --> आधारभूत प्रोफ़ाइल में [भी] +================================================================================================================================================================================== +sent_id:66 उन्हें उत्कल मणि के नाम से जाना जाता है . +------ Cluster 1 ------ +उन्हें --> जाना जाता है --> [उत्कल मणि के]{a} नाम से +{a} उत्कल मणि के --> property --> नाम से +------ Cluster 2 ------ +उन्हें --> के नाम से जाना जाता है --> उत्कल मणि +------ Cluster 3 ------ +उन्हें --> नाम से जाना जाता है --> उत्कल मणि के +================================================================================================================================================================================== +sent_id:67 अधिक जानकारी के लिए , कृपया फ्रेंच फ्लेमिश को देखें . +------ Cluster 1 ------ +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +------ Cluster 2 ------ +कृपया --> देखें --> फ्रेंच फ्लेमिश को +फ्रेंच फ्लेमिश को --> देखें --> अधिक जानकारी के लिए +================================================================================================================================================================================== +sent_id:68 इस नदी का ज्यादातर अंश पाकिस्तान में प्रवाहित होता है . +------ Cluster 1 ------ +[इस नदी का]{a} ज्यादातर अंश --> प्रवाहित होता है --> पाकिस्तान में +{a} इस नदी का --> property --> ज्यादातर अंश +================================================================================================================================================================================== +sent_id:69 मत्रूह मुहाफ़ज़ाह का अंदरूनी भाग लीबियाई रेगिस्तान का हिस्सा है , जिसमें सीवा नख़लिस्तान ( ओएसिस ) भी स्थित है . +------ Cluster 1 ------ +[मत्रूह मुहाफ़ज़ाह का]{a} अंदरूनी भाग --> हिस्सा है --> लीबियाई रेगिस्तान का +जिसमें --> स्थित है --> सीवा नख़लिस्तान [( ओएसिस )]{b} +{a} अंदरूनी भाग --> property --> मत्रूह मुहाफ़ज़ाह का +{b} [सीवा] नख़लिस्तान --> property --> ( ओएसिस ) +================================================================================================================================================================================== +sent_id:70 राज्य की राजधानी बंगलुरु शहर है , जो भारत में हो रही त्वरित आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता है . +------ Cluster 1 ------ +[राज्य की]{a} राजधानी --> है --> बंगलुरु शहर +[जो भारत में हो रही]{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी का --> है --> [अग्रणी] योगदानकर्त्ता |OR| बंगलुरु शहर --> है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का अग्रणी योगदानकर्त्ता |OR| बंगलुरु शहर --> [अग्रणी] योगदानकर्त्ता है --> [त्वरित] आर्थिक एवं प्रौद्योगिकी का +{a} राज्य की --> property --> राजधानी +{b} [त्वरित] आर्थिक एवं प्रौद्योगिकी --> हो रही --> भारत में +================================================================================================================================================================================== +sent_id:71 ये अपनी रहस्यमयी और भयावह कहानियों के लिए प्रसिद्ध हैं . +------ Cluster 1 ------ +ये --> प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों के लिए +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों के लिए +{b} [और] भयावह --> property --> कहानियों के लिए +------ Cluster 2 ------ +ये --> के लिए प्रसिद्ध हैं --> [अपनी] [रहस्यमयी और भयावह]{a} कहानियों +{a} रहस्यमयी [और भयावह]{b} --> property --> कहानियों +{b} [और] भयावह --> property --> कहानियों +================================================================================================================================================================================== +sent_id:72 उनका एक कहानी संग्रह और दो निबंध संग्रह प्रकाशित हुए हैं . +------ Cluster 1 ------ +उनका --> प्रकाशित हुए हैं --> एक कहानी संग्रह [और दो निबंध संग्रह]{a} +{a} उनका --> प्रकाशित हुए हैं --> [और] दो निबंध संग्रह +================================================================================================================================================================================== +sent_id:73 पद्मनाभ दत्त ने ( 15 वीं शताब्दी ) सुपद्य व्याकरण लिखा है . +------ Cluster 1 ------ +पद्मनाभ दत्त ने --> लिखा है --> सुपद्य व्याकरण +( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +------ Cluster 2 ------ +पद्मनाभ दत्त ने [( 15 वीं शताब्दी )]{a} --> लिखा है --> सुपद्य व्याकरण +{a} ( 15 वीं शताब्दी ) --> property --> पद्मनाभ दत्त ने +------ Cluster 3 ------ +पद्मनाभ दत्त --> ने --> [( 15 वीं शताब्दी )]{a} सुपद्य व्याकरण लिखा +{a} ( 15 वीं शताब्दी ) --> property --> सुपद्य व्याकरण +================================================================================================================================================================================== +sent_id:74 इसके पश्चिम में अलबामा और दक्षिण में फ्लोरिडा राज्य स्थित हैं . +------ Cluster 1 ------ +इसके पश्चिम में --> स्थित हैं --> अलबामा +[इसके] दक्षिण में --> स्थित हैं --> फ्लोरिडा [राज्य]{a} +{a} राज्य --> property --> फ्लोरिडा +================================================================================================================================================================================== +sent_id:75 यह क्रिकेट मैदान ऑस्ट्रेलिया के होबार्ट शहर में स्थित है . +------ Cluster 1 ------ +यह क्रिकेट मैदान --> स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर में +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर में +------ Cluster 2 ------ +यह क्रिकेट मैदान --> में स्थित है --> [ऑस्ट्रेलिया के]{a} होबार्ट शहर +{a} ऑस्ट्रेलिया के --> property --> होबार्ट शहर [में] +================================================================================================================================================================================== +sent_id:76 निम्नलिखित सूचना नियम का एक सरलीकृत सारांश है , पूरी प्रतिलिपि नहीं है . +------ Cluster 1 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना --> नहीं है --> पूरी प्रतिलिपि +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +------ Cluster 2 ------ +निम्नलिखित सूचना --> [एक] [सरलीकृत]{a} सारांश है --> नियम का +निम्नलिखित सूचना [नियम का] --> [एक] [सरलीकृत]{a} सारांश है --> पूरी प्रतिलिपि नहीं है +{a} सरलीकृत --> है --> सरलीकृत |OR| सरलीकृत --> property --> सरलीकृत +================================================================================================================================================================================== +sent_id:77 आत्यन्तिक प्रलय योगीजनों के ज्ञान के द्वारा ब्रह्म में लीन हो जाने को कहते हैं . +------ Cluster 1 ------ +आत्यन्तिक प्रलय --> [कहते] हैं --> [योगीजनों के ज्ञान के द्वारा]{a} ब्रह्म में लीन हो जाने को +{a} योगीजनों के ज्ञान के द्वारा --> लीन हो जाने को --> ब्रह्म में +================================================================================================================================================================================== +sent_id:78 जंगलों की विशेषता की दृष्टि से कुछ लोगों ने इसे इंडोचायनीज़ और इंडोमलायन उपक्षेत्रों में विभाजित किया है . +------ Cluster 1 ------ +इसे --> विभाजित किया है --> इंडोचायनीज़ [और इंडोमलायन उपक्षेत्रों में]{a} |OR| इसे --> विभाजित किया है --> [इंडोचायनीज़]{b} [और] इंडोमलायन उपक्षेत्रों में +इसे --> विभाजित किया है --> जंगलों की विशेषता की दृष्टि से +इसे --> विभाजित किया है --> कुछ लोगों ने +{a} इसे --> विभाजित किया है --> [और] इंडोमलायन उपक्षेत्रों में +{b} इसे --> विभाजित किया है --> इंडोचायनीज़ [उपक्षेत्रों में] +================================================================================================================================================================================== +sent_id:79 पर , प्रयोगशील प्रवृत्तियाँ उनको प्रश्रय देने लगी होंगी ! +------ Cluster 1 ------ +[पर ,] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +------ Cluster 2 ------ +[पर] उनको --> प्रश्रय देने लगी होंगी --> प्रयोगशील प्रवृत्तियाँ +================================================================================================================================================================================== +sent_id:80 5364 ईसा पूर्व ईसा मसीह के जन्म से पूर्व के वर्षों को दर्शाता है . +------ Cluster 1 ------ +5364 ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +------ Cluster 2 ------ +5364 --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +ईसा पूर्व --> दर्शाता है --> [ईसा मसीह के जन्म से पूर्व के]{a} वर्षों को +{a} वर्षों को --> दर्शाता है --> [ईसा मसीह के]{b} जन्म से पूर्व के +{b} जन्म से --> property --> ईसा मसीह के |OR| जन्म से पूर्व के --> property --> ईसा मसीह के +================================================================================================================================================================================== +sent_id:81 विश्वामित्र द्वारा वैदिक मन्त्रों के स्वरघोष के मध्य सीता राम को जयमाल पहनाती हैं . +------ Cluster 1 ------ +सीता --> पहनाती हैं --> राम को जयमाल +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> राम को जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 2 ------ +सीता --> पहनाती हैं --> जयमाल +सीता --> पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> जयमाल |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +------ Cluster 3 ------ +सीता --> जयमाल पहनाती हैं --> राम को +[विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> राम को |OR| [विश्वामित्र द्वारा]{a} वैदिक मन्त्रों [के स्वरघोष] के मध्य --> जयमाल पहनाती हैं --> सीता +{a} विश्वामित्र द्वारा --> property --> वैदिक मन्त्रों [के स्वरघोष] +================================================================================================================================================================================== +sent_id:82 विभिन्न स्रोत इस तथ्य पर बटे हुए हैं कि आखिर किस वर्ष में स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा . +------ Cluster 1 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [इस] तथ्य पर +[इस] तथ्य [पर] --> property --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +------ Cluster 2 ------ +विभिन्न स्रोत --> बटे हुए हैं --> [कि] [आखिर] किस वर्ष में [स्थान का नाम एजिंकोर्ट स्क्वायर पड़ा]{a} +{a} किस वर्ष में --> स्थान का नाम --> एजिंकोर्ट स्क्वायर पड़ा |OR| किस वर्ष में --> स्थान का नाम पड़ा --> एजिंकोर्ट स्क्वायर +================================================================================================================================================================================== +sent_id:83 प्रत्येक भाग के अंतर्गत विभिन्न विभाग होते हैं जिनके अलगअलग अध्यक्ष होते हैं . +------ Cluster 1 ------ +प्रत्येक भाग के अंतर्गत --> [होते] हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +------ Cluster 2 ------ +प्रत्येक भाग के --> अंतर्गत होते हैं --> [विभिन्न] विभाग +विभिन्न विभाग --> जिनके होते हैं --> [अलगअलग] अध्यक्ष |OR| जिनके --> [होते] हैं --> [अलगअलग] अध्यक्ष +================================================================================================================================================================================== +sent_id:84 एकलों के बीच एक लंबे अंतराल के बाद , एल्बम से तीसरा कट 2006 के मध्य में जारी किया गया . +------ Cluster 1 ------ +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> 2006 के मध्य में +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एकलों के बीच +[एल्बम से]{a} तीसरा कट --> जारी किया गया --> एक लंबे अंतराल के बाद |OR| एकलों के बीच --> जारी किया गया --> एक लंबे अंतराल के बाद +{a} तीसरा कट --> property --> एल्बम [से] +================================================================================================================================================================================== +sent_id:85 चूंकि उस दौर में उनके सामने कोई और मानक नहीं थे , अतः सब कामचलाऊ व्यवस्था उन्हें स्वयं करनी पड़ी . +------ Cluster 1 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> नहीं थे --> [कोई] [और] मानक +[चूंकि] उस दौर में --> नहीं थे --> [कोई] [और] मानक +------ Cluster 2 ------ +उन्हें --> [स्वयं] करनी पड़ी --> [अतः] [सब] कामचलाऊ व्यवस्था +उनके सामने --> [कोई] [और] मानक नहीं थे --> [चूंकि] उस दौर में +================================================================================================================================================================================== +sent_id:86 1900 के आसपास बहुत से विकासों ने निमोनिया से पीड़ित लोगों के लिये परिणामों को बेहतर कर दिया था . +------ Cluster 1 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> बेहतर कर दिया था --> परिणामों को +[1900 के आसपास]{b} [बहुत से] विकासों ने --> बेहतर कर दिया था --> परिणामों को +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +------ Cluster 2 ------ +[निमोनिया से]{a} [पीड़ित] लोगों के लिये --> परिणामों को बेहतर कर दिया था --> [1900 के आसपास]{b} [बहुत से] विकासों ने +{a} निमोनिया से --> पीड़ित --> लोगों के लिये +{b} विकासों ने --> property --> 1900 के आसपास [बहुत से] +================================================================================================================================================================================== +sent_id:87 सांप्रदायिक सिद्धांतों के प्रचार और प्रसार में अपने पिता के समान आपका भी बहुत योगदान है . +------ Cluster 1 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के]{a} प्रचार और प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> प्रचार और प्रसार में +------ Cluster 2 ------ +आपका [भी] --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +[अपने] पिता के समान --> [बहुत] योगदान है --> आपका [भी] |OR| [अपने] पिता के समान --> [बहुत] योगदान है --> [सांप्रदायिक सिद्धांतों के प्रचार और]{a} प्रसार में +{a} सांप्रदायिक सिद्धांतों के --> property --> [प्रचार और] प्रसार में +================================================================================================================================================================================== +sent_id:88 उदाहरणार्थ , केवल 1 -- 3 माह के संपर्क में भी मेसोथेलियोमा उत्पन्न होने के मामले लेखबद्ध किये गये हैं . +------ Cluster 1 ------ +केवल 1 -- 3 माह के संपर्क में [भी] --> लेखबद्ध किये गये हैं --> [मेसोथेलियोमा उत्पन्न होने के]{a} मामले +{a} मामले --> property --> मेसोथेलियोमा उत्पन्न होने के |OR| मामले --> उत्पन्न होने के --> मेसोथेलियोमा +================================================================================================================================================================================== +sent_id:89 जहां इश -- डू में दो प्राणियों का सामना होता है , इश -- एस में प्राणी वास्तव में मिलते नहीं है . +------ Cluster 1 ------ +इश -- डू में --> सामना होता है --> दो प्राणियों का +इश -- एस में --> [वास्तव में] मिलते नहीं है --> प्राणी |OR| इश -- एस में --> प्राणी मिलते नहीं है --> पवास्तव में +================================================================================================================================================================================== +sent_id:90 ये तीनों अक्ष उस तल में एकबिन्दुगामी भी होने चाहिये . +------ Cluster 1 ------ +ये तीनों अक्ष --> एकबिन्दुगामी [भी] होने चाहिये --> उस तल में +------ Cluster 2 ------ +ये तीनों अक्ष --> होने चाहिये --> एकबिन्दुगामी [भी] +उस तल में --> होने चाहिये --> एकबिन्दुगामी [भी] +================================================================================================================================================================================== +sent_id:91 विकासशील देशों में , अपने ही पड़ोस में किसानों के दूध विपणन के पुराने तरीके तेजी से बदल रहे हैं . +------ Cluster 1 ------ +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> विकासशील देशों में +[किसानों के]{a} [दूध विपणन के]{b} [पुराने] तरीके --> [तेजी से] बदल रहे हैं --> अपने ही पड़ोस में +{a} किसानों के --> property --> दूध विपणन के [पुराने] तरीके +{b} [पुराने] तरीके --> property --> किसानों के |OR| [पुराने] तरीके --> property --> दूध विपणन के +================================================================================================================================================================================== +sent_id:92 उन्होंने अपने बोलीवुड करियर की शुरुआत एक दीवाना था से की जिसे 17 फ़रवरी 2012 को रिलीज़ किया गया . +------ Cluster 1 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +------ Cluster 2 ------ +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> 17 फ़रवरी 2012 को +उन्होंने --> [अपने] बोलीवुड करियर की शुरुआत की --> एक दीवाना था से +जिसे --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को |OR| एक दीवाना था [से] --> रिलीज़ किया गया --> 17 फ़रवरी 2012 को +================================================================================================================================================================================== +sent_id:93 इस रोग के प्रतिषेधात्मक उपचार में भी मक्खियों से खाद्य एवं पेय पदार्थो को बचाना अत्यंत आवश्यक है . +------ Cluster 1 ------ +[इस रोग के]{a} [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} [खाद्य एवं] पेय पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 2 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को बचाना +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +[इस रोग]{a} के [प्रतिषेधात्मक] उपचार में [भी] --> बचाना [अत्यंत] आवश्यक है --> [मक्खियों से]{b} खाद्य [एवं पेय] पदार्थो को +{a} उपचार में --> property --> इस रोग के +{b} मक्खियों से --> बचाना --> [खाद्य एवं] पेय पदार्थो को |OR| मक्खियों से --> बचाना --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 3 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> खाद्य [एवं पेय] पदार्थो को +------ Cluster 4 ------ +इस रोग के [प्रतिषेधात्मक] उपचार में [भी] --> मक्खियों से बचाना [अत्यंत] आवश्यक है --> [खाद्य एवं] पेय पदार्थो को +================================================================================================================================================================================== +sent_id:94 यह , प्रतिस्पर्धी टीम की राष्ट्रीयता को संदर्भित करता है , न कि गाड़ी निर्माता या चालक की राष्ट्रीयता को . +------ Cluster 1 ------ +यह --> संदर्भित करता है --> [प्रतिस्पर्धी] [टीम की]{a} राष्ट्रीयता को +यह --> संदर्भित करता है --> न कि [गाड़ी निर्माता या] चालक की राष्ट्रीयता को |OR| यह --> संदर्भित करता है --> न कि गाड़ी निर्माता [या चालक] की राष्ट्रीयता को +{a} राष्ट्रीयता को --> property --> [प्रतिस्पर्धी] टीम की +================================================================================================================================================================================== +sent_id:95 सड़क मार्ग रत्नागिरी के लिए मुंबई से सीधी बस सेवा है . +------ Cluster 1 ------ +सड़क मार्ग --> [सीधी] बस सेवा है --> मुंबई से +सड़क मार्ग --> [सीधी] बस सेवा है --> रत्नागिरी के लिए |OR| रत्नागिरी के लिए --> [सीधी] बस सेवा है --> मुंबई से +================================================================================================================================================================================== +sent_id:96 छपाई में लकड़ी के ब्लाकों का प्रयोग होता था , जिसका निर्माण शिल्पी -- सुथार करते थे . +------ Cluster 1 ------ +छपाई में --> प्रयोग होता था --> [लकड़ी के]{a} ब्लाकों का +जिसका --> निर्माण करते थे --> शिल्पी -- सुथार |OR| [लकड़ी के]{a} ब्लाकों का --> निर्माण करते थे --> शिल्पी -- सुथार +{a} ब्लाकों का --> प्रयोग होता था --> लकड़ी के +================================================================================================================================================================================== +sent_id:97 यह शब्द विधि बनाने वाली सरकारी इकाई के लिये प्रयोग में आता है . +------ Cluster 1 ------ +यह [शब्द]{b} --> प्रयोग में आता है --> [विधि बनाने वाली]{a} सरकारी इकाई के लिये +{a} सरकारी इकाई [के लिये] --> property --> विधि बनाने वाली +{b} यह --> property --> शब्द +================================================================================================================================================================================== +sent_id:98 यह उत्तर प्रदेश के बलिया जिले में स्थित है और बलिया शहर से थोड़ी दूर पश्चिम में स्थित है . +------ Cluster 1 ------ +यह --> स्थित है --> [उत्तर प्रदेश के]{a} बलिया जिले में +यह --> स्थित है --> बलिया शहर से थोड़ी दूर [पश्चिम में]{b} |OR| यह --> स्थित है --> बलिया शहर से [थोड़ी दूर] पश्चिम में +{a} बलिया जिले में --> property --> उत्तर प्रदेश के +{b} पश्चिम में --> स्थित है --> बलिया शहर से +================================================================================================================================================================================== +sent_id:99 उसेक बाद उन्होने पिता की हत्या नहीं करवाई जैसाकि अन्य सम्राट किया करते थे . +------ Cluster 1 ------ +उन्होने --> हत्या नहीं करवाई --> पिता की +उन्होने --> हत्या नहीं करवाई --> उसेक बाद +अन्य सम्राट --> [किया] करते थे --> [पिता की]{a} हत्या +{a} हत्या --> करते थे --> पिता की +================================================================================================================================================================================== +sent_id:100 सर्वप्रथम प्रत्येक खिलाड़ी के लिये हवाओं की स्थिति का निर्धारण पासा फेंककर किया जाता है . +------ Cluster 1 ------ +हवाओं की स्थिति का --> निर्धारण किया जाता है --> पासा फेंककर +प्रत्येक खिलाड़ी के लिये --> निर्धारण किया जाता है --> हवाओं की स्थिति का +सर्वप्रथम --> निर्धारण किया जाता है --> प्रत्येक खिलाड़ी के लिये |OR| सर्वप्रथम --> निर्धारण किया जाता है --> हवाओं की स्थिति का +================================================================================================================================================================================== +sent_id:101 हाइपरयूरीसेमिया , वात रोग का मूल कारण होता है . +------ Cluster 1 ------ +हाइपरयूरीसेमिया --> मूल कारण होता है --> वात रोग का |OR| हाइपरयूरीसेमिया --> होता है --> वात रोग का मूल कारण +================================================================================================================================================================================== +sent_id:102 यही कारण है कि विश्व भर में केरल अपनी आयुर्वेदिक चिकित्सा शैली के कारण प्रसिद्ध है . +------ Cluster 1 ------ +केरल --> प्रसिद्ध है --> [अपनी] आयुर्वेदिक चिकित्सा शैली के कारण +केरल --> प्रसिद्ध है --> विश्व भर में +================================================================================================================================================================================== +sent_id:103 इसका उदगम स्थान सिरमोर राज्य के अंतगर्त हिमालय पर्वत के नीचे का ढलुवा भाग है . +------ Cluster 1 ------ +इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत [के नीचे का ढलुवा भाग]{b} +{a} सिरमोर राज्य के अंतगर्त --> उदगम स्थान है --> इसका +{b} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे [का ढलुवा भाग]{c} +{c} इसका --> उदगम स्थान है --> [सिरमोर राज्य के अंतगर्त]{a} हिमालय पर्वत के नीचे का ढलुवा भाग +================================================================================================================================================================================== +sent_id:104 दक्षिण भारत में उन दिनों परम्परागत चित्रकला का ही प्राधान्य था . +------ Cluster 1 ------ +[उन दिनों] दक्षिण भारत में --> प्राधान्य था --> परम्परागत चित्रकला का [ही] +उन दिनों --> प्राधान्य था --> परम्परागत चित्रकला का [ही] |OR| उन दिनों --> प्राधान्य था --> दक्षिण भारत में +================================================================================================================================================================================== +sent_id:105 ये कहानियाँ किसी देश या समय की हो सकती हैं . +------ Cluster 1 ------ +ये [कहानियाँ]{a} --> हो सकती हैं --> किसी [देश या] समय की |OR| ये [कहानियाँ]{a} --> हो सकती हैं --> किसी देश [या समय] की +{a} ये --> property --> कहानियाँ +================================================================================================================================================================================== +sent_id:106 और भी कुछ निम्नलिखित कारण हैं जोकि प्रकृति आधारित निर्माण को प्रोत्साहित करते हैं . +------ Cluster 1 ------ +[और भी] [कुछ] निम्नलिखित कारण --> प्रोत्साहित करते हैं --> प्रकृति आधारित निर्माण को +================================================================================================================================================================================== +sent_id:107 2010 को ' ' दर्शन -- परिषद् ' ' के नाम से सम्पन्न हुआ . +------ Cluster 1 ------ +2010 को --> सम्पन्न हुआ --> दर्शन -- परिषद् [के नाम से] +================================================================================================================================================================================== +sent_id:108 यहीं पर सन 1533 में 47 वर्ष की अल्पायु में रथयात्रा के दिन उनका देहांत हो गया . +------ Cluster 1 ------ +यहीं पर --> देहांत हो गया --> उनका +सन 1533 में --> देहांत हो गया --> उनका +47 वर्ष की [अल्पायु में]{a} --> देहांत हो गया --> उनका +रथयात्रा के दिन --> देहांत हो गया --> उनका +{a} अल्पायु [में] --> property --> 47 वर्ष [की] +================================================================================================================================================================================== +sent_id:109 इसे पाण्सिल्क भी कहा जाता है क्योंकि यह तालाब में अक्सर देखा जाता है . +------ Cluster 1 ------ +इसे --> कहा जाता है --> पाण्सिल्क [भी] +यह --> [अक्सर] देखा जाता है --> तालाब में [अक्सर] +================================================================================================================================================================================== +sent_id:110 2008 में वे तीसरे ब्रिटिश प्रबंधक बने जिन्होंने एकाधिक अवसर पर यूरोपियन कप जीता . +------ Cluster 1 ------ +वे --> बने --> [तीसरे] ब्रिटिश प्रबंधक +जिन्होंने --> जीता --> यूरोपियन कप [एकाधिक अवसर पर] |OR| जिन्होंने --> [एकाधिक अवसर पर] जीता --> यूरोपियन कप +================================================================================================================================================================================== +sent_id:111 मॉस से मिट्टी में जल रोक रखा जाता है . +------ Cluster 1 ------ +मॉस से --> जल रोक रखा जाता है --> मिट्टी में +------ Cluster 2 ------ +मॉस से --> रोक रखा जाता है --> जल +मिट्टी में --> रोक रखा जाता है --> जल +================================================================================================================================================================================== +sent_id:112 महाभारत का वर्तमान रूप प्राचीन इतिहास कथाओं उपदेशों आदि का भण्डार है . +------ Cluster 1 ------ +महाभारत [का वर्तमान रूप]{a} --> भण्डार है --> प्राचीन [इतिहास] [कथाओं] उपदेशों आदि का |OR| महाभारत [का वर्तमान रूप] --> भण्डार है --> प्राचीन इतिहास [कथाओं] [उपदेशों] आदि का +{a} वर्तमान रूप --> property --> महाभारत का diff --git a/GSoC25_H/llm_IE/llm_interface.py b/GSoC25_H/llm_IE/llm_interface.py new file mode 100644 index 0000000..336dddd --- /dev/null +++ b/GSoC25_H/llm_IE/llm_interface.py @@ -0,0 +1,114 @@ +import os +import requests +import time +import re +from typing import Dict, List, Any, Optional, Tuple +from dataclasses import dataclass, field + +from config import ModelConfig +from output_parser import OutputParser + +@dataclass +class ExtractionResult: + """Result from LLM extraction""" + success: bool + raw_output: str + parsed_triplets: List[Dict[str, str]] = field(default_factory=list) + processing_time: float = 0.0 + error: Optional[str] = None + +class OllamaInterface: + """Unified interface for interacting with Ollama models""" + + def __init__(self, model_config: ModelConfig, base_url: str = "http://localhost:11434"): + self.model_config = model_config + self.base_url = base_url.rstrip('/') + self.api_endpoint = f"{self.base_url}/api" + self.output_parser = OutputParser() + + if not self._is_available(): + print(f"Warning: Ollama model '{self.model_config.name}' not found locally. Trying to pull it...") + if not self._pull_model(): + raise ConnectionError(f"Failed to pull or connect to Ollama model {self.model_config.name}") + + def _is_available(self) -> bool: + """Check if the Ollama model is available locally""" + try: + response = requests.get(f"{self.api_endpoint}/tags") + response.raise_for_status() + models = response.json().get("models", []) + return any(m['name'] == self.model_config.name for m in models) + except requests.exceptions.RequestException: + return False + + def _generate_text(self, prompt: str) -> str: + """Generic text generation using the configured Ollama model.""" + start_time = time.time() + + payload = { + "model": self.model_config.name, + "prompt": prompt, + "stream": False, + "options": { + "temperature": self.model_config.temperature, + "top_p": self.model_config.top_p, + "top_k": self.model_config.top_k, + "num_predict": self.model_config.max_tokens, + } + } + + try: + response = requests.post( + f"{self.api_endpoint}/generate", + json=payload, + timeout=self.model_config.timeout, + headers={"Content-Type": "application/json"} + ) + response.raise_for_status() + + result = response.json() + return result.get("response", "").strip() + + except requests.exceptions.RequestException as e: + print(f"Error during Ollama API request: {e}") + return "" + + def extract_relations(self, sentence: str, prompt: str) -> ExtractionResult: + """Extracts relations from a sentence using a given prompt.""" + start_time = time.time() + + raw_output = self._generate_text(prompt) + processing_time = time.time() - start_time + + if not raw_output: + return ExtractionResult( + success=False, + raw_output="", + processing_time=processing_time, + error="Failed to generate text from model." + ) + + parsed_triplets, _ = self.output_parser.parse_and_format(raw_output) + + return ExtractionResult( + success=len(parsed_triplets) > 0, + raw_output=raw_output, + parsed_triplets=parsed_triplets, + processing_time=processing_time + ) + + def _pull_model(self) -> bool: + """Pull the model from the Ollama registry.""" + print(f"Pulling model: {self.model_config.name}. This may take a while...") + try: + response = requests.post( + f"{self.api_endpoint}/pull", + json={"name": self.model_config.name, "stream": False}, + timeout=300 # 5-minute timeout for pulling + ) + response.raise_for_status() + print(f"Model '{self.model_config.name}' pulled successfully.") + return True + except requests.exceptions.RequestException as e: + print(f"Failed to pull model '{self.model_config.name}': {e}") + return False \ No newline at end of file diff --git a/GSoC25_H/llm_IE/output_parser.py b/GSoC25_H/llm_IE/output_parser.py new file mode 100644 index 0000000..d49f15a --- /dev/null +++ b/GSoC25_H/llm_IE/output_parser.py @@ -0,0 +1,330 @@ +""" +Output parser for LLM responses +Handles various output formats and converts to benchie-compatible format +""" + +import json +import re +from typing import Dict, List, Any, Optional, Tuple +import logging + +class OutputParser: + """Parser for LLM outputs to extract relation triplets""" + + def __init__(self): + self.logger = logging.getLogger(self.__class__.__name__) + + # Regex patterns for different output formats + self.patterns = { + # Pattern for structured Hindi output: विषय: X, विधेय: Y, वस्तु: Z + "hindi_structured": r"विषय[:\s]*([^\n,]+).*?विधेय[:\s]*([^\n,]+).*?वस्तु[:\s]*([^\n,]+)", + + # Pattern for triplet format: (subject, relation, object) + "triplet_parentheses": r"\(([^,\)]+),\s*([^,\)]+),\s*([^,\)]+)\)", + + # Pattern for numbered list: 1. subject - relation - object + "numbered_list": r"\d+\.\s*([^-\n]+)\s*-\s*([^-\n]+)\s*-\s*([^\n]+)", + + # Pattern for arrow format: subject -> relation -> object + "arrow_format": r"([^->\n]+)\s*->\s*([^->\n]+)\s*->\s*([^\n]+)", + + # Pattern for colon format: Subject: X, Relation: Y, Object: Z + "english_structured": r"[Ss]ubject[:\s]*([^\n,]+).*?[Rr]elation[:\s]*([^\n,]+).*?[Oo]bject[:\s]*([^\n,]+)" + } + + def parse_llm_response(self, response: str, sentence_id: str = "1") -> List[Dict[str, str]]: + """ + Parse LLM response and extract triplets + Returns list of dicts with keys: subject, relation, object + """ + triplets = [] + + final_result_marker = "**अंतिम परिणाम:**" + reasoning_marker = "**तर्क-वितर्क:**" + triplet_line_marker = "**अंतिम त्रिपद:**" + relation_marker = "* **संबंध" + + parsing_target = response + + if final_result_marker in response: + parsing_target = response.split(final_result_marker)[-1] + elif relation_marker in response and triplet_line_marker in response: + # Handle cases where relation details are listed and then a final triplet is summarized + lines = response.split('\n') + triplet_lines = [line.split(triplet_line_marker)[-1].strip() for line in lines if triplet_line_marker in line] + parsing_target = ", ".join(triplet_lines) + elif reasoning_marker in response: + lines = response.split('\n') + triplet_lines = [line.split(triplet_line_marker)[-1].strip() for line in lines if triplet_line_marker in line] + parsing_target = ", ".join(triplet_lines) + + cleaned_response = self._clean_response(parsing_target) + + + json_triplets = self._parse_json_response(cleaned_response) + if json_triplets: + triplets.extend(json_triplets) + + # If no JSON found, try pattern matching + if not triplets: + pattern_triplets = self._parse_with_patterns(cleaned_response) + triplets.extend(pattern_triplets) + + # If still no triplets, try fallback parsing + if not triplets: + fallback_triplets = self._fallback_parsing(cleaned_response) + triplets.extend(fallback_triplets) + + # Clean and validate triplets + validated_triplets = [] + for triplet in triplets: + if self._validate_triplet(triplet): + cleaned_triplet = self._clean_triplet(triplet) + validated_triplets.append(cleaned_triplet) + + return validated_triplets + + def _clean_response(self, response: str) -> str: + """Clean and normalize the response text""" + # Remove extra whitespace + response = re.sub(r'\s+', ' ', response.strip()) + + # Remove common prefixes/suffixes + prefixes_to_remove = [ + "JSON Output:", "Output:", "उत्तर:", "संबंध:", "त्रिकोण:", "Triplets:", "Relations:" + ] + + for prefix in prefixes_to_remove: + if response.startswith(prefix): + response = response[len(prefix):].strip() + + return response + + def _parse_json_response(self, response: str) -> List[Dict[str, str]]: + """Parse JSON formatted response""" + triplets = [] + + # Try to find JSON in the response + json_matches = re.findall(r'\{[^{}]*\}', response) + + for json_match in json_matches: + try: + data = json.loads(json_match) + + # Handle different JSON structures + if "triplets" in data: + for triplet in data["triplets"]: + if isinstance(triplet, dict): + triplets.append(self._standardize_triplet_keys(triplet)) + elif isinstance(data, list): + for triplet in data: + if isinstance(triplet, dict): + triplets.append(self._standardize_triplet_keys(triplet)) + elif self._is_valid_triplet_dict(data): + triplets.append(self._standardize_triplet_keys(data)) + + except json.JSONDecodeError: + continue + + # Try parsing the entire response as JSON + if not triplets: + try: + data = json.loads(response) + if "triplets" in data: + for triplet in data["triplets"]: + if isinstance(triplet, dict): + triplets.append(self._standardize_triplet_keys(triplet)) + except json.JSONDecodeError: + pass + + return triplets + + def _parse_with_patterns(self, response: str) -> List[Dict[str, str]]: + """Parse response using regex patterns""" + triplets = [] + + for pattern_name, pattern in self.patterns.items(): + matches = re.findall(pattern, response, re.DOTALL | re.IGNORECASE) + + for match in matches: + if len(match) == 3: + triplet = { + "subject": match[0].strip(), + "relation": match[1].strip(), + "object": match[2].strip() + } + triplets.append(triplet) + + return triplets + + def _fallback_parsing(self, response: str) -> List[Dict[str, str]]: + """Fallback parsing for unstructured text""" + triplets = [] + + # Split by lines and try to find triplet-like structures + lines = [line.strip() for line in response.split('\n') if line.strip()] + + for line in lines: + # Try to find three comma-separated parts + if ',' in line: + parts = [part.strip() for part in line.split(',')] + if len(parts) >= 3: + triplet = { + "subject": parts[0], + "relation": parts[1], + "object": parts[2] + } + triplets.append(triplet) + + # Try to find three space-separated quoted parts + quoted_parts = re.findall(r'"([^"]+)"', line) + if len(quoted_parts) >= 3: + triplet = { + "subject": quoted_parts[0], + "relation": quoted_parts[1], + "object": quoted_parts[2] + } + triplets.append(triplet) + + return triplets + + def _standardize_triplet_keys(self, triplet: Dict[str, str]) -> Dict[str, str]: + """Standardize triplet keys to subject, relation, object""" + key_mappings = { + # English variations + "subject": "subject", "subj": "subject", "s": "subject", + "predicate": "relation", "pred": "relation", "relation": "relation", + "rel": "relation", "p": "relation", "verb": "relation", + "object": "object", "obj": "object", "o": "object", + + # Hindi variations + "विषय": "subject", "कर्ता": "subject", + "विधेय": "relation", "क्रिया": "relation", "संबंध": "relation", + "वस्तु": "object", "कर्म": "object" + } + + standardized = {} + for key, value in triplet.items(): + # Clean the key + clean_key = key.strip().lower() + + # Map to standard key + if clean_key in key_mappings: + standardized[key_mappings[clean_key]] = str(value).strip() + elif clean_key in ["subject", "relation", "object"]: + standardized[clean_key] = str(value).strip() + + # Ensure all required keys are present + required_keys = ["subject", "relation", "object"] + for key in required_keys: + if key not in standardized: + standardized[key] = "" + + return standardized + + def _is_valid_triplet_dict(self, data: Dict) -> bool: + """Check if dictionary contains triplet-like keys""" + keys = [k.lower().strip() for k in data.keys()] + + # Check for standard keys + has_subject = any(k in ["subject", "subj", "s", "विषय", "कर्ता"] for k in keys) + has_relation = any(k in ["predicate", "pred", "relation", "rel", "p", "verb", "विधेय", "क्रिया", "संबंध"] for k in keys) + has_object = any(k in ["object", "obj", "o", "वस्तु", "कर्म"] for k in keys) + + return has_subject and has_relation and has_object + + def _validate_triplet(self, triplet: Dict[str, str]) -> bool: + """Validate if triplet has required fields and non-empty values""" + required_keys = ["subject", "relation", "object"] + + # Check if all required keys exist + if not all(key in triplet for key in required_keys): + return False + + # Check if all values are non-empty strings + if not all(isinstance(triplet[key], str) and triplet[key].strip() for key in required_keys): + return False + + # Check for reasonable length (not too short or too long) + for key in required_keys: + value = triplet[key].strip() + if len(value) < 1 or len(value) > 200: + return False + + return True + + def _clean_triplet(self, triplet: Dict[str, str]) -> Dict[str, str]: + """Clean triplet values""" + cleaned = {} + + for key, value in triplet.items(): + # Clean the value + cleaned_value = str(value).strip() + + # Remove quotes and brackets + cleaned_value = re.sub(r'^["\'\[\(]+|["\'\]\)]+$', '', cleaned_value) + + # Remove extra whitespace + cleaned_value = re.sub(r'\s+', ' ', cleaned_value) + + # Remove common prefixes/suffixes + cleaned_value = re.sub(r'^(में|को|से|का|के|की|है|था|थी|थे)$', '', cleaned_value) + + cleaned[key] = cleaned_value.strip() + + return cleaned + + def to_benchie_format(self, triplets: List[Dict[str, str]], sentence_id: str = "1") -> List[str]: + """Convert triplets to benchie format: sentence_id \t subject \t relation \t object""" + benchie_lines = [] + + for triplet in triplets: + if self._validate_triplet(triplet): + line = f"{sentence_id}\t{triplet['subject']}\t{triplet['relation']}\t{triplet['object']}" + benchie_lines.append(line) + + return benchie_lines + + def parse_and_format(self, response: str, sentence_id: str = "1") -> Tuple[List[Dict[str, str]], List[str]]: + """Parse response and return both triplets and benchie format""" + triplets = self.parse_llm_response(response, sentence_id) + benchie_format = self.to_benchie_format(triplets, sentence_id) + + return triplets, benchie_format + + def get_parsing_stats(self, responses: List[str]) -> Dict[str, Any]: + """Get parsing statistics for a list of responses""" + stats = { + "total_responses": len(responses), + "successful_parses": 0, + "total_triplets": 0, + "avg_triplets_per_response": 0, + "parsing_methods": { + "json": 0, + "patterns": 0, + "fallback": 0, + "failed": 0 + } + } + + for response in responses: + triplets = self.parse_llm_response(response) + + if triplets: + stats["successful_parses"] += 1 + stats["total_triplets"] += len(triplets) + + # Determine parsing method used + if self._parse_json_response(response): + stats["parsing_methods"]["json"] += 1 + elif self._parse_with_patterns(response): + stats["parsing_methods"]["patterns"] += 1 + else: + stats["parsing_methods"]["fallback"] += 1 + else: + stats["parsing_methods"]["failed"] += 1 + + if stats["successful_parses"] > 0: + stats["avg_triplets_per_response"] = stats["total_triplets"] / stats["successful_parses"] + + return stats \ No newline at end of file diff --git a/GSoC25_H/llm_IE/prompt_templates.py b/GSoC25_H/llm_IE/prompt_templates.py new file mode 100644 index 0000000..40ba093 --- /dev/null +++ b/GSoC25_H/llm_IE/prompt_templates.py @@ -0,0 +1,362 @@ +""" +Prompt templates for Hindi relation extraction +Contains various prompting strategies and template management +""" + +from abc import ABC, abstractmethod +from typing import Dict + + +class BasePromptTemplate(ABC): + """Base class for prompt templates""" + + def __init__(self, name: str, description: str): + self.name = name + self.description = description + + @abstractmethod + def generate_prompt(self, sentence: str, **kwargs) -> str: + """Generate prompt for the given sentence""" + pass + + def get_template_info(self) -> Dict[str, str]: + """Get template information""" + return { + "name": self.name, + "description": self.description, + "type": self.__class__.__name__, + } + + +class BasicPromptTemplate(BasePromptTemplate): + """Basic relation extraction prompt""" + + def __init__(self): + super().__init__( + name="Basic", + description="A simple prompt for relation extraction.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""निम्नलिखित हिंदी वाक्य से सभी संबंध निकालें। प्रत्येक संबंध को (subject, relation, object) के रूप में लिखें: + +वाक्य: {sentence} + +संबंध:""" + + +class StructuredJSONTemplate(BasePromptTemplate): + """Structured JSON prompt""" + + def __init__(self): + super().__init__( + name="Structured JSON", + description="A prompt that asks for a structured format output.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""निम्नलिखित हिंदी वाक्य से संबंध निकालें और structured format में दें: + +वाक्य: {sentence} + +Format: (subject, relation, object) +Example: (राम, रहता है, दिल्ली में) + +संबंध:""" + + +class FewShotTemplate(BasePromptTemplate): + """Few-shot prompt""" + + def __init__(self): + super().__init__( + name="Few-shot", + description="A few-shot prompt with examples.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""You are an expert at extracting information triplets (subject, relation, object) from Hindi text. + +**Instructions:** +1. **Extract All Relations**: From the given sentence, extract all possible, distinct relations. A single sentence can result in multiple triplets. +2. **Format**: Present each triplet strictly in the `(subject, relation, object)` format. If you find more than one triplet, separate them with a comma. +3. **Be Precise & Clean**: + * Extract the most direct and core components for the subject, relation, and object. + * Omit filler words, adverbs, or descriptive phrases unless they are essential to the meaning. + * Crucially, **do not include any punctuation** (like `,` or `।`) within the extracted parts. +4. **Focus on Core Meaning**: The goal is to capture the primary actions and interactions. + +**Examples:** + +**वाक्य:** वैज्ञानिकों ने प्रयोगशाला में एक नया यौगिक बनाया और उसके गुणों का परीक्षण किया। +**संबंध:** (वैज्ञानिकों ने, बनाया, एक नया यौगिक), (वैज्ञानिकों ने, परीक्षण किया, उसके गुणों का) + +**वाक्य:** भारतीय टीम ने फाइनल मैच में ऑस्ट्रेलिया को हराकर विश्व कप जीता। +**संबंध:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को), (भारतीय टीम ने, जीता, विश्व कप) + +**वाक्य:** पुरानी कथाओं के अनुसार, राजा ने अपने मंत्री को राज्य की सुरक्षा सुनिश्चित करने का आदेश दिया। +**संबंध:** (राजा ने, आदेश दिया, अपने मंत्री को) + +**Now, extract relations from this sentence:** + +**वाक्य:** {sentence} +**संबंध:**""" + + +class FewShotHindiTemplate(BasePromptTemplate): + """Few-shot prompt in Hindi""" + + def __init__(self): + super().__init__( + name="Few-shot Hindi", + description="A few-shot prompt with instructions and examples in Hindi.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""आप हिंदी पाठ से सूचना त्रिपद (कर्ता, संबंध, कर्म) निकालने में विशेषज्ञ हैं। + +**निर्देश:** +1. **सभी संबंध निकालें**: दिए गए वाक्य से सभी संभावित, भिन्न संबंध निकालें। एक ही वाक्य से कई त्रिपद बन सकते हैं। +2. **प्रारूप**: प्रत्येक त्रिपद को सख्ती से `(कर्ता, संबंध, कर्म)` प्रारूप में प्रस्तुत करें। यदि आपको एक से अधिक त्रिपद मिलते हैं, तो उन्हें अल्पविराम से अलग करें। +3. **सटीक और स्वच्छ रहें**: + * कर्ता, संबंध और कर्म के लिए सबसे सीधे और मुख्य घटकों को निकालें। + * भराव शब्द, क्रियाविशेषण, या वर्णनात्मक वाक्यांशों को छोड़ दें जब तक कि वे अर्थ के लिए आवश्यक न हों। + * महत्वपूर्ण रूप से, निकाले गए भागों के भीतर **कोई भी विराम चिह्न** (जैसे `,` या `।`) शामिल न करें। +4. **मुख्य अर्थ पर ध्यान केंद्रित करें**: लक्ष्य प्राथमिक क्रियाओं और अंतःक्रियाओं को पकड़ना है। + +**उदाहरण:** + +**वाक्य:** वैज्ञानिकों ने प्रयोगशाला में एक नया यौगिक बनाया और उसके गुणों का परीक्षण किया। +**संबंध:** (वैज्ञानिकों ने, बनाया, एक नया यौगिक), (वैज्ञानिकों ने, परीक्षण किया, उसके गुणों का) + +**वाक्य:** भारतीय टीम ने फाइनल मैच में ऑस्ट्रेलिया को हराकर विश्व कप जीता। +**संबंध:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को), (भारतीय टीम ने, जीता, विश्व कप) + +**वाक्य:** पुरानी कथाओं के अनुसार, राजा ने अपने मंत्री को राज्य की सुरक्षा सुनिश्चित करने का आदेश दिया। +**संबंध:** (राजा ने, आदेश दिया, अपने मंत्री को) + +**अब, इस वाक्य से संबंध निकालें:** + +**वाक्य:** {sentence} +**त्रिपद:**""" + + +class ChainOfThoughtTemplate(BasePromptTemplate): + """Chain of thought prompt""" + + def __init__(self): + super().__init__( + name="Chain of Thought", + description="A chain of thought prompt for step-by-step reasoning.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""आप हिंदी पाठ से सूचना त्रिपद निकालने में विशेषज्ञ हैं। प्रत्येक वाक्य के लिए, त्रिपद निकालने के लिए चरण-दर-चरण तर्क का पालन करें। + +**निर्देश:** +1. **इकाईयां पहचानें**: वाक्य में मुख्य कर्ता और कर्म की पहचान करें। +2. **संबंध पहचानें**: इन इकाईयों को जोड़ने वाली क्रिया या संबंध खोजें। +3. **त्रिपद बनाएं**: इन्हें `(कर्ता, संबंध, कर्म)` प्रारूप में इकट्ठा करें। +4. **सभी संबंध निकालें**: वाक्य में सभी संभावित संबंधों के लिए इस प्रक्रिया को दोहराएं। + +**उदाहरण:** + +**वाक्य:** वैज्ञानिकों ने प्रयोगशाला में एक नया यौगिक बनाया। + +**सोच-विचार:** +1. **इकाईयां**: 'वैज्ञानिकों ने', 'एक नया यौगिक' +2. **संबंध**: 'बनाया' +3. **त्रिपद**: (वैज्ञानिकों ने, बनाया, एक नया यौगिक) +**अंतिम परिणाम:** (वैज्ञानिकों ने, बनाया, एक नया यौगिक) + +**अब, इस वाक्य से संबंध निकालें:** + +**वाक्य:** {sentence} +**सोच-विचार:** +... +**अंतिम परिणाम:**""" + + +class ChainOfThoughtEnglishHindiTemplate(BasePromptTemplate): + """Chain of thought prompt with English instructions""" + + def __init__(self): + super().__init__( + name="Chain of Thought English-Hindi", + description="A chain of thought prompt with English instructions and Hindi examples.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""You are an expert at extracting information triplets from Hindi text. For each sentence, follow a step-by-step reasoning to extract the triplets. + +**Instructions:** +1. **Identify Entities**: Identify the main subjects and objects in the sentence. +2. **Identify Relation**: Find the verb or relation that connects these entities. +3. **Construct Triplet**: Assemble them into a `(subject, relation, object)` format. +4. **Extract All Relations**: Repeat this process for all possible relations in the sentence. + +**Example:** + +**वाक्य:** वैज्ञानिकों ने प्रयोगशाला में एक नया यौगिक बनाया। + +**सोच-विचार:** +1. **इकाईयां**: 'वैज्ञानिकों ने', 'एक नया यौगिक' +2. **संबंध**: 'बनाया' +3. **त्रिपद**: (वैज्ञानिकों ने, बनाया, एक नया यौगिक) +**अंतिम परिणाम:** (वैज्ञानिकों ने, बनाया, एक नया यौगिक) + +**Now, extract relations from this sentence:** + +**वाक्य:** {sentence} +**सोच-विचार:** +... +**अंतिम परिणाम:**""" + + +class ChainOfThoughtEREnglishHindiTemplate(BasePromptTemplate): + """Chain of thought prompt for entity recognition with English instructions""" + + def __init__(self): + super().__init__( + name="Chain of Thought ER English-Hindi", + description="A chain of thought prompt for entity recognition with step-by-step reasoning and evidence, with English instructions.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""You are an expert AI for extracting information from Hindi text. Your task is to extract relation triplets by reasoning step-by-step and providing evidence for each part. + +**Instructions:** +For each relation you find, follow this reasoning process: +1. **Subject:** Identify the subject. +2. **Subject Type:** Reason about the type of the subject (e.g., Person, Organization, Location). +3. **Evidence for Subject:** Quote the exact words from the sentence that represent the subject. +4. **Relation:** Identify the relation. +5. **Evidence for Relation:** Quote the exact words for the relation. +6. **Object:** Identify the object. +7. **Object Type:** Reason about the type of the object. +8. **Evidence for Object:** Quote the exact words for the object. +9. **Final Triplet:** Construct the final `(Subject, Relation, Object)` triplet. + +**Example:** + +**वाक्य:** भारतीय टीम ने फाइनल मैच में ऑस्ट्रेलिया को हराकर विश्व कप जीता। + +**तर्क-वितर्क (Reasoning):** +* **संबंध 1:** + 1. **विषय:** भारतीय टीम ने + 2. **विषय का प्रकार:** संगठन (Organization) + 3. **सबूत:** "भारतीय टीम ने" + 4. **संबंध:** हराकर + 5. **सबूत:** "हराकर" + 6. **कर्म:** ऑस्ट्रेलिया को + 7. **कर्म का प्रकार:** संगठन (Organization) / देश (Country) + 8. **सबूत:** "ऑस्ट्रेलिया को" + 9. **अंतिम त्रिपद:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को) +* **संबंध 2:** + 1. **विषय:** भारतीय टीम ने + 2. **विषय का प्रकार:** संगठन (Organization) + 3. **सबूत:** "भारतीय टीम ने" + 4. **संबंध:** जीता + 5. **सबूत:** "जीता" + 6. **कर्म:** विश्व कप + 7. **कर्म का प्रकार:** वस्तु (Thing) / पुरस्कार (Prize) + 8. **सबूत:** "विश्व कप" + 9. **अंतिम त्रिपद:** (भारतीय टीम ने, जीता, विश्व कप) +**अंतिम परिणाम:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को), (भारतीय टीम ने, जीता, विश्व कप) + +**Now, extract relations from this sentence:** + +**वाक्य:** {sentence} +**तर्क-वितर्क:** +... +**अंतिम परिणाम:**""" + + +class ChainOfThoughtERTemplate(BasePromptTemplate): + """Chain of thought prompt for entity recognition""" + + def __init__(self): + super().__init__( + name="Chain of Thought ER", + description="A chain of thought prompt for entity recognition with step-by-step reasoning and evidence.", + ) + + def generate_prompt(self, sentence: str, **kwargs) -> str: + return f"""आप हिंदी पाठ से सूचना निकालने के लिए एक विशेषज्ञ AI हैं। आपका काम चरण-दर-चरण तर्क करके और प्रत्येक भाग के लिए सबूत प्रदान करके संबंध त्रिपद निकालना है। + +**निर्देश:** +आपको मिलने वाले प्रत्येक संबंध के लिए, इस तर्क प्रक्रिया का पालन करें: +1. **विषय (Subject):** विषय की पहचान करें। +2. **विषय का प्रकार (Subject Type):** विषय के प्रकार के बारे में तर्क करें (जैसे, व्यक्ति, संगठन, स्थान)। +3. **सबूत (Evidence for Subject):** विषय का प्रतिनिधित्व करने वाले वाक्य से सटीक शब्दों को उद्धृत करें। +4. **संबंध (Relation):** संबंध की पहचान करें। +5. **सबूत (Evidence for Relation):** संबंध के लिए सटीक शब्दों को उद्धृत करें। +6. **कर्म (Object):** कर्म की पहचान करें। +7. **कर्म का प्रकार (Object Type):** कर्म के प्रकार के बारे में तर्क करें। +8. **सबूत (Evidence for Object):** कर्म के लिए सटीक शब्दों को उद्धृत करें। +9. **अंतिम त्रिपद (Final Triplet):** अंतिम `(विषय, संबंध, कर्म)` त्रिपद का निर्माण करें। + +**उदाहरण:** + +**वाक्य:** भारतीय टीम ने फाइनल मैच में ऑस्ट्रेलिया को हराकर विश्व कप जीता। + +**तर्क-वितर्क (Reasoning):** +* **संबंध 1:** + 1. **विषय:** भारतीय टीम ने + 2. **विषय का प्रकार:** संगठन (Organization) + 3. **सबूत:** "भारतीय टीम ने" + 4. **संबंध:** हराकर + 5. **सबूत:** "हराकर" + 6. **कर्म:** ऑस्ट्रेलिया को + 7. **कर्म का प्रकार:** संगठन (Organization) / देश (Country) + 8. **सबूत:** "ऑस्ट्रेलिया को" + 9. **अंतिम त्रिपद:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को) +* **संबंध 2:** + 1. **विषय:** भारतीय टीम ने + 2. **विषय का प्रकार:** संगठन (Organization) + 3. **सबूत:** "भारतीय टीम ने" + 4. **संबंध:** जीता + 5. **सबूत:** "जीता" + 6. **कर्म:** विश्व कप + 7. **कर्म का प्रकार:** वस्तु (Thing) / पुरस्कार (Prize) + 8. **सबूत:** "विश्व कप" + 9. **अंतिम त्रिपद:** (भारतीय टीम ने, जीता, विश्व कप) +**अंतिम परिणाम:** (भारतीय टीम ने, हराकर, ऑस्ट्रेलिया को), (भारतीय टीम ने, जीता, विश्व कप) + +**अब, इस वाक्य से संबंध निकालें:** + +**वाक्य:** {sentence} +**तर्क-वितर्क:** +... +**अंतिम परिणाम:**""" + + +class PromptTemplateManager: + """ + manager for different prompt templates. returns the correct prompt template based on the strategy name. + """ + + def __init__(self): + self.templates = { + "basic": BasicPromptTemplate(), + "structured_json": StructuredJSONTemplate(), + "few_shot": FewShotTemplate(), + "few_shot_hindi": FewShotHindiTemplate(), + "chain_of_thought": ChainOfThoughtTemplate(), + "chain_of_thought_english_hindi": ChainOfThoughtEnglishHindiTemplate(), + "chain_of_thought_ER": ChainOfThoughtERTemplate(), + "chain_of_thought_ER_english_hindi": ChainOfThoughtEREnglishHindiTemplate(), + } + + def get_template(self, template_name: str) -> BasePromptTemplate: + """Get a specific template""" + if template_name not in self.templates: + raise ValueError( + f"Template '{template_name}' not found. Available: {list(self.templates.keys())}" + ) + return self.templates[template_name] + + def generate_prompt(self, template_name: str, sentence: str, **kwargs) -> str: + """Generate prompt using specified template""" + template = self.get_template(template_name) + return template.generate_prompt(sentence, **kwargs) diff --git a/GSoC25_H/llm_IE/results_and_discussion.md b/GSoC25_H/llm_IE/results_and_discussion.md new file mode 100644 index 0000000..85f257e --- /dev/null +++ b/GSoC25_H/llm_IE/results_and_discussion.md @@ -0,0 +1,414 @@ +# Evaluating Modern LLMs for Hindi Information Extraction + +# 1\. Introduction + +This document presents a comprehensive analysis of our experiment to evaluate the capabilities of modern, open-source Large Language Models (LLMs) on the task of Open Information Extraction (OIE) for the Hindi language. The goal was to establish a baseline for how well these models perform on a complex linguistic task in a language other than English, using a challenging, community-established benchmark. + +The entire process, from data processing to model evaluation, is managed within the `llm_IE` directory of our project. This report details our methodology, the dataset used, the execution framework, the evaluation criteria, and a discussion of the results, concluding with potential avenues for future work. + +## 2\. Experimental Design + +### 2.1. Models Chosen + +For this evaluation, we selected three prominent open-source LLMs of varying sizes to understand the impact of model scale on this task: + +* **Mistral-7B (`mistral:latest`)**: A popular and highly capable 7-billion parameter model known for its strong performance-to-size ratio. +* **Gemma-3-1B (`gemma3:1b`)**: A smaller 1-billion parameter model from Google, representing a lightweight and efficient option. +* **Gemma-3-4B (`gemma3:4b`)**: A mid-sized 4-billion parameter model, providing a point of comparison between the smaller Gemma and the larger Mistral. + +These models were chosen because they are powerful, openly available, and represent a range of computational resource requirements. They were accessed via a locally running Ollama instance. + +### 2.2. Prompting Strategies + +We implemented six distinct prompting strategies to systematically evaluate different approaches to Hindi information extraction: + +#### **Few-Shot Strategies** + +1. **`few_shot` (English)**: Provides examples with English instructions and explanations +2. **`few_shot_hindi` (Hindi)**: Uses Hindi instructions and examples throughout + +#### **Chain-of-Thought Strategies** + +3. **`chain_of_thought` (Hindi)**: Step-by-step reasoning entirely in Hindi +4. **`chain_of_thought_english_hindi` (Bilingual)**: Uses English instructions with Hindi examples +5. **`chain_of_thought_ER` (Hindi)**: Evidence-based reasoning with explicit subject/relation/object identification in Hindi +6. **`chain_of_thought_ER_english_hindi` (Bilingual)**: Evidence-based reasoning with English instructions and Hindi examples + +All prompts can be found in prompt_templates.py + +### 2.3. Experimental Scope + +This resulted in a **3 × 6 \= 18 total experiments**, systematically testing each model with each strategy on all 112 sentences from the Hindi-BenchIE dataset. All models used identical hyperparameters: + +- Temperature: 0.3 +- Top-p: 0.9 +- Top-k: 40 +- Max-tokens: 300 + +## 3\. The Hindi-BenchIE Dataset + +The foundation of our evaluation is the **Hindi-BenchIE** golden standard dataset, located at `GSoC25_H/hindi-benchie/hindi_benchie_gold.txt`. This is not a simple dataset of sentences and triplets; it's a meticulously crafted benchmark designed to capture the nuances and ambiguities of Hindi information extraction. + +### 3.1. Structure and Core Concepts + +The dataset consists of 112 sentences. For each sentence, the ground truth is organized into several key components: + +#### Sentence Identifier + +Each sentence begins with a unique ID and its text: `sent_id:1 कुछ विश्लेषकों का मानना है कि इससे बैंकिंग सेक्टर में एनपीए में बढ़ोतरी होगी।` + +#### Clusters + +For many sentences, there can be more than one valid way to extract the information. For example, a sentence could be interpreted in an active or passive voice, leading to different but equally correct sets of extractions. Hindi-BenchIE handles this by grouping extractions into **Clusters**. + +`------ Cluster 1 ------` `------ Cluster 2 ------` + +During evaluation, a model's output for a sentence is compared against all available clusters. The cluster that yields the most favorable score (specifically, the one that results in the minimum number of False Negatives) is chosen as the basis for scoring. This ensures the model is not penalized for producing a valid interpretation that differs from the first one listed. + +#### Extraction Format + +Each golden extraction follows a simple `subject --> relation --> object` format. However, the components themselves can be complex. + +`कुछ विश्लेषकों का --> मानना है कि --> इससे बैंकिंग सेक्टर में एनपीए में बढ़ोतरी होगी` + +#### Optionality and Compensatory Relations + +This is the most sophisticated aspect of the benchmark. + +* **Optional Parts `[...]`**: Square brackets indicate words or phrases that are optional. A model extraction is considered correct whether it includes this part or not. + + * Example: `[भारत] सरकार ने --> घोषणा की --> ...` + + +* **Compensatory Relations `{[a-z]}`**: Sometimes, a single complex extraction can be broken down into simpler, "compensatory" extractions. A letter in curly braces `{a}` marks a part of an "essential" extraction that can be satisfied either by being present or by having a separate, simpler extraction (also marked with `{a}`) found instead. + + Example: `मुख्य अतिथि ने --> पुरस्कार दिए और [विजेताओं को] {a} --> बधाई दी {b}` `{a} मुख्य अतिथि ने --> बधाई दी --> विजेताओं को` `{b} मुख्य अतिथि ने --> दिए --> पुरस्कार` + + Here, the model can either match the long, combined extraction, or it can match the two simpler extractions `{a}` and `{b}` to get full credit. + +### 3.2. Correctness Criteria + +An extraction from a model is marked as "correct" (a True Positive) if it matches a golden extraction based on the following logic, implemented in `detailed_comparison_using_benchIE.py`: + +1. **Normalization**: The model's output is cleaned by removing punctuation and extra spaces. +2. **Word-level Comparison**: The cleaned model output is compared word-by-word against the golden extraction. +3. **Handling Optionality**: Optional parts (`[...]`) in the golden standard are skipped over during comparison, meaning the model's extraction is valid with or without them. +4. **Handling Passives**: The framework can automatically swap the subject and object to check for passive voice variations where allowed by the `<--{allowed in passive}` flag. +5. **Compensatory Logic**: A match can be `satisfied` (a perfect match) or `satisfied but with {a},{b}` (a partial match that requires finding compensatory extractions `a` and `b`). + +## 4\. Execution Framework + +The experiment is automated by the script `full_dataset_evaluation.py`, which systematically evaluates all model-strategy combinations. The framework operates as follows: + +### 4.1. Experimental Pipeline + +1. **Data Loading**: The script begins by parsing all 112 sentences from `hindi_benchie_gold.txt` using the `BenchieDataLoader` class, which handles the complex clustering and compensatory logic structure of the Hindi-BenchIE format. + +2. **Strategy-Specific Prompt Generation**: For each sentence and strategy combination, the `PromptGenerator` class constructs specialized prompts: + + - **`few_shot`**: English instructions with Hindi examples demonstrating correct extraction format + - **`few_shot_hindi`**: Complete Hindi instruction set with native language examples + - **`chain_of_thought`**: Step-by-step reasoning prompts in Hindi guiding logical extraction + - **`chain_of_thought_english_hindi`**: English reasoning instructions with Hindi examples + - **`chain_of_thought_ER`**: Evidence-based reasoning requiring explicit entity identification and textual grounding in Hindi + - **`chain_of_thought_ER_english_hindi`**: Evidence-based reasoning with English instructions and Hindi examples + + + +3. **Systematic Model Inference**: The `OllamaInterface` class manages communication with each LLM via the Ollama API: + + - **Standardized Parameters**: All models use identical hyperparameters (temperature=0.3, top\_p=0.9, top\_k=40, max\_tokens=300) + - **Error Handling**: Implements timeout management, retry logic, and failure tracking + - **Progress Monitoring**: prints real-time feedback on extraction progress across 112 sentences + + + +4. **Robust Output Parsing**: The output parser handles diverse model response formats: + + - **Pattern Recognition**: Detects multiple triplet formats: `(s, r, o)`, `s | r | o`, `s -> r -> o`, and free-form text + - **Multi-Extraction Support**: Handles sentences producing multiple valid triplets + - **Error Recovery**: Attempts to salvage partial extractions from malformed outputs + + + +5. **Structured Data Storage**: Results are systematically organized: + + - **Extraction Files**: Raw triplets saved as `extractions_{model}_{strategy}.txt` with tab-separated format: `sentence_id\tsubject\trelation\tobject` + - **Comprehensive Coverage**: 18 total files generated (3 models × 6 strategies) + - **Standardized Format**: Consistent structure enables automated downstream analysis + +## 5\. Evaluation Methodology + +The evaluation hinges on characterizing each model extraction as a True Positive or False Positive, and each missed golden extraction as a False Negative. + +* **True Positive (TP)**: A model-generated extraction that successfully matches a golden extraction in the best-matching cluster for a given sentence. The match can be a direct one-to-one match, or one that correctly handles optionality and passivity. +* **False Positive (FP)**: A model-generated extraction that finds no match among any of the golden extractions in the best-matching cluster. These are "hallucinated" or incorrect extractions. +* **False Negative (FN)**: A golden **essential** extraction that was not matched by any of the model's extractions. This is the most complex metric. An FN is counted if: + 1. An essential extraction is completely missed. + 2. An essential extraction is only partially matched (e.g., `satisfied but with {a}`), and the required compensatory extraction `{a}` is *not* found by the model. +* **True Negative (TN)**: This metric is not applicable in Open Information Extraction. A TN would be a correctly *rejected* incorrect triplet. Since the set of all possible incorrect triplets is infinite, OIE evaluation focuses on what the model *produced*, using Precision, Recall, and F1-Score. + +This process is repeated for every sentence, and the total TP, FP, and FN counts are aggregated to calculate the final precision, recall, and F1-score. + +### 5.1. Detailed Evaluation Logic with Examples + +To fully appreciate the results, it's crucial to understand exactly how an extraction is judged. Our framework classifies each model's output into one of three categories relative to the golden standard: True Positive, False Positive, or False Negative. Let's explore this with a practical example. + +**Example Sentence:** + +* **Hindi:** `सीईओ ने पुरस्कार दिए और विजेताओं को बधाई दी।` +* **English:** "The CEO gave awards and congratulated the winners." + +**Golden Standard Extractions for this sentence:** + +1. `सीईओ ने --> पुरस्कार दिए और [विजेताओं को] {a} --> बधाई दी {b}` (This is a complex, **essential** extraction.) +2. `{a} सीईओ ने --> बधाई दी --> विजेताओं को` (A simpler, **compensatory** extraction.) +3. `{b} सीईओ ने --> दिए --> पुरस्कार` (Another simple, **compensatory** extraction.) + +The logic is that a perfect model could extract the single complex relation (1) or the two simpler ones (2 and 3). Our evaluation handles both cases. + +--- + +#### True Positive (TP): A Correctly Identified Extraction + +A True Positive occurs when a model's extraction correctly matches a golden extraction. + +* **Scenario: Direct Match** + + * **Model Extracts:** `(सीईओ ने, दिए, पुरस्कार)` + * **Analysis:** This is an exact, word-for-word match with the compensatory golden extraction `{b}`. + * **Result:** This is counted as **1 TP**. + + +* **Scenario: Match with Optionality** + + * Let's imagine a golden extraction `सरकार ने --> [तुरंत] --> मदद भेजी` ("The government \[immediately\] sent aid"). + * **Model Extracts:** `(सरकार ने, मदद भेजी)` + * **Analysis:** The model's output matches the golden extraction by correctly omitting the optional word `[तुरंत]`. + * **Result:** This is a **TP**. + +--- + +#### False Positive (FP): A Hallucinated or Incorrect Extraction + +A False Positive occurs when the model produces an extraction that does not match any golden extraction in the best-fitting cluster. + +* **Scenario: Hallucinated Relation** + * **Model Extracts:** `(विजेताओं ने, दिए, पुरस्कार)` — "The winners gave awards." + * **Analysis:** This is factually incorrect according to the sentence. It finds no match in the golden standard. + * **Result:** This is counted as **1 FP**. It pollutes the results and lowers the model's precision. + +--- + +#### False Negative (FN): A Missed Golden Extraction + +A False Negative is the most complex metric and represents a failure to find an **essential** piece of information. + +* **Scenario: Simple Miss** + + * **Model Extracts:** `(सीईओ ने, दिए, पुरस्कार)` — It finds `{b}`. + * **Analysis:** The model successfully finds the "gave awards" relation (1 TP). However, it completely fails to extract the "congratulated winners" relation. The essential golden extraction `{a}` is missed. + * **Result:** This counts as **1 FN**. + + +* **Scenario: Compensatory Failure (The most nuanced case)** + + * **Model Extracts:** `(सीईओ ने, पुरस्कार दिए और बधाई दी, विजेताओं को)` + * **Analysis:** The model attempts to extract the complex relation. Let's say it makes a small mistake, and the comparison logic returns `satisfied but with {a}`. This means the model's output is *close* to the main essential extraction (1), but it's not perfect, and the system now requires it to *also* find the compensatory extraction `{a}` to get full credit. + * Our model *did not* extract `{a}` as a separate triplet. + * **Result:** The initial partial match is counted as **1 TP**. However, because the condition "but with {a}" was not fulfilled, an **FN** is also recorded. The model identified the primary event but failed to extract all its required components. + +This detailed logic ensures that models are rewarded for finding correct information (TPs) but are appropriately penalized for both making things up (FPs) and missing key information (FNs), leading to a robust and fair evaluation. + +## 6\. Results and Discussion + +### 6.1. Complete Experimental Results + +All 18 experiments (3 models × 6 strategies) were conducted on the complete 112-sentence Hindi-BenchIE dataset. The results reveal significant variations in performance across different model-strategy combinations. + +#### **Top 10 Performing Combinations** + +| Rank | Model | Strategy | Precision | Recall | F1-Score | Total TPs | Total FPs | Total FNs | +| :---- | :---- | :---- | :---- | :---- | :---- | :---- | :---- | :---- | +| **1** | `gemma3:4b` | `chain_of_thought_ER` | **27.38%** | **23.83%** | **25.48%** | **46** | **122** | **147** | +| **2** | `gemma3:4b` | `chain_of_thought_ER_english_hindi` | **28.87%** | **21.93%** | **24.92%** | **41** | **101** | **146** | +| **3** | `gemma3:4b` | `few_shot` | **14.36%** | **14.53%** | **14.44%** | **26** | **155** | **153** | +| **4** | `gemma3:4b` | `few_shot_hindi` | **14.48%** | **11.80%** | **13.00%** | **21** | **124** | **157** | +| **5** | `mistral:latest` | `few_shot` | **11.54%** | **10.06%** | **10.75%** | **18** | **138** | **161** | +| **6** | `gemma3:1b` | `chain_of_thought_ER_english_hindi` | **8.91%** | **9.68%** | **9.28%** | **18** | **184** | **168** | +| **7** | `gemma3:4b` | `chain_of_thought` | **7.92%** | **10.86%** | **9.16%** | **19** | **221** | **156** | +| **8** | `gemma3:4b` | `chain_of_thought_english_hindi` | **7.04%** | **10.93%** | **8.57%** | **20** | **264** | **163** | +| **9** | `mistral:latest` | `chain_of_thought_ER_english_hindi` | **6.58%** | **5.59%** | **6.04%** | **10** | **142** | **169** | +| **10** | `mistral:latest` | `chain_of_thought_ER` | **8.51%** | **3.86%** | **5.32%** | **8** | **86** | **199** | + +#### **Complete Results Summary by Model** + +| Model | Best F1-Score | Best Strategy | Average F1-Score | Worst F1-Score | +| :---- | :---- | :---- | :---- | :---- | +| **`gemma3:4b`** | **25.48%** | `chain_of_thought_ER` | **13.48%** | **8.57%** | +| **`mistral:latest`** | **10.75%** | `few_shot` | **6.60%** | **3.45%** | +| **`gemma3:1b`** | **9.28%** | `chain_of_thought_ER_english_hindi` | **2.97%** | **0.69%** | + +### 6.2. Key Findings and Analysis + +#### **1\. Breakthrough Performance with Evidence-Based Reasoning** + +The most significant finding is that **`chain_of_thought_ER` strategies dramatically outperformed all other approaches**. The best result (**25.48% F1-score**) represents more than a **10× improvement** over the poorest performing combinations and a **75% improvement** over basic few-shot approaches. + +**Key Evidence:** + +- `gemma3:4b + chain_of_thought_ER`: 25.48% F1-score (46 TPs, 122 FPs, 147 FNs) +- `gemma3:4b + chain_of_thought_ER_english_hindi`: 24.92% F1-score (41 TPs, 101 FPs, 146 FNs) +- Both evidence-based approaches achieved the highest precision rates (27-29%) + +#### **2\. Critical Impact of Model Architecture** + +`gemma3:4b` consistently and significantly outperformed larger models across all strategies: + +**Performance Advantage:** + +- **vs. Mistral-7B**: `gemma3:4b` achieved 2.4× better average F1-score (13.48% vs. 6.60%) +- **vs. Gemma-1B**: `gemma3:4b` achieved 4.5× better average F1-score (13.48% vs. 2.97%) +- **Best `gemma3:4b` result (25.48%)** vs **Best `mistral:7b` result (10.75%)**: 137% improvement + +This suggests that for structured extraction in non-English languages, **model architecture and training methodology matter more than raw parameter count**. + +#### **3\. Language Approach Analysis** + +**Strategy Category Performance:** + +1. **Chain-of-Thought-ER (Hindi)**: 25.48% F1-score (best overall) +2. **Chain-of-Thought-ER (Bilingual)**: 24.92% F1-score +3. **Few-Shot (English)**: 14.44% F1-score +4. **Few-Shot (Hindi)**: 13.00% F1-score +5. **Chain-of-Thought (Hindi)**: 9.16% F1-score +6. **Chain-of-Thought (Bilingual)**: 8.57% F1-score + +**Insights:** + +- **Evidence-based reasoning** (ER) provides substantial benefits regardless of language +- **Bilingual approaches** work well with structured reasoning but poorly with basic chain-of-thought +- **Few-shot strategies** show modest preference for English instructions over Hindi-only + +#### **4\. Error Pattern Analysis** + +**High-Performing vs. Low-Performing Models:** + +**Best Performer** (`gemma3:4b + chain_of_thought_ER`): + +- **Precision**: 27.38% (1 in 4 extractions correct) +- **Recall**: 23.83% (finds \~1/4 of all information) +- **Error Distribution**: 46 TPs, 122 FPs, 147 FNs +- **Balanced Performance**: Similar precision and recall indicate consistent quality + +**Typical Poor Performer** (`gemma3:1b + chain_of_thought`): + +- **Precision**: 0.94% (99 out of 100 extractions wrong) +- **Recall**: 0.54% (misses 99.5% of information) +- **Error Distribution**: 1 TP, 105 FPs, 184 FNs +- **Massive Over-Generation**: Produces mostly hallucinated content + +#### **5\. Scale Effects Within Model Families** + +**Gemma Family Scaling:** + +- `gemma3:1b` → `gemma3:4b`: **4.5× average improvement** (2.97% → 13.48%) +- **Best case**: `gemma3:1b` achieved 9.28% vs. `gemma3:4b` 25.48% (**2.7× improvement**) +- **Diminishing returns**: Performance doesn't scale linearly with parameters, but architectural improvements show consistent benefits + +### 6.3. Strategic Implications + +#### **The Evidence-Based Reasoning Breakthrough** + +The dramatic success of `chain_of_thought_ER` strategies represents a **paradigm shift** in approach. This method requires models to: + +1. **Identify entities** explicitly (subjects and objects) +2. **Classify entity types** (person, organization, location, etc.) +3. **Provide textual evidence** for each extraction component +4. **Reason step-by-step** about relationships + +This structured approach **reduces hallucination** and **improves extraction accuracy** by forcing the model to ground its outputs in the source text. + +#### **Language Strategy Effectiveness** + +**Counter-Intuitive Finding**: While one might expect Hindi-only prompts to work best for Hindi text, our results show: + +- **Best approach**: Evidence-based reasoning in Hindi (25.48%) +- **Second-best**: Evidence-based reasoning bilingually (24.92%) +- **Bilingual approaches fail** with basic chain-of-thought but **succeed with structured reasoning** + +This suggests that **structured methodology trumps language matching** for complex extraction tasks. + +## 7\. Future Work and Recommendations + +### 7.1. Immediate Next Steps + +Based on these comprehensive results, we can follow some of these research directions: + +#### **Specialized Fine-Tuning \- ? Should we do this?** + +- **Target Model**: `gemma3:4b` with `chain_of_thought_ER` prompting +- **Expected Impact**: Could potentially achieve 40-60% F1-score based on evidence-based reasoning success +- **Approach**: Fine-tune on Hindi-English parallel OIE datasets with structured reasoning examples + +#### **Advanced Evidence-Based Prompting** + +- **Build on Success**: Further develop the `chain_of_thought_ER` methodology +- **Add Components**: Include confidence scoring, multi-step verification, self-correction loops + +#### **Constrained Decoding Implementation** + +- **Address High FP Rates**: Even best performers have 122 FPs vs 46 TPs +- **Technical Solution**: Implement grammar-based sampling to enforce `(subject, relation, object)` format +- **Expected Impact**: 20-30% precision improvement through reduced hallucination + +#### **Detailed Linguistic Error Analysis** + +- **Deep Dive**: Analyze the 147 FNs and 122 FPs from best performer +- **Focus Areas**: Complex conjunctions, passive voice handling, entity boundary detection +- **Output**: Linguistic guidelines for prompt engineering and fine-tuning + +#### **Benchmark Extension** + +- **Expand Dataset**: Increase Hindi-BenchIE from 112 to 1000+ sentences +- **Add Domains**: Include technical, legal, and conversational Hindi +- **Multilingual Scope**: Extend to other Indian languages (Bengali, Tamil, Telugu) + +## 8\. Conclusion + +### 8.1. Experimental Success and Key Discoveries + +This comprehensive evaluation of 18 model-strategy combinations on the Hindi-BenchIE dataset has yielded several breakthrough findings that fundamentally change our understanding of LLM capabilities for non-English information extraction. + +#### **Major Breakthrough: Evidence-Based Reasoning** + +Our most significant discovery is that **evidence-based reasoning approaches (`chain_of_thought_ER`) dramatically outperform all other methods**, achieving **25.48% F1-score** – a result that represents: + +- **75% improvement** over standard few-shot approaches +- **10× improvement** over the poorest performing combinations +- **First demonstration** that structured reasoning can overcome language barriers in complex extraction tasks + +#### **Architecture Over Scale** + +We conclusively demonstrated that **model architecture and training methodology matter more than raw parameter count** for structured extraction tasks. The 4B-parameter `gemma3:4b` model consistently outperformed the 7B-parameter `mistral:latest` across all strategies, achieving **2.4× better average performance**. + +#### **Language Strategy Insights** + +Counter to intuitive expectations, our results show that **structured methodology trumps language matching**. Evidence-based reasoning succeeds in both Hindi-only and bilingual contexts, while basic chain-of-thought approaches struggle regardless of language choice. + +### 8.2. Practical Impact and Significance + +#### **Establishing a New Baseline** + +These results establish a **realistic performance baseline** for Hindi information extraction using modern open-source LLMs. The **25.48% F1-score** represents the current state-of-the-art for zero-shot/few-shot approaches and provides a concrete target for future improvement efforts. + +#### **Methodology Contributions** + +Our evaluation framework, which combines: + +- **Comprehensive strategy testing** (6 distinct approaches) +- **Rigorous benchmarking** using Hindi-BenchIE's sophisticated evaluation logic +- **Detailed error analysis** with TP/FP/FN categorization +- **Statistical significance testing** + +...provides a replicable methodology for evaluating LLMs on complex linguistic tasks in non-English languages. diff --git a/GSoC25_H/models/EL_model/.empty b/GSoC25_H/models/EL_model/.empty new file mode 100644 index 0000000..e69de29 diff --git a/GSoC25_H/models/README.md b/GSoC25_H/models/README.md new file mode 100644 index 0000000..2c0ca2b --- /dev/null +++ b/GSoC25_H/models/README.md @@ -0,0 +1,8 @@ +## Model Directory + +It has all the different Transformers/Pytorch model. +To Downlaod all the models, run this command. + +```sh +sh ./download_models.sh +``` diff --git a/GSoC25_H/models/RE_model/.empty b/GSoC25_H/models/RE_model/.empty new file mode 100644 index 0000000..e69de29 diff --git a/GSoC25_H/models/coref_model/.empty b/GSoC25_H/models/coref_model/.empty new file mode 100644 index 0000000..e69de29 diff --git a/GSoC25_H/models/coref_model/config.toml b/GSoC25_H/models/coref_model/config.toml new file mode 100644 index 0000000..61f2c0e --- /dev/null +++ b/GSoC25_H/models/coref_model/config.toml @@ -0,0 +1,152 @@ +# ============================================================================= +# Before you start changing anything here, read the comments. +# All of them can be found below in the "DEFAULT" section + +[DEFAULT] + +# The directory that contains extracted files of everything you've downloaded. +data_dir = "coref/model" + +# Train, dev and test jsonlines +# train_data = "data/english_train_head.jsonlines" +# dev_data = "data/english_development_head.jsonlines" +# test_data = "data/english_test_head.jsonlines" + +train_data = "data/hindi1/hindi_train_head.jsonlines" +dev_data = "data/hindi1/hindi_development_head.jsonlines" +test_data = "data/hindi1/hindi_test_head.jsonlines" + +# train_data = "data/all_train_head.jsonlines" +# dev_data = "data/all_development_head.jsonlines" +# test_data = "data/all_test_head.jsonlines" + +# The device where everything is to be placed. "cuda:N"/"cpu" are supported. +device = "cpu" + + +# Bert settings ====================== + +# Base bert model architecture and tokenizer +bert_model = "bert-large-cased" + +# Controls max length of sequences passed through bert to obtain its +# contextual embeddings +# Must be less than or equal to 512 +bert_window_size = 512 + + +# General model settings ============= + +# Controls the dimensionality of feature embeddings +embedding_size = 20 + +# Controls the dimensionality of distance embeddings used by SpanPredictor +sp_embedding_size = 64 + +# Controls the number of spans for which anaphoricity can be scores in one +# batch. Only affects final scoring; mention extraction and rough scoring +# are less memory intensive, so they are always done in just one batch. +a_scoring_batch_size = 512 + +# AnaphoricityScorer FFNN parameters +hidden_size = 1024 +n_hidden_layers = 1 + + +# Mention extraction settings ======== + +# Mention extractor will check spans up to max_span_len words +# The default value is chosen to be big enough to hold any dev data span +max_span_len = 64 + + +# Pruning settings =================== + +# Controls how many pairs should be preserved per mention +# after applying rough scoring. +rough_k = 50 + + +# Training settings ================== + +# Controls whether to fine-tune bert_model +bert_finetune = true + +# Controls the dropout rate throughout all models +dropout_rate = 0.3 + +# Bert learning rate (only used if bert_finetune is set) +bert_learning_rate = 1e-5 + +# Task learning rate +learning_rate = 3e-4 +# learning_rate = 1e-5 + +# For how many epochs the training is done +train_epochs = 10 + +# Controls the weight of binary cross entropy loss added to nlml loss +bce_loss_weight = 0.5 + +# The directory that will contain conll prediction files +conll_log_dir = "data/conll_logs" + +# ============================================================================= +# Extra keyword arguments to be passed to bert tokenizers of specified models +[DEFAULT.tokenizer_kwargs] + [DEFAULT.tokenizer_kwargs.roberta-large] + "add_prefix_space" = true + + [DEFAULT.tokenizer_kwargs.spanbert-large-cased] + "do_lower_case" = false + + [DEFAULT.tokenizer_kwargs.bert-large-cased] + "do_lower_case" = false + + [DEFAULT.tokenizer_kwargs.bert-base-multilingual-cased] + "do_lower_case" = false + +# ============================================================================= +# The sections listed here do not need to make use of all config variables +# If a variable is omitted, its default value will be used instead + +# -------------- new ------------ +[mbert_cased] +bert_model = "bert-base-multilingual-cased" + +[xlmr] +bert_model = "xlm-roberta-base" + +[mbert_uncased] +bert_model = "bert-base-multilingual-uncased" +# ------------------------------ + +[roberta] +bert_model = "roberta-large" + +[roberta_no_bce] +bert_model = "roberta-large" +bce_loss_weight = 0.0 + +[spanbert] +bert_model = "SpanBERT/spanbert-large-cased" + +[spanbert_no_bce] +bert_model = "SpanBERT/spanbert-large-cased" +bce_loss_weight = 0.0 + +[bert] +bert_model = "bert-large-cased" + +[longformer] +bert_model = "allenai/longformer-large-4096" +bert_window_size = 2048 + +[debug] +bert_window_size = 384 +bert_finetune = false +device = "cpu:0" + +[debug_gpu] +bert_window_size = 384 +bert_finetune = false diff --git a/GSoC25_H/models/download_models.sh b/GSoC25_H/models/download_models.sh new file mode 100644 index 0000000..2cf36b8 --- /dev/null +++ b/GSoC25_H/models/download_models.sh @@ -0,0 +1,16 @@ +# Coref +gdown 1ScVz_o4V3G7watezLriCC0vU5gT7FO7q -O wl_coref_transmucores.tar.gz +tar -xzvf wl_coref_transmucores.tar.gz -C ./coref_model +# rm wl_coref_transmucores.tar.gz # remove the tar.gz file after extraction + +# RE +gdown 1UqOUdeK96m6EabI-cg2EeBz6p3IwrPZ6 -O files_indie.tar.gz +tar -xzvf files_indie.tar.gz -C ./RE_model +# rm files_indie.tar.gz # remove the tar.gz file after extraction + +# EL +wget "https://dl.fbaipublicfiles.com/GENRE/fairseq_multilingual_entity_disambiguation.tar.gz" +tar -xzvf fairseq_multilingual_entity_disambiguation.tar.gz -C ./EL_model +wget -P ./EL_model "http://dl.fbaipublicfiles.com/GENRE/titles_lang_all105_marisa_trie_with_redirect.pkl" + +# rm fairseq_multilingual_entity_disambiguation.tar.gz # remove the tar.gz file after extraction diff --git a/GSoC25_H/ontology_input/ontology--DEV_type=parsed.ttl b/GSoC25_H/ontology_input/ontology--DEV_type=parsed.ttl new file mode 100644 index 0000000..aac7ec9 --- /dev/null +++ b/GSoC25_H/ontology_input/ontology--DEV_type=parsed.ttl @@ -0,0 +1,29252 @@ +@prefix rdf: . +@prefix foaf: . +@prefix cc: . +@prefix vann: . +@prefix dcterms: . +@prefix dc: . +@prefix wgs84pos: . +@prefix cidoccrm: . +@prefix wikidata: . +@prefix dul: . +@prefix d0: . +@prefix owl: . +@prefix xsd: . +@prefix rdfs: . +@prefix prov: . +@prefix : . + + + a rdfs:Datatype ; + rdfs:label "Area"@en . + + + a rdfs:Datatype ; + rdfs:label "Currency"@en . + + + a rdfs:Datatype ; + rdfs:label "Density"@en . + + + a rdfs:Datatype ; + rdfs:label "ElectricCurrent"@en . + + + a rdfs:Datatype ; + rdfs:label "Energy"@en . + + + a rdfs:Datatype ; + rdfs:label "FlowRate"@en . + + + a rdfs:Datatype ; + rdfs:label "Force"@en . + + + a rdfs:Datatype ; + rdfs:label "Frequency"@en . + + + a rdfs:Datatype ; + rdfs:label "FuelEfficiency"@en . + + + a rdfs:Datatype ; + rdfs:label "InformationUnit"@en . + + + a rdfs:Datatype ; + rdfs:label "Length"@en . + + + a rdfs:Datatype ; + rdfs:label "LinearMassDensity"@en . + + + a rdfs:Datatype ; + rdfs:label "Mass"@en . + + + a rdfs:Datatype ; + rdfs:label "PopulationDensity"@en . + + + a rdfs:Datatype ; + rdfs:label "Power"@en . + + + a rdfs:Datatype ; + rdfs:label "Pressure"@en . + + + a rdfs:Datatype ; + rdfs:label "Ratio"@en . + + + a rdfs:Datatype ; + rdfs:label "Speed"@en . + + + a rdfs:Datatype ; + rdfs:label "Temperature"@en . + + + a rdfs:Datatype ; + rdfs:label "Time"@en . + + + a rdfs:Datatype ; + rdfs:label "Torque"@en . + + + a rdfs:Datatype ; + rdfs:label "Voltage"@en . + + + a rdfs:Datatype ; + rdfs:label "Volume"@en . + + + a rdfs:Datatype ; + rdfs:label "acre"@en . + + + a rdfs:Datatype ; + rdfs:label "afghanAfghani"@en . + + + a rdfs:Datatype ; + rdfs:label "albanianLek"@en . + + + a rdfs:Datatype ; + rdfs:label "algerianDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "ampere"@en . + + + a rdfs:Datatype ; + rdfs:label "angolanKwanza"@en . + + + a rdfs:Datatype ; + rdfs:label "argentinePeso"@en . + + + a rdfs:Datatype ; + rdfs:label "armenianDram"@en . + + + a rdfs:Datatype ; + rdfs:label "arubanGuilder"@en . + + + a rdfs:Datatype ; + rdfs:label "astronomicalUnit"@en . + + + a rdfs:Datatype ; + rdfs:label "australianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "azerbaijaniManat"@en . + + + a rdfs:Datatype ; + rdfs:label "bahamianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "bahrainiDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "bangladeshiTaka"@en . + + + a rdfs:Datatype ; + rdfs:label "bar"@en . + + + a rdfs:Datatype ; + rdfs:label "barbadosDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "belarussianRuble"@en . + + + a rdfs:Datatype ; + rdfs:label "belizeDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "bermudianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "bhutaneseNgultrum"@en . + + + a rdfs:Datatype ; + rdfs:label "bit"@en . + + + a rdfs:Datatype ; + rdfs:label "bolivianBoliviano"@en . + + + a rdfs:Datatype ; + rdfs:label "bosniaAndHerzegovinaConvertibleMarks"@en . + + + a rdfs:Datatype ; + rdfs:label "botswanaPula"@en . + + + a rdfs:Datatype ; + rdfs:label "brakeHorsepower"@en . + + + a rdfs:Datatype ; + rdfs:label "brazilianReal"@en . + + + a rdfs:Datatype ; + rdfs:label "bruneiDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "bulgarianLev"@en . + + + a rdfs:Datatype ; + rdfs:label "burundianFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "byte"@en . + + + a rdfs:Datatype ; + rdfs:label "calorie"@en . + + + a rdfs:Datatype ; + rdfs:label "cambodianRiel"@en . + + + a rdfs:Datatype ; + rdfs:label "canadianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "capeVerdeEscudo"@en . + + + a rdfs:Datatype ; + rdfs:label "carat"@en . + + + a rdfs:Datatype ; + rdfs:label "caymanIslandsDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "centilitre"@en . + + + a rdfs:Datatype ; + rdfs:label "centimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "centralAfricanCfaFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "cfpFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "chain"@en . + + + a rdfs:Datatype ; + rdfs:label "chileanPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "colombianPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "comorianFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "congoleseFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "costaRicanColon"@en . + + + a rdfs:Datatype ; + rdfs:label "croatianKuna"@en . + + + a rdfs:Datatype ; + rdfs:label "cubanPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicCentimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicDecametre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicDecimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicFeetPerSecond"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicFeetPerYear"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicFoot"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicHectometre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicInch"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicKilometre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicMetre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicMetrePerSecond"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicMetrePerYear"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicMile"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicMillimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "cubicYard"@en . + + + a rdfs:Datatype ; + rdfs:label "czechKoruna"@en . + + + a rdfs:Datatype ; + rdfs:label "danishKrone"@en . + + + a rdfs:Datatype ; + rdfs:label "day"@en . + + + a rdfs:Datatype ; + rdfs:label "decametre"@en . + + + a rdfs:Datatype ; + rdfs:label "decibar"@en . + + + a rdfs:Datatype ; + rdfs:label "decilitre"@en . + + + a rdfs:Datatype ; + rdfs:label "decimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "degreeCelsius"@en . + + + a rdfs:Datatype ; + rdfs:label "degreeFahrenheit"@en . + + + a rdfs:Datatype ; + rdfs:label "degreeRankine"@en . + + + a rdfs:Datatype ; + rdfs:label "djiboutianFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "dominicanPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "eastCaribbeanDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "egyptianPound"@en . + + + a rdfs:Datatype ; + rdfs:label "engineConfiguration"@en . + + + a rdfs:Datatype ; + rdfs:label "erg"@en . + + + a rdfs:Datatype ; + rdfs:label "eritreanNakfa"@en . + + + a rdfs:Datatype ; + rdfs:label "estonianKroon"@en . + + + a rdfs:Datatype ; + rdfs:label "ethiopianBirr"@en . + + + a rdfs:Datatype ; + rdfs:label "euro"@en . + + + a rdfs:Datatype ; + rdfs:label "falklandIslandsPound"@en . + + + a rdfs:Datatype ; + rdfs:label "fathom"@en . + + + a rdfs:Datatype ; + rdfs:label "fijiDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "foot"@en . + + + a rdfs:Datatype ; + rdfs:label "footPerMinute"@en . + + + a rdfs:Datatype ; + rdfs:label "footPerSecond"@en . + + + a rdfs:Datatype ; + rdfs:label "footPound"@en . + + + a rdfs:Datatype ; + rdfs:label "fuelType"@en . + + + a rdfs:Datatype ; + rdfs:label "furlong"@en . + + + a rdfs:Datatype ; + rdfs:label "gambianDalasi"@en . + + + a rdfs:Datatype ; + rdfs:label "georgianLari"@en . + + + a rdfs:Datatype ; + rdfs:label "ghanaianCedi"@en . + + + a rdfs:Datatype ; + rdfs:label "gibraltarPound"@en . + + + a rdfs:Datatype ; + rdfs:label "gigabyte"@en . + + + a rdfs:Datatype ; + rdfs:label "gigahertz"@en . + + + a rdfs:Datatype ; + rdfs:label "gigalitre"@en . + + + a rdfs:Datatype ; + rdfs:label "gigametre"@en . + + + a rdfs:Datatype ; + rdfs:label "giganewton"@en . + + + a rdfs:Datatype ; + rdfs:label "gigawatt"@en . + + + a rdfs:Datatype ; + rdfs:label "gigawattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "grain"@en . + + + a rdfs:Datatype ; + rdfs:label "gram"@en . + + + a rdfs:Datatype ; + rdfs:label "gramForce"@en . + + + a rdfs:Datatype ; + rdfs:label "gramPerCubicCentimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "gramPerKilometre"@en . + + + a rdfs:Datatype ; + rdfs:label "gramPerMillilitre"@en . + + + a rdfs:Datatype ; + rdfs:label "guatemalanQuetzal"@en . + + + a rdfs:Datatype ; + rdfs:label "guineaFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "guyanaDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "haitiGourde"@en . + + + a rdfs:Datatype ; + rdfs:label "hand"@en . + + + a rdfs:Datatype ; + rdfs:label "hectare"@en . + + + a rdfs:Datatype ; + rdfs:label "hectolitre"@en . + + + a rdfs:Datatype ; + rdfs:label "hectometre"@en . + + + a rdfs:Datatype ; + rdfs:label "hectopascal"@en . + + + a rdfs:Datatype ; + rdfs:label "hertz"@en . + + + a rdfs:Datatype ; + rdfs:label "honduranLempira"@en . + + + a rdfs:Datatype ; + rdfs:label "hongKongDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "horsepower"@en . + + + a rdfs:Datatype ; + rdfs:label "hour"@en . + + + a rdfs:Datatype ; + rdfs:label "hungarianForint"@en . + + + a rdfs:Datatype ; + rdfs:label "icelandKrona"@en . + + + a rdfs:Datatype ; + rdfs:label "imperialBarrel"@en . + + + a rdfs:Datatype ; + rdfs:label "imperialBarrelOil"@en . + + + a rdfs:Datatype ; + rdfs:label "imperialGallon"@en . + + + a rdfs:Datatype ; + rdfs:label "inch"@en . + + + a rdfs:Datatype ; + rdfs:label "inchPound"@en . + + + a rdfs:Datatype ; + rdfs:label "indianRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "indonesianRupiah"@en . + + + a rdfs:Datatype ; + rdfs:label "inhabitantsPerSquareKilometre"@en . + + + a rdfs:Datatype ; + rdfs:label "inhabitantsPerSquareMile"@en . + + + a rdfs:Datatype ; + rdfs:label "iranianRial"@en . + + + a rdfs:Datatype ; + rdfs:label "iraqiDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "israeliNewSheqel"@en . + + + a rdfs:Datatype ; + rdfs:label "jamaicanDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "japaneseYen"@en . + + + a rdfs:Datatype ; + rdfs:label "jordanianDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "joule"@en . + + + a rdfs:Datatype ; + rdfs:label "kazakhstaniTenge"@en . + + + a rdfs:Datatype ; + rdfs:label "kelvin"@en . + + + a rdfs:Datatype ; + rdfs:label "kenyanShilling"@en . + + + a rdfs:Datatype ; + rdfs:label "kiloampere"@en . + + + a rdfs:Datatype ; + rdfs:label "kilobit"@en . + + + a rdfs:Datatype ; + rdfs:label "kilobyte"@en . + + + a rdfs:Datatype ; + rdfs:label "kilocalorie"@en . + + + a rdfs:Datatype ; + rdfs:label "kilogram"@en . + + + a rdfs:Datatype ; + rdfs:label "kilogramForce"@en . + + + a rdfs:Datatype ; + rdfs:label "kilogramPerCubicMetre"@en . + + + a rdfs:Datatype ; + rdfs:label "kilogramPerLitre"@en . + + + a rdfs:Datatype ; + rdfs:label "kilohertz"@en . + + + a rdfs:Datatype ; + rdfs:label "kilojoule"@en . + + + a rdfs:Datatype ; + rdfs:label "kilolightYear"@en . + + + a rdfs:Datatype ; + rdfs:label "kilolitre"@en . + + + a rdfs:Datatype ; + rdfs:label "kilometre"@en . + + + a rdfs:Datatype ; + rdfs:label "kilometrePerHour"@en . + + + a rdfs:Datatype ; + rdfs:label "kilometrePerSecond"@en . + + + a rdfs:Datatype ; + rdfs:label "kilometresPerLitre"@en . + + + a rdfs:Datatype ; + rdfs:label "kilonewton"@en . + + + a rdfs:Datatype ; + rdfs:label "kilopascal"@en . + + + a rdfs:Datatype ; + rdfs:label "kilopond"@en . + + + a rdfs:Datatype ; + rdfs:label "kilovolt"@en . + + + a rdfs:Datatype ; + rdfs:label "kilowatt"@en . + + + a rdfs:Datatype ; + rdfs:label "kilowattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "knot"@en . + + + a rdfs:Datatype ; + rdfs:label "kuwaitiDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "kyrgyzstaniSom"@en . + + + a rdfs:Datatype ; + rdfs:label "laoKip"@en . + + + a rdfs:Datatype ; + rdfs:label "latvianLats"@en . + + + a rdfs:Datatype ; + rdfs:label "lebanesePound"@en . + + + a rdfs:Datatype ; + rdfs:label "lesothoLoti"@en . + + + a rdfs:Datatype ; + rdfs:label "liberianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "libyanDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "lightYear"@en . + + + a rdfs:Datatype ; + rdfs:label "lithuanianLitas"@en . + + + a rdfs:Datatype ; + rdfs:label "litre"@en . + + + a rdfs:Datatype ; + rdfs:label "macanesePataca"@en . + + + a rdfs:Datatype ; + rdfs:label "macedonianDenar"@en . + + + a rdfs:Datatype ; + rdfs:label "malagasyAriary"@en . + + + a rdfs:Datatype ; + rdfs:label "malawianKwacha"@en . + + + a rdfs:Datatype ; + rdfs:label "malaysianRinggit"@en . + + + a rdfs:Datatype ; + rdfs:label "maldivianRufiyaa"@en . + + + a rdfs:Datatype ; + rdfs:label "mauritanianOuguiya"@en . + + + a rdfs:Datatype ; + rdfs:label "mauritianRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "megabit"@en . + + + a rdfs:Datatype ; + rdfs:label "megabyte"@en . + + + a rdfs:Datatype ; + rdfs:label "megacalorie"@en . + + + a rdfs:Datatype ; + rdfs:label "megahertz"@en . + + + a rdfs:Datatype ; + rdfs:label "megalitre"@en . + + + a rdfs:Datatype ; + rdfs:label "megametre"@en . + + + a rdfs:Datatype ; + rdfs:label "meganewton"@en . + + + a rdfs:Datatype ; + rdfs:label "megapascal"@en . + + + a rdfs:Datatype ; + rdfs:label "megapond"@en . + + + a rdfs:Datatype ; + rdfs:label "megavolt"@en . + + + a rdfs:Datatype ; + rdfs:label "megawatt"@en . + + + a rdfs:Datatype ; + rdfs:label "megawattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "metre"@en . + + + a rdfs:Datatype ; + rdfs:label "metrePerSecond"@en . + + + a rdfs:Datatype ; + rdfs:label "mexicanPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "microampere"@en . + + + a rdfs:Datatype ; + rdfs:label "microlitre"@en . + + + a rdfs:Datatype ; + rdfs:label "micrometre"@en . + + + a rdfs:Datatype ; + rdfs:label "microsecond"@en . + + + a rdfs:Datatype ; + rdfs:label "microvolt"@en . + + + a rdfs:Datatype ; + rdfs:label "mile"@en . + + + a rdfs:Datatype ; + rdfs:label "milePerHour"@en . + + + a rdfs:Datatype ; + rdfs:label "milliampere"@en . + + + a rdfs:Datatype ; + rdfs:label "millibar"@en . + + + a rdfs:Datatype ; + rdfs:label "millicalorie"@en . + + + a rdfs:Datatype ; + rdfs:label "milligram"@en . + + + a rdfs:Datatype ; + rdfs:label "milligramForce"@en . + + + a rdfs:Datatype ; + rdfs:label "millihertz"@en . + + + a rdfs:Datatype ; + rdfs:label "millilitre"@en . + + + a rdfs:Datatype ; + rdfs:label "millimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "millinewton"@en . + + + a rdfs:Datatype ; + rdfs:label "millipascal"@en . + + + a rdfs:Datatype ; + rdfs:label "millipond"@en . + + + a rdfs:Datatype ; + rdfs:label "millisecond"@en . + + + a rdfs:Datatype ; + rdfs:label "millivolt"@en . + + + a rdfs:Datatype ; + rdfs:label "milliwatt"@en . + + + a rdfs:Datatype ; + rdfs:label "milliwattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "minute"@en . + + + a rdfs:Datatype ; + rdfs:label "moldovanLeu"@en . + + + a rdfs:Datatype ; + rdfs:label "mongolianTögrög"@en . + + + a rdfs:Datatype ; + rdfs:label "moroccanDirham"@en . + + + a rdfs:Datatype ; + rdfs:label "mozambicanMetical"@en . + + + a rdfs:Datatype ; + rdfs:label "myanmaKyat"@en . + + + a rdfs:Datatype ; + rdfs:label "namibianDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "nanometre"@en . + + + a rdfs:Datatype ; + rdfs:label "nanonewton"@en . + + + a rdfs:Datatype ; + rdfs:label "nanosecond"@en . + + + a rdfs:Datatype ; + rdfs:label "nautialMile"@en . + + + a rdfs:Datatype ; + rdfs:label "nepaleseRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "netherlandsAntilleanGuilder"@en . + + + a rdfs:Datatype ; + rdfs:label "newTaiwanDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "newZealandDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "newton"@en . + + + a rdfs:Datatype ; + rdfs:label "newtonCentimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "newtonMetre"@en . + + + a rdfs:Datatype ; + rdfs:label "newtonMillimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "nicaraguanCórdoba"@en . + + + a rdfs:Datatype ; + rdfs:label "nigerianNaira"@en . + + + a rdfs:Datatype ; + rdfs:label "northKoreanWon"@en . + + + a rdfs:Datatype ; + rdfs:label "norwegianKrone"@en . + + + a rdfs:Datatype ; + rdfs:label "omaniRial"@en . + + + a rdfs:Datatype ; + rdfs:label "ounce"@en . + + + a rdfs:Datatype ; + rdfs:label "pakistaniRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "panamanianBalboa"@en . + + + a rdfs:Datatype ; + rdfs:label "papuaNewGuineanKina"@en . + + + a rdfs:Datatype ; + rdfs:label "paraguayanGuarani"@en . + + + a rdfs:Datatype ; + rdfs:label "pascal"@en . + + + a rdfs:Datatype ; + rdfs:label "perCent"@en . + + + a rdfs:Datatype ; + rdfs:label "perMil"@en . + + + a rdfs:Datatype ; + rdfs:label "peruvianNuevoSol"@en . + + + a rdfs:Datatype ; + rdfs:label "pferdestaerke"@en . + + + a rdfs:Datatype ; + rdfs:label "philippinePeso"@en . + + + a rdfs:Datatype ; + rdfs:label "polishZłoty"@en . + + + a rdfs:Datatype ; + rdfs:label "pond"@en . + + + a rdfs:Datatype ; + rdfs:label "pound"@en . + + + a rdfs:Datatype ; + rdfs:label "poundFoot"@en . + + + a rdfs:Datatype ; + rdfs:label "poundPerSquareInch"@en . + + + a rdfs:Datatype ; + rdfs:label "poundSterling"@en . + + + a rdfs:Datatype ; + rdfs:label "poundal"@en . + + + a rdfs:Datatype ; + rdfs:label "qatariRial"@en . + + + a rdfs:Datatype ; + rdfs:label "renminbi"@en . + + + a rdfs:Datatype ; + rdfs:label "rod"@en . + + + a rdfs:Datatype ; + rdfs:label "romanianNewLeu"@en . + + + a rdfs:Datatype ; + rdfs:label "russianRouble"@en . + + + a rdfs:Datatype ; + rdfs:label "rwandaFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "saintHelenaPound"@en . + + + a rdfs:Datatype ; + rdfs:label "samoanTala"@en . + + + a rdfs:Datatype ; + rdfs:label "saudiRiyal"@en . + + + a rdfs:Datatype ; + rdfs:label "second"@en . + + + a rdfs:Datatype ; + rdfs:label "serbianDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "seychellesRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "sierraLeoneanLeone"@en . + + + a rdfs:Datatype ; + rdfs:label "singaporeDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "slovakKoruna"@en . + + + a rdfs:Datatype ; + rdfs:label "solomonIslandsDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "somaliShilling"@en . + + + a rdfs:Datatype ; + rdfs:label "southAfricanRand"@en . + + + a rdfs:Datatype ; + rdfs:label "southKoreanWon"@en . + + + a rdfs:Datatype ; + rdfs:label "squareCentimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareDecametre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareDecimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareFoot"@en . + + + a rdfs:Datatype ; + rdfs:label "squareHectometre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareInch"@en . + + + a rdfs:Datatype ; + rdfs:label "squareKilometre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareMetre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareMile"@en . + + + a rdfs:Datatype ; + rdfs:label "squareMillimetre"@en . + + + a rdfs:Datatype ; + rdfs:label "squareNauticalMile"@en . + + + a rdfs:Datatype ; + rdfs:label "squareYard"@en . + + + a rdfs:Datatype ; + rdfs:label "sriLankanRupee"@en . + + + a rdfs:Datatype ; + rdfs:label "standardAtmosphere"@en . + + + a rdfs:Datatype ; + rdfs:label "stone"@en . + + + a rdfs:Datatype ; + rdfs:label "sudanesePound"@en . + + + a rdfs:Datatype ; + rdfs:label "surinamDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "swaziLilangeni"@en . + + + a rdfs:Datatype ; + rdfs:label "swedishKrona"@en . + + + a rdfs:Datatype ; + rdfs:label "swissFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "syrianPound"@en . + + + a rdfs:Datatype ; + rdfs:label "sãoToméAndPríncipeDobra"@en . + + + a rdfs:Datatype ; + rdfs:label "tajikistaniSomoni"@en . + + + a rdfs:Datatype ; + rdfs:label "tanzanianShilling"@en . + + + a rdfs:Datatype ; + rdfs:label "terabyte"@en . + + + a rdfs:Datatype ; + rdfs:label "terahertz"@en . + + + a rdfs:Datatype ; + rdfs:label "terawattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "thaiBaht"@en . + + + a rdfs:Datatype ; + rdfs:label "tonganPaanga"@en . + + + a rdfs:Datatype ; + rdfs:label "tonne"@en . + + + a rdfs:Datatype ; + rdfs:label "tonneForce"@en . + + + a rdfs:Datatype ; + rdfs:label "trinidadAndTobagoDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "tunisianDinar"@en . + + + a rdfs:Datatype ; + rdfs:label "turkishLira"@en . + + + a rdfs:Datatype ; + rdfs:label "turkmenistaniManat"@en . + + + a rdfs:Datatype ; + rdfs:label "ugandaShilling"@en . + + + a rdfs:Datatype ; + rdfs:label "ukrainianHryvnia"@en . + + + a rdfs:Datatype ; + rdfs:label "unitedArabEmiratesDirham"@en . + + + a rdfs:Datatype ; + rdfs:label "uruguayanPeso"@en . + + + a rdfs:Datatype ; + rdfs:label "usBarrel"@en . + + + a rdfs:Datatype ; + rdfs:label "usBarrelOil"@en . + + + a rdfs:Datatype ; + rdfs:label "usDollar"@en . + + + a rdfs:Datatype ; + rdfs:label "usGallon"@en . + + + a rdfs:Datatype ; + rdfs:label "uzbekistanSom"@en . + + + a rdfs:Datatype ; + rdfs:label "valvetrain"@en . + + + a rdfs:Datatype ; + rdfs:label "vanuatuVatu"@en . + + + a rdfs:Datatype ; + rdfs:label "venezuelanBolívar"@en . + + + a rdfs:Datatype ; + rdfs:label "volt"@en . + + + a rdfs:Datatype ; + rdfs:label "watt"@en . + + + a rdfs:Datatype ; + rdfs:label "wattHour"@en . + + + a rdfs:Datatype ; + rdfs:label "westAfricanCfaFranc"@en . + + + a rdfs:Datatype ; + rdfs:label "yard"@en . + + + a rdfs:Datatype ; + rdfs:label "yemeniRial"@en . + + + a rdfs:Datatype ; + rdfs:label "zambianKwacha"@en . + + + a rdfs:Datatype ; + rdfs:label "zimbabweanDollar"@en . + + + cc:license ; + dcterms:creator "DBpedia Maintainers and Contributors" ; + dcterms:description """ + The DBpedia ontology provides the classes and properties used in the DBpedia data set. + """@en ; + dcterms:issued "2008-11-17T12:00Z" ; + dcterms:license ; + dcterms:publisher "DBpedia Maintainers" ; + dcterms:source ; + dcterms:title "The DBpedia Ontology"@en ; + vann:preferredNamespacePrefix "dbo" ; + vann:preferredNamespaceUri "http://dbpedia.org/ontology/" ; + a , owl:Ontology ; + rdfs:comment """ + This ontology is generated from the manually created specifications in the DBpedia Mappings + Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which + contains instance data extracted from the different language versions of Wikipedia. For + information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki. + """@en ; + owl:versionInfo "latest-snapshot"@en ; + foaf:homepage . + +:Academic + a owl:Class ; + rdfs:label "Academic Person"@en, "Akademisk person"@da, "Personne académique"@fr, "Pertsona Akademikoa"@eu, "تعلیمی شخص"@ur, "شخص أكاديمي"@ar, "अकादमिक व्यक्ति"@hi ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:AcademicConference + a owl:Class ; + rdfs:label "academic conference"@en, "conférence scientifique"@fr, "congresso scientifico"@it, "konferencja naukowa"@pl, "wetenschappelijke conferentie"@nl, "wissenschaftliche Konferenz"@de, "навуковая канферэнцыя"@be, "научная конференция"@ru, "تعلیمی_کانفرنس"@ur, "学術会議"@ja ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass wikidata:Q2020153 ; + prov:wasDerivedFrom . + +:AcademicJournal + a owl:Class ; + rdfs:comment "اتعلیمی جریدہ زیادہ تر ہم مرتبہ نظرثانی شدہ جریدہ ہے جس میں کسی خاص تعلیمی ادب سے متعلق وظیفہ شائع کیا جاتا ہے۔ تعلیمی جرائد نئی تحقیق کی جانچ پڑتال اور موجودہ تحقیق کی تنقید کے تعارف اور پیشکش کے لیے عوامی جرگہ کے طور پر کام کرتے ہیں۔ مواد عام طور پر مضامین کی شکل اختیار کرتا ہے جو اصل تحقیق، جائزہ مضامین، اور کتاب کے جائزے پیش کرتے ہیں۔"@ur ; + rdfs:label "Wissenschaftliche Fachzeitschrift"@de, "academic journal"@en, "czasopismo naukowe"@pl, "giornale accademico"@it, "iris acadúil"@ga, "journal académique"@fr, "revista académica"@gl, "wetenschappelijk tijdschrift"@nl, "ακαδημαϊκό περιοδικό"@el, "تعلیمی جریدہ"@ur, "学術雑誌"@ja, "學術期刊"@zh, "학술지"@ko ; + rdfs:subClassOf :PeriodicalLiterature ; + prov:wasDerivedFrom . + +:AcademicSubject + a owl:Class ; + rdfs:comment "Genres of art, e.g. Mathematics, History, Philosophy, Medicine"@en, "Unha disciplina académica é unha rama do coñecemento que unha comunidade de especialistas desenvolve con metodoloxías de investigación."@gl ; + rdfs:label "academic subject"@en, "academische hoofdstudierichting"@nl, "akademisches Fach"@de, "disciplina académica"@gl, "dyscyplina naukowa"@pl, "sujet académique"@fr, "تعلیمی مضمون"@ur ; + rdfs:subClassOf :TopicalConcept ; + owl:equivalentClass wikidata:Q11862829 ; + prov:wasDerivedFrom . + +:Activity + a owl:Class ; + rdfs:label "Aktivität"@de, "actividad"@es, "actividade"@gl, "activiteit"@nl, "activity"@en, "activité"@fr, "aktivitet"@da, "aktywność"@pl, "atividade"@pt, "attività"@it, "gníomhaíocht"@ga, "Δραστηριότητα"@el, "سرگرمی"@ur, "活動"@ja, "活動"@zh, "활동"@ko ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + owl:equivalentClass d0:Activity, wikidata:Q1914636 ; + prov:wasDerivedFrom . + +:Actor + a owl:Class ; + rdfs:comment "An actor or actress is a person who acts in a dramatic production and who works in film, television, theatre, or radio in that capacity."@en, "Un actor, se é home, ou unha actriz, se é muller, é unha persoa que representa un papel nunha obra teatral, cinematográfica, radiofónica ou televisiva."@gl, "Un attore o un attrice è una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica."@it, "Μια ηθοποιός ή ένας ηθοποιός είναι ένα άτομο που παίζει σε μια δραματική παραγωγή και που εργάζεται στο χώρο του κινηματογράφου, της τηλεόρασης, του θεάτρου, ή το ραδιόφωνο."@el, "ایک اداکار یا اداکارہ وہ شخص ہوتا ہے جو ڈرامائی پروڈکشن میں کام کرتا ہے اور جو فلم ، ٹیلی ویژن ، تھیٹر یا ریڈیو میں اس صلاحیت کے ساتھ کام کرتا ہے"@ur ; + rdfs:label "Schauspieler"@de, "acteur"@fr, "acteur"@nl, "actor"@en, "actor"@es, "actor"@gl, "aisteoir"@ga, "aktieris"@lv, "aktor"@pl, "aktore"@eu, "ator"@pt, "attore"@it, "skuespiller"@da, "ηθοποιός"@el, "اداکار"@ur, "俳優"@ja, "演員"@zh, "영화인"@ko ; + rdfs:subClassOf :Artist ; + owl:equivalentClass wikidata:Q33999 ; + prov:wasDerivedFrom . + +:AdministrativeRegion + a owl:Class ; + rdfs:comment "(نتظامی علاقہ)انتظامی ادارے کے دائرہ اختیار میں ایک آبادی والی جگہ۔ یہ ادارہ یا تو ایک پورے علاقے یا ایک یا اس سے ملحقہ بستیوں کا انتظام کر سکتا ہے"@ur, "A PopulatedPlace under the jurisdiction of an administrative body. This body may administer either a whole region or one or more adjacent Settlements (town administration)"@en ; + rdfs:label "Verwaltungsregion"@de, "administrative region"@en, "bestuurlijk gebied"@nl, "regione amministrativa"@it, "rexión administrativa"@gl, "région administrative"@fr, "réigiún riaracháin"@ga, "διοικητική περιφέρεια"@el, "انتظامی علاقہ"@ur, "行政区画"@ja, "行政區"@zh, "관리 지역"@ko ; + rdfs:subClassOf :Region ; + owl:equivalentClass , wikidata:Q3455524 ; + prov:wasDerivedFrom . + +:AdultActor + a owl:Class ; + rdfs:comment "A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film."@en, "Un actor ou unha actriz porno ou pornográfico/a, é un actor ou actriz de cine porno que actúa en películas de temática pornográfica..<ref>https://gl.wikipedia.org/wiki/Actor_pornogr%C3%A1fico</ref>"@gl, "ایک فحش اداکار یا اداکارہ یا پورن سٹار وہ شخص ہوتا ہے جو فلم میں جنسی حرکتیں کرتا ہے، عام طور پر اسے فحش فلم کے طور پر دیکھا جاتا ہے۔"@ur ; + rdfs:label "acteur porno/acteur adulte"@fr, "actor porno"@es, "actor porno"@gl, "adult (pornographic) actor"@en, "aisteoir pornagrafaíochta"@ga, "aktor pornograficzny"@pl, "ator adulto"@pt, "attore porno"@it, "pornografisch acteur"@nl, "pornographischer Schauspieler"@de, "ενήλικας (πορνογραφικός) ηθοποιός"@el, "بالغ اداکار"@ur, "ポルノ女優"@ja, "色情演員"@zh, "성인 배우"@ko ; + rdfs:subClassOf :Actor ; + owl:equivalentClass wikidata:Q488111 ; + prov:wasDerivedFrom . + +:Agent + a owl:Class ; + rdfs:comment "Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation."@en, "Análogo a foaf:Agent, un axente é unha entidade que actúa. Destínase a ser a super clase de Persoa e Organización."@gl, "Equivaut à foaf:Agent, un agent est une entité qui agit. C'est supposé être la super classe de Person et de Organisation."@fr, "Ανάλογα με την κλάση foaf:Agent, ένας πράκτορας είναι μια οντότητα που ενεργεί. Αυτό προορίζεται να είναι μια υπερκλάση της κλάσης Άτόμο και Οργανισμός."@el, "ایک (ایجنٹ) ایک ایسا ادارہ ہے جو کام کرتا ہے۔ اس کا مقصد شخص اور تنظیم کا فوق درجہ ہونا ہے ۔"@ur ; + rdfs:label "Agent"@de, "agent"@da, "agent"@en, "agent"@fr, "agent"@nl, "agente"@es, "agente"@it, "axente"@gl, "gníomhaire"@ga, "πράκτορας"@el, "نمائندہ"@ur, "エージェント"@ja, "에이전트"@ko ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Place ; + owl:equivalentClass dul:Agent, wikidata:Q24229398 ; + prov:wasDerivedFrom . + +:Agglomeration + a owl:Class ; + rdfs:label "Ballungsgebiet"@de, "agglomeratie"@nl, "agglomeration"@en, "agglomération"@fr, "aglomeración"@gl, "aglomeracja"@pl, "συσσώρευση"@el, "جمع"@ur ; + rdfs:subClassOf :PopulatedPlace ; + prov:wasDerivedFrom . + +:Aircraft + a owl:Class ; + rdfs:label "Flugzeug"@de, "aereo"@it, "aerárthach"@ga, "aircraft"@en, "avion"@fr, "avion"@ro, "avión"@es, "avión"@gl, "fly"@da, "samolot"@pl, "vliegtuig"@nl, "αεροσκάφος"@el, "ہوائی جہاز"@ur, "航空機"@ja, "飛機"@zh, "비행기"@ko ; + rdfs:subClassOf :MeanOfTransportation, ; + owl:equivalentClass wikidata:Q11436 ; + prov:wasDerivedFrom . + +:Airline + a owl:Class ; + rdfs:comment "ہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم"@ur ; + rdfs:label "Fluggesellschaft"@de, "aerlíne"@ga, "airline"@en, "compagnia aerea"@it, "compagnie aérienne"@fr, "compañía aerea"@es, "compañía aérea"@gl, "flyselskab"@da, "linia lotnicza"@pl, "luchtvaartmaatschappij"@nl, "αεροπορική εταιρεία"@el, "ہوائی راستہ"@ur, "航空会社"@ja, "航空公司"@zh, "항공사"@ko ; + rdfs:subClassOf :PublicTransitSystem ; + owl:equivalentClass wikidata:Q46970 ; + prov:wasDerivedFrom . + +:Airport + a owl:Class ; + rdfs:label "Flughafen"@de, "aerfort"@ga, "aeroporto"@gl, "aeroporto"@it, "aeroporto"@pt, "aeropuerto"@es, "airport"@en, "aéroport"@fr, "lotnisko"@pl, "luchthaven"@nl, "lufthavn"@da, "αεροδρόμιο"@el, "аэропорт"@ru, "ہوائی اڈہ"@ur, "機場"@zh, "空港"@ja, "공항"@ko ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass , wikidata:Q1248784 ; + prov:wasDerivedFrom . + +:Album + a owl:Class ; + rdfs:label "Album"@de, "albam"@ga, "album"@da, "album"@el, "album"@en, "album"@es, "album"@fr, "album"@it, "album"@nl, "album (wydawnictwo muzyczne)"@pl, "álbum"@gl, "álbum"@pt, "تصویروں اور دستخط کی کتاب"@ur, "አልበም"@am, "アルバム"@ja, "照片集"@zh, "앨범"@ko ; + rdfs:subClassOf :MusicalWork ; + owl:equivalentClass , wikidata:Q482994 ; + prov:wasDerivedFrom . + +:Algorithm + a owl:Class ; + rdfs:comment "ایک عین قاعدہ (یا قواعد کا مجموعہ) جس میں وضاحت کی جاتی ہے کہ کسی مسئلے کو کیسے حل کیا جائے"@ur ; + rdfs:label "Algorithm"@en, "Algorithme"@fr, "Algorithmus"@de, "Algoritme"@nl, "Алгоритм"@ru, "حساب و شمار"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q8366 ; + prov:wasDerivedFrom . + +:Altitude + a owl:Class ; + rdfs:comment "A altitude é a distancia vertical dun obxecto respecto dun punto de orixe dado, considerado como o nivel cero, para o que se adoita tomar o nivel absoluto do mar.<ref>https://gl.wikipedia.org/wiki/Altitude</ref>"@gl, "Το υψόμετρο είναι η κάθετη απόσταση ενός αντικειμένου σε σχέση με ένα καθορισμένο επίπεδο αναφοράς. Συνήθως το υψόμετρο μετριέται ως η κάθετη απόσταση (υψομετρική διαφορά) ενός τόπου από το επίπεδο της θάλασσας (Μέση Στάθμη Θάλασσας), ενώ για πιο ακριβείς μετρήσεις χρησιμοποιείται το γεωειδές."@el ; + rdfs:label "Höhe"@de, "airde"@ga, "altitude"@en, "altitude"@fr, "altitude"@gl, "hoogte"@nl, "højde"@da, "υψόμετρο"@el, "اونچائی"@ur, "高度"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q190200 ; + prov:wasDerivedFrom . + +:AmateurBoxer + a owl:Class ; + rdfs:label "Amateurboxer"@de, "amateur boxer"@en, "amateur boxer"@nl, "boxeador afeccionado"@gl, "boxeur amateur"@fr, "dornálaí amaitéarach"@ga, "pugile amatoriale"@it, "ερασιτέχνης μποξέρ"@el, "شوقیہ مکے باز"@ur, "アマチュアボクサー"@ja, "아마추어 권투 선수"@ko ; + rdfs:subClassOf :Boxer ; + prov:wasDerivedFrom . + +:Ambassador + a owl:Class ; + rdfs:comment "An ambassador is the highest ranking diplomat that represents a nation and is usually accredited to a foreign sovereign or government, or to an international organization."@en, "Un embaixador é o funcionario diplomático de máis alto nivel acreditado diante de un Estado estranxeiro ou organización internacional.<ref>https://gl.wikipedia.org/wiki/Embaixador</ref>"@gl, "ایک غیر ملکی حکومت سے منظور شدہ اعلیٰ ترین عہدے کا سفارتی کارندہ"@ur ; + rdfs:label "Botschafter"@de, "ambasadóir"@ga, "ambasciatore"@it, "ambassadeur"@fr, "ambassadeur"@nl, "ambassador"@en, "embaixador"@gl, "embajador"@es, "πρεσβευτής"@el, "سفیر"@ur, "大使"@ja, "대사 (외교관)"@ko ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q121998 ; + prov:wasDerivedFrom . + +:AmericanFootballCoach + a owl:Class ; + rdfs:label "American-Football-Trainer"@de, "Amerikaanse football coach"@nl, "adestrador de fútbol americano"@gl, "allenatore di football americano"@it, "american football coach"@en, "entraineur de football américain"@fr, "προπονητής ράγκμπυ"@el, "امریکی فٹ بال کوچ"@ur ; + rdfs:subClassOf :Coach ; + prov:wasDerivedFrom . + +:AmericanFootballLeague + a owl:Class ; + rdfs:comment "A National Football League (en galego: Liga Nacional de Fútbol Americano), mellor coñecida polas súas siglas en inglés, NFL, é a maior liga de fútbol americano profesional dos Estados Unidos e está considerada como a máis grande e prestixiosa propiedade deportiva nese país.<ref>https://gl.wikipedia.org/wiki/National_Football_League</ref>"@gl, "A group of sports teams that compete against each other in american football."@en, "Ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στο αμερικάνικο ποδόσφαιρο."@el, "کھیلوں کی ٹیموں کا ایک گروپ جو امریکی فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔."@ur ; + rdfs:label "American-Football-Liga"@de, "Amerikaanse voetbal competitie"@nl, "american football league"@en, "american football league"@fr, "aμερικανικό πρωτάθλημα ποδοσφαίρου"@el, "lega di football americano"@it, "liga de futebol americano"@pt, "liga de fútbol americano"@es, "liga de fútbol americano"@gl, "امریکن فٹ بال لیگ"@ur, "アメリカン・フットボール・リーグ"@ja, "미식 축구 대회"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:AmericanFootballPlayer + a owl:Class ; + rdfs:label "American Footballspieler"@de, "American footballspeler"@nl, "american football player"@en, "giocatore di football americano"@it, "joueur de football américain"@fr, "jugador de fútbol americano"@es, "xogador de fútbol americano"@gl, "παίκτης αμερικανικού ποδοσφαίρου"@el, "امریکی فٹ بال کھلاڑی"@ur, "アメリカンフットボール選手"@ja, "미식 축구 선수"@ko ; + rdfs:subClassOf :GridironFootballPlayer ; + owl:equivalentClass wikidata:Q14128148 ; + prov:wasDerivedFrom . + +:AmericanFootballTeam + a owl:Class ; + rdfs:label "American-Football-Team"@de, "Amerikaans football team"@nl, "american football Team"@en, "equipo de fútbol americano"@gl, "squadra di football americano"@it, "équipe américaine de football américain"@fr, "ομάδα αμερικανικού ποδοσφαίρου"@el, "امریکی فٹ بال ٹیم"@ur, "アメリカン・フットボール・チーム"@ja, "미식 축구 팀"@ko ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:AmericanLeader + a owl:Class ; + rdfs:label "American Leader"@en, "Amerikako liderra"@eu, "Amerikansk leder"@da, "chef américain"@fr, "امریکی رہنما"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Amphibian + a owl:Class ; + rdfs:comment "خشکی اور تری دونوں کا وہ جانور جوخشکی اور پانی دونوں میں رہے"@ur ; + rdfs:label "Amphibie"@de, "amfaibiach"@ga, "amfibie"@nl, "amphibian"@en, "amphibien"@fr, "anfibio"@gl, "anfibio"@it, "anfíbio"@pt, "αμφίβιο"@el, "جل تھلیا"@ur, "両生類"@ja, "양서류"@ko ; + rdfs:subClassOf :Animal ; + prov:wasDerivedFrom . + +:AmusementParkAttraction + a owl:Class ; + rdfs:label "Vergnügungsparkattraktion"@de, "amusement park attraction"@en, "atracción de parque de atraccións"@gl, "parc d'attractions"@fr, "pretparkattractie"@nl, "δραστηριότητα λούνα πάρκ"@el, "تفریحی پارک کی کشش"@ur ; + rdfs:subClassOf :ArchitecturalStructure ; + prov:wasDerivedFrom . + +:AnatomicalStructure + a owl:Class ; + rdfs:label "anatomical structure"@en, "anatomische structuur"@nl, "anatomischen Struktur"@de, "anatomska struktura"@sl, "coirpeog"@ga, "estrutura anatómica"@gl, "structure anatomique"@fr, "struttura anatomica"@it, "ανατομική δομή"@el, "جسمانی ساخت"@ur, "解剖構造"@ja, "해부학"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q4936952 ; + prov:wasDerivedFrom . + +:Animal + a owl:Class ; + rdfs:label "Tier"@de, "ainmhí"@ga, "animal"@en, "animal"@es, "animal"@fr, "animal"@gl, "animal"@pt, "animale"@it, "dier"@nl, "dyr"@da, "zviera"@sk, "žival"@sl, "ζώο"@el, "جانور"@ur, "動物"@ja, "동물"@ko ; + rdfs:subClassOf :Eukaryote ; + owl:equivalentClass wikidata:Q729 ; + prov:wasDerivedFrom . + +:AnimangaCharacter + a owl:Class ; + rdfs:comment "Anime/Manga character"@en, "Χαρακτήρας από Άνιμε/Μάνγκα"@el ; + rdfs:label "Manga-Charakter"@de, "ani-manga figuur"@nl, "animanga character"@en, "carachtar animanga"@ga, "personaggio animanga"@it, "personaxe de animanga"@gl, "personnage d'animanga"@fr, "χαρακτήρας ανιμάνγκα"@el, "انیمنگا کردار"@ur, "キャラクター"@ja, "만화애니 등장인물"@ko ; + rdfs:subClassOf :ComicsCharacter ; + prov:wasDerivedFrom . + +:Anime + a owl:Class ; + rdfs:comment "A style of animation originating in Japan"@en, "Designación coa que se coñece a animación xaponesa"@gl, "Geanimeerd Japans stripverhaal"@nl, "Style d'animation né au Japon"@fr, "Στυλ κινουμένων σχεδίων με καταγωγή την Ιαπωνία"@el, "حرکت پذیری کا ایک انداز جاپان میں شروع ہوا۔"@ur ; + rdfs:label "Animation"@fr, "Anime"@en, "anime"@de, "anime"@ga, "anime"@gl, "anime"@it, "anime"@nl, "άνιμε"@el, "انیمے"@ur, "アニメ"@ja, "일본의 애니메이션"@ko ; + rdfs:subClassOf :Cartoon ; + owl:equivalentClass wikidata:Q1107 ; + prov:wasDerivedFrom . + +:Annotation + a owl:Class ; + rdfs:label "Aantekening"@nl, "Annotation"@en, "Randglosse"@de, "annotation"@fr, "nota"@gl, "Σχόλιο"@el, "تشریح"@ur, "注釈"@ja ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass , ; + prov:wasDerivedFrom . + +:Arachnid + a owl:Class ; + rdfs:comment "حیوانیات میں اِس خاندان کا نام جِس میں مکڑی اور بچھو وغیرہ شامِل ہیں"@ur ; + rdfs:label "Spinnentier"@de, "arachnid"@en, "arachnides"@fr, "aracnide"@it, "aracnídeos"@pt, "araicnid"@ga, "arácnido"@es, "spinachtigen"@nl, "αραχνοειδές"@el, "عنکبات"@ur, "クモ綱"@ja, "거미강"@ko ; + rdfs:subClassOf :Animal ; + prov:wasDerivedFrom . + +:Archaea + a owl:Class ; + rdfs:label "Archaea (oerbacteriën)"@nl, "Archaeen"@de, "archaea"@en, "archei"@it, "archées"@fr, "αρχαία"@el, "آثار قدیمہ"@ur, "古細菌"@ja, "고세균"@ko ; + rdfs:subClassOf :Species ; + prov:wasDerivedFrom . + +:Archbishop + a owl:Class ; + rdfs:label "Erzbischof"@de, "aartsbisschop"@nl, "archbishop"@en, "archevêque"@fr, "پادریوں کا سردار"@ur ; + rdfs:subClassOf :ChristianBishop ; + prov:wasDerivedFrom . + +:Archeologist + a owl:Class ; + rdfs:label "Archäologe"@de, "Arqueólogo"@es, "archeolog"@pl, "archeologist"@en, "archeoloog"@nl, "archéologue"@fr, "seandálaí"@ga, "Αρχαιολόγος"@el, "ماہر آثار قدیمہ"@ur, "考古学者"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q3621491 ; + prov:wasDerivedFrom . + +:ArcherPlayer + a owl:Class ; + rdfs:label "Archer Player"@en, "Bogenschütze"@de, "Tireur à l'arc"@fr, "boogschutter"@nl, "تیر انداز کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Archipelago + a owl:Class ; + rdfs:label "Archipel"@de, "archipel"@fr, "archipel"@nl, "archipelago"@en, "archipiélago"@es, "arquipélago"@pt, "αρχιπέλαγος"@el, "جزیرہ نما"@ur, "多島海"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q33837 ; + prov:wasDerivedFrom . + +:Architect + a owl:Class ; + rdfs:label "Architekt"@de, "architect"@en, "architect"@nl, "architecte"@fr, "architetto"@it, "arquitecto"@es, "uaslathaí"@ga, "αρχιτέκτονας"@el, "معمار"@ur, "建築士"@ja, "건축가"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q42973 ; + prov:wasDerivedFrom . + +:ArchitecturalStructure + a owl:Class ; + rdfs:comment "An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure)."@en, "Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel für eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk)."@de, "Une structure architecturale est une construction extérieure immobile, autonome et construite par l'homme (http://en.wikipedia.org/wiki/Architectural_structure)."@fr, "Μια αρχιτεκτονική κατασκευή είναι μια ανθρώπινη κατασκευή, επιδαπέδια, ακίνητη κατασκευή (http://en.wikipedia.org/wiki/Architectural_structure)."@el, "یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔"@ur ; + rdfs:label "Bauwerk"@de, "architectural structure"@en, "bouwsel"@nl, "estructura arquitectural"@es, "struchtúr ailtireachta"@ga, "structure architecturale"@fr, "struttura architettonica"@it, "αρχιτεκτονική κατασκευή"@el, "تعمیراتی ڈھانچے"@ur, "構造物"@ja, "건축 구조"@ko ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Archive + a owl:Class ; + rdfs:comment "Collection de documents appartenant à une personne ou une organisation."@fr, "Collection of documents pertaining to a person or organisation."@en, "Verzameling van documenten rondom een persoon of organisatie."@nl, "Η συλλογή των εγγράφων που σχετίζονται με ένα πρόσωπο ή οργανισμό."@el, "کسی شخص یا تنظیم سے متعلق دستاویزات کا مجموع"@ur ; + rdfs:label "Archief"@nl, "Archiv"@de, "Archive"@en, "archive"@fr, "archivo"@es, "archiwum"@pl, "αρχείο"@el, "محفوظ شدہ دستاویزات"@ur, "アーカイブ"@ja ; + rdfs:subClassOf :CollectionOfValuables ; + owl:equivalentClass wikidata:Q166118 ; + prov:wasDerivedFrom . + +:Area + a owl:Class ; + rdfs:comment "Area of something. Use \"value\" for the value, \"min\" & \"max\" for a range (if uncertain) and \"rank\" (integer) for the rank of that thing amongst its siblings (eg regions ordered by area)"@en, "Mesure d'une surface."@fr, "Εμβαδόν ή έκταση είναι το μέγεθος μέτρησης των επιφανειών."@el, "کسی چیز کا علاقہ"@ur ; + rdfs:label "Bereich"@de, "aire"@fr, "area"@en, "ceantar"@ga, "gebied"@nl, "εμβαδόν"@el, "رقبہ"@ur, "面積"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Arena + a owl:Class ; + rdfs:comment "An arena is an enclosed area, often circular or oval-shaped, designed to showcase theater, musical performances, or sporting events. (http://en.wikipedia.org/wiki/Arena)"@en, "Une aréna désigne une enceinte pouvant accueillir des spectacles, des concerts ou des événements sportifs.(https://fr.wikipedia.org/wiki/Arena)"@fr, "ایک میدان ایک ایسا علاقہ ہے جو شوز، کنسرٹ یا کھیلوں کے پروگراموں کی میزبانی کر سکتا ہے(https://fr.wikipedia.org/wiki/Arena)"@ur ; + rdfs:label "arena"@en, "arène"@fr, "میدان"@ur ; + rdfs:subClassOf :ArchitecturalStructure, ; + prov:wasDerivedFrom . + +:Aristocrat + a owl:Class ; + rdfs:label "Aristokrat"@de, "aristocraat"@nl, "aristocrat"@en, "aristocrate"@fr, "aristócrata"@es, "uaslathaí"@ga, "اشرافیہ"@ur, "貴種"@ja ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Arrondissement + a owl:Class ; + rdfs:comment "An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level"@en, "Das Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern"@de, "ایک انتظامی (فرانس) یا قانون کی عدالتیں (نیدرلینڈز) جو کہ علاقائی وحدت پر مقامی اور قومی سطح کے درمیان حکمرانی کرتی ہیں"@ur ; + rdfs:label "arrondissement"@de, "arrondissement"@en, "arrondissement"@fr, "arrondissement"@nl, "فرانس کا انتظامی ضلع"@ur, "フランスの群"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Artery + a owl:Class ; + rdfs:label "Arterie"@de, "artaire"@ga, "arteria"@it, "artery"@en, "artère"@fr, "slagader"@nl, "tętnica"@pl, "αρτηρία"@el, "شریان"@ur, "動脈"@ja, "동맥"@ko ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q9655 ; + prov:wasDerivedFrom . + +:Article + a owl:Class ; + rdfs:label "Artikle"@de, "article"@en, "article"@fr, "artikel"@nl, "جریدے کا نشر پارہ"@ur, "記事"@ja ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:ArtificialSatellite + a owl:Class ; + rdfs:comment "In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit."@en, "Satellit (Raumfahrt), ein künstlicher Raumflugkörper, der einen Himmelskörper auf einer festen Umlaufbahn umrundet"@de, "Un satellite artificiel est un objet placé intentionellement en orbite."@fr, "Στο πλαίσιο των διαστημικών πτήσεων, ένας τεχνητός δορυφόρος είναι ένα τεχνητό αντικείμενο το οποίο εκ προθέσεως έχει τοποθετηθεί σε τροχιά."@el, "خلائی پرواز کے تناظر میں ، مصنوعی سیارہ ایک مصنوعی شے ہے جسے جان بوجھ کر مدار میں رکھا گیا ہے"@ur ; + rdfs:label "ArtificialSatellite"@en, "kunstmatige satelliet"@nl, "künstlicher Satellit"@de, "satailít shaorga"@ga, "satellite artificiel"@fr, "τεχνητός δορυφόρος"@el, "مصنوعی سیارہ"@ur, "人工衛星"@ja ; + rdfs:subClassOf :Satellite ; + prov:wasDerivedFrom . + +:Artist + a owl:Class ; + rdfs:label "Künstler"@de, "artist"@en, "artista"@it, "artiste"@fr, "artysta"@pl, "ealaíontóir"@ga, "kunstenaar"@nl, "kunstner"@da, "καλλιτέχνης"@el, "мастак"@be, "художник"@ru, "فنکار"@ur, "芸術家"@ja, "예술가"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q483501 ; + prov:wasDerivedFrom . + +:ArtistDiscography + a owl:Class ; + rdfs:label "Künstler Diskografie"@de, "artiest discografie"@nl, "artist discography"@en, "dioscagrafaíocht an ealaíontóra"@ga, "discogafía de artista"@fr, "discografia dell'artista"@it, "δισκογραφία καλλιτέχνη"@el, "فنکارکاریکارڈ نامہ"@ur, "ディスコグラフィ"@ja, "음반"@ko ; + rdfs:subClassOf :MusicalWork ; + prov:wasDerivedFrom . + +:ArtisticGenre + a owl:Class ; + rdfs:comment "Gattung nennt man in den Kunstwissenschaften die auf das künstlerische Ausdrucksmedium bezogenen Formen der Kunst."@de, "Genres of art, e.g. Pointillist, Modernist"@en, "genre d'art, ex: Pointillisme, Modernisme"@fr, "فن کی انواع"@ur ; + rdfs:label "Kunstgattung"@de, "artistic genre"@en, "genre artistique"@fr, "kunstsoort"@nl, "فنکارانہ صنف"@ur ; + rdfs:subClassOf :Genre ; + prov:wasDerivedFrom . + +:Artwork + a owl:Class ; + rdfs:comment "A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation."@en, "فن کا کام، فَنی پیس، یا فَنی آبجیکٹ ایک جمالیاتی شے یا فنکارانہ تخلیق ہے۔"@ur ; + rdfs:label "Kunstwerk"@de, "artwork"@en, "kunstværk"@da, "kunstwerk"@nl, "obra de arte"@es, "opera d'arte"@it, "saothar ealaíne"@ga, "œuvre d'art"@fr, "έργο τέχνης"@el, "کار ہنر"@ur, "作品"@ja, "작품"@ko ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q838948 ; + prov:wasDerivedFrom . + +:Asteroid + a owl:Class ; + rdfs:label "Asteroid"@de, "astaróideach"@ga, "asteroid"@en, "asteroide"@es, "asteroide"@it, "asteroïde"@nl, "asteróide"@pt, "astéroïde"@fr, "αστεροειδής"@el, "کشودرگرہ"@ur, "小惑星"@ja, "소행성"@ko ; + rdfs:subClassOf :CelestialBody ; + owl:equivalentClass wikidata:Q3863 ; + prov:wasDerivedFrom . + +:Astronaut + a owl:Class ; + rdfs:label "Astronaut"@de, "astronaut"@en, "astronauta"@es, "astronauta"@it, "astronauta"@pt, "astronaute"@fr, "ruimtevaarder"@nl, "spásaire"@ga, "αστροναύτης"@el, "خلا باز"@ur, "宇宙飛行士"@ja, "우주인"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q11631 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Astronaut ; + rdfs:label "Gesamtzeit welche die Person im Weltraum verbracht hat (m)"@de, "temps total passé dans l'espace par la personne (m)"@fr, "total time person has spent in space (m)"@en ; + rdfs:range . + +:Athlete + a owl:Class ; + rdfs:label "Athlet"@de, "athlete"@en, "athlète"@fr, "atleet"@nl, "atleta"@it, "lúthchleasaí"@ga, "αθλητής"@el, "کھلاڑی"@ur, "アスリート"@ja, "운동 선수"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q2066131 ; + prov:wasDerivedFrom . + +:Athletics + a owl:Class ; + rdfs:label "Leichtathletik"@de, "athletics"@en, "athlétisme"@fr, "atletiek"@nl, "atletismo"@es, "lúthchleasaíocht"@ga, "αθλητικά"@el, "کھیل کے متعلق"@ur, "陸上競技"@ja ; + rdfs:subClassOf :Sport ; + prov:wasDerivedFrom . + +:AthleticsPlayer + a owl:Class ; + rdfs:label "Athlet"@de, "athletics player"@en, "atleet"@nl, "giocatore di atletica leggera"@it, "lúthchleasaí"@ga, "پھُرتیلاکھلاڑی"@ur, "陸上競技選手"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Atoll + a owl:Class ; + rdfs:comment "مرجانی چٹانوں سے بنا ہواجزیرہ"@ur ; + rdfs:label "Atoll"@de, "atol"@nl, "atoll"@en, "atoll"@fr, "atollo"@it, "ατόλη"@el, "اڈل"@ur, "環礁"@ja, "환초"@ko ; + rdfs:subClassOf :Island ; + prov:wasDerivedFrom . + +:Attack + a owl:Class ; + rdfs:comment "An Attack is not necessarily part of a Military Conflict"@en, "حملہ لازمی طور پر فوجی تصادم کا حصہ نہیں ہے۔"@ur ; + rdfs:label "Angriff, Anschlag"@de, "aanval, aanslag"@nl, "attack"@en, "attaque, attentat"@fr, "حملہ"@ur, "攻撃"@ja ; + rdfs:subClassOf :SocietalEvent ; + prov:wasDerivedFrom . + +:AustralianFootballLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in australian football."@en, "Μια ομάδα αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους σε αυστραλιανό ποδόσφαιρο."@el, "کھیلوں کی ٹیموں کا ایک گروپ جو آسٹریلین فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے"@ur ; + rdfs:label "Australian Football League"@de, "australian football competitie"@nl, "australian football league"@en, "australian football league"@fr, "lega di football australiano"@it, "liga de futebol australiano"@pt, "liga de fútbol australiana"@es, "αυστραλιανό πρωτάθλημα ποδοσφαίρου"@el, "آسٹریلوی فٹ بال کی انجمن"@ur, "オーストラリアン・フットボール・リーグ"@ja, "오스트레일리안 풋볼 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:AustralianFootballTeam + a owl:Class ; + rdfs:label "Australian Football Team"@de, "Australian football team"@nl, "australian football Team"@en, "squadra di football australiano"@it, "Équipe de Football Australien"@fr, "ποδοσφαιρική ομάδα αυστραλίας"@el, "آسٹریلوی فٹ بال ٹیم"@ur, "オーストラリアンフットボールチーム"@ja ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:AustralianRulesFootballPlayer + a owl:Class ; + rdfs:label "Australian Rules Football-Spieler"@de, "Australian football-speler"@nl, "Australian rules football player"@en, "giocatore di football australiano"@it, "αυστραλιανοί κανόνες ποδοσφαιριστή"@el, "آسٹریلوی رولز فٹ بال پلیئر"@ur, "オージーフットボール選手"@ja, "오스트레일리아식 풋볼 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13414980 ; + prov:wasDerivedFrom . + +:AutoRacingLeague + a owl:Class ; + rdfs:comment "a group of sports teams or individual athletes that compete against each other in auto racing"@en, "μια ομάδα αθλητικών ομάδων ή μεμονωμένων αθλητών που ανταγωνίζονται μεταξύ τους σε αγώνες αυτοκινήτων"@el, "کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروپ جو آٹو ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں"@ur ; + rdfs:label "Auto Racing League"@de, "auto race competitie"@nl, "auto racing league"@en, "la ligue de course automobile"@fr, "lega automobilistica"@it, "sraith rásaíochta charanna"@ga, "πρωτάθλημα αγώνων αυτοκινήτων"@el, "گاڑیوں کی ریسوں کی انجمن"@ur, "自動車競技リーグ"@ja, "자동차 경주 대회"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Automobile + a owl:Class ; + rdfs:label "Automobil"@de, "automobiel"@nl, "automobile"@en, "automobile"@fr, "automobile"@it, "automovel"@pt, "automóvil"@es, "avtomobil"@sl, "gluaisteán"@ga, "samochód"@pl, "αυτοκίνητο"@el, "автомобиль"@ru, "аўтамабіль"@be, "گاڑی"@ur, "自動車"@ja, "자동차"@ko ; + rdfs:subClassOf :MeanOfTransportation, ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Automobile ; + rdfs:label "Kraftstoffkapazität (l)"@de, "fuel capacity (l)"@en, "χωρητικότητα καυσίμου (l)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Automobile ; + rdfs:label "Radstand (mm)"@de, "wheelbase (mm)"@en, "међуосовинско растојање (mm)"@sr ; + rdfs:range . + +:AutomobileEngine + a owl:Class ; + rdfs:label "Fahrzeugmotor"@de, "automobile engine"@en, "automotor"@nl, "inneall gluaisteáin"@ga, "moteur d'automobile"@fr, "motor de automóvel"@pt, "motore d'automobile"@it, "κινητήρας αυτοκινήτου"@el, "موٹر گاڑی کا انجن"@ur, "内燃機関"@ja, "자동차 엔진"@ko ; + rdfs:subClassOf :Engine ; + prov:wasDerivedFrom . + +:Award + a owl:Class ; + rdfs:label "Auszeichnung"@de, "award"@en, "gradam"@ga, "nagrada"@sl, "nagroda"@pl, "premio"@it, "prijs"@nl, "récompense"@fr, "βραβείο"@el, "انعام"@ur, "賞"@ja, "상"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q618779 ; + prov:wasDerivedFrom . + +:BackScene + a owl:Class ; + rdfs:comment "Composer, producer, and backstage people."@en, "Tout compositeur de texte, producteur, arrangeur, ingénieur et personnel d'arrière scène."@fr, "نَغمہ سَاز، پیش کرنے والا، اور پس پردہ لوگ"@ur ; + rdfs:label "Arrière-scène"@fr, "Backround-Chor"@de, "achtergrond koor"@nl, "back scene"@en, "پس_منظر"@ur ; + rdfs:subClassOf :MusicalArtist ; + prov:wasDerivedFrom . + +:Bacteria + a owl:Class ; + rdfs:label "bacteria"@en, "bacteria"@es, "bacterie"@nl, "bactérie"@fr, "baictéir"@ga, "bakterium"@de, "batterio"@it, "βακτήρια"@el, "جراثیم"@ur, "真正細菌"@ja, "세균"@ko ; + rdfs:subClassOf :Species ; + prov:wasDerivedFrom . + +:BadmintonPlayer + a owl:Class ; + rdfs:label "Badmintonspieler"@de, "badminton player"@en, "badmintonspeler"@nl, "giocatore di badminton"@it, "imreoir badmantain"@ga, "jogador de badminton"@pt, "joueur de badminton"@fr, "παίχτης του μπάντμιντον"@el, "بیڈمنٹن کا کھلاڑی"@ur, "バドミントン選手"@ja, "배드민턴 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Band + a owl:Class ; + rdfs:label "Band"@en, "Musikgruppe"@de, "band"@nl, "banda"@es, "banda"@pt, "banna ceoil"@ga, "groupe de musique"@fr, "gruppo musicale"@it, "μουσικό συγκρότημα"@el, "گانے والوں کا گروہ"@ur, "ባንድ"@am, "バンド_(音楽)"@ja, "음악 그룹"@ko ; + rdfs:subClassOf :Group, , dul:SocialPerson ; + owl:equivalentClass wikidata:Q215380 ; + prov:wasDerivedFrom . + +:Bank + a owl:Class ; + rdfs:comment "a company which main services are banking or financial services."@en, "ایک تِجارتی اِدارہ جس کی اہم خدمات بینکنگ یا مالیاتی خدمات ہیں"@ur ; + rdfs:label "Bank"@de, "banca"@it, "banco"@es, "banco"@pt, "bank"@en, "bank"@nl, "banque"@fr, "Τράπεζα"@el, "بینک"@ur, "銀行"@ja ; + rdfs:subClassOf :Company ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Baronet + a owl:Class ; + rdfs:label "Baronet"@de, "baronet"@en, "baronet"@nl, "baronetto"@it, "چھوٹا نواب"@ur, "準男爵"@ja ; + rdfs:subClassOf :BritishRoyalty ; + prov:wasDerivedFrom . + +:BaseballLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Baseball."@en, "ένα σύνολο από ομάδες μπέιζμπολ οι οποίες συναγωνίζονται μεταξύ τους."@el, "کھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔."@ur ; + rdfs:label "Baseball-Liga"@de, "baseball league"@en, "honkbal competitie"@nl, "lega di baseball"@it, "liga de béisbol"@es, "ligue de baseball"@fr, "sraith daorchluiche"@ga, "πρωτάθλημα μπέιζμπολ"@el, "بیس بال کی انجمن"@ur, "野球リーグ"@ja, "야구 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + owl:equivalentClass wikidata:Q6631808 ; + prov:wasDerivedFrom . + +:BaseballPlayer + a owl:Class ; + rdfs:comment "Ο αθλητής (άνδρας ή γυναίκα) που συμμετέχει σε μία ομάδα μπέιζμπολ."@el ; + rdfs:label "Baseballspieler"@de, "baseball player"@en, "giocatore di baseball"@it, "honkballer"@nl, "imreoir daorchluiche"@ga, "jogador de basebol"@pt, "joueur de baseball"@fr, "παίκτης μπέιζμπολ"@el, "بیس بال کا کھلاڑی"@ur, "野球選手"@ja, "야구 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q10871364 ; + prov:wasDerivedFrom . + +:BaseballSeason + a owl:Class ; + rdfs:label "Baseballsaison"@de, "baseball season"@en, "honkbalseizoen"@nl, "saison de baseball"@fr, "séasúr daorchluiche"@ga, "σεζόν του μπέιζμπολ"@el, "بیس بال کا موسم"@ur ; + rdfs:subClassOf :SportsTeamSeason ; + prov:wasDerivedFrom . + +:BaseballTeam + a owl:Class ; + rdfs:comment "Ένας αριθμός από άνδρες ή γυναίκες που αποτελούν ένα διακριτό σύνολο με συγκεκριμένους στόχους σχετικά με το άθλημα του μπέιζμπολ."@el, "متعدد مرد یا خواتین جو بیس بال کے کھیل کے حوالے سے مخصوص اہداف کے ساتھ ایک الگ وجود بناتے ہیں۔"@ur ; + rdfs:label "Baseballmannschaft"@de, "baseball team"@en, "foireann daorchluiche"@ga, "honkbal team"@nl, "squadra di baseball"@it, "équipe de baseball"@fr, "ομάδα μπέιζμπολ"@el, "بیس بال کی جماعت"@ur, "野球チーム"@ja, "야구팀"@ko ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:BasketballLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Basketball"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو باسکٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے"@ur ; + rdfs:label "Basketball-Liga"@de, "basketbal competitie"@nl, "basketball league"@en, "lega di pallacanestro"@it, "liga de baloncesto"@es, "ligue de basketball"@fr, "sraith cispheile"@ga, "Ομοσπονδία Καλαθοσφαίρισης"@el, "باسکٹ بال کی انجمن"@ur, "バスケットボールリーグ"@ja, "농구 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:BasketballPlayer + a owl:Class ; + rdfs:comment "Ένας αθλητής (άνδρας ή γυναίκα) που ασχολείται με το άθλημα της καλαθοσφαίρισης."@el ; + rdfs:label "Basketballspieler"@de, "Basquetbolista"@es, "basketbal speler"@nl, "basketball player"@en, "giocatore di pallacanestro"@it, "imreoir cispheile"@ga, "joueur de basketball"@fr, "παίκτης καλαθοσφαίρισης"@el, "باسکٹ بال کھلاڑی"@ur, "バスケットボール選手"@ja, "농구 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q3665646 ; + prov:wasDerivedFrom . + +:BasketballTeam + a owl:Class ; + rdfs:label "Basketballmannschaft"@de, "basketball team"@en, "basketbalteam"@nl, "foireann cispheile"@ga, "squadra di pallacanestro"@it, "time de basquete"@pt, "équipe de basketball"@fr, "Κουτί πληροφοριών συλλόγου καλαθοσφαίρισης"@el, "باسکٹ بال کی جماعت"@ur, "バスケットボールチーム"@ja, "농구 팀"@ko ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Battery + a owl:Class ; + rdfs:comment "The battery (type) used as energy source in vehicles."@en, "بیٹری (قسم) گاڑیوں میں توانائی کے منبع کے طور پر استعمال ہوتی ہے۔."@ur ; + rdfs:label "Batterie"@de, "bateria"@pt, "batería"@es, "batteria"@it, "batterij"@nl, "battery"@en, "pile"@fr, "برقی طاقت پیدا کرنے کا آلہ"@ur ; + rdfs:subClassOf :Device ; + owl:equivalentClass wikidata:Q267298 ; + prov:wasDerivedFrom . + +:Bay + a owl:Class ; + rdfs:label "Bucht"@de, "baai"@nl, "baie"@fr, "bay"@en, "baía"@pt, "خلیج"@ur, "湾"@ja ; + rdfs:subClassOf :BodyOfWater ; + prov:wasDerivedFrom . + +:Beach + a owl:Class ; + rdfs:comment "Ribera del mar o de un río grande, formada de arenales en superficie casi plana."@es, "The shore of a body of water, especially when sandy or pebbly."@en, "پانی کے جسم کا ساحل ، خاص طور پر جب ریت بھرا یا کنکری"@ur ; + rdfs:label "Strand"@de, "beach"@en, "plage"@fr, "platja"@ca, "playa"@es, "praia"@pt, "strand"@da, "strand"@nl, "ساحل_سمندر"@ur, "砂浜"@ja ; + rdfs:subClassOf :NaturalPlace ; + prov:wasDerivedFrom . + +:BeachVolleyballPlayer + a owl:Class ; + rdfs:comment "Ένα άτομο (άνδρας ή γυναίκα) που ασχολείται με το άθλημα του μπίτς βόλλεϋ."@el ; + rdfs:label "Beachvolleyballspieler"@de, "beach volleyball player"@en, "beachvolleybal speler"@nl, "giocatore di beach volley"@it, "joueur de volleyball de plage"@fr, "παίκτης του beach volley"@el, "ساحل سمندروالی بال کاکھلاڑی"@ur, "ビーチバレー選手"@ja, "비치발리볼 선수"@ko ; + rdfs:subClassOf :VolleyballPlayer ; + prov:wasDerivedFrom . + +:BeautyQueen + a owl:Class ; + rdfs:comment "A beauty pageant titleholder"@en, "Τίτλος που αποδίδεται σε μία γυναίκα, τις περισσότερες φορές μετά από διαγωνισμό."@el, "خوبصورتی مقابلےکی خطاب یافتہ"@ur ; + rdfs:label "Schönheitskönigin"@de, "beauty queen"@en, "reginetta di bellezza"@it, "reine de beauté"@fr, "schoonheidskoningin"@nl, "spéirbhean"@ga, "βασίλισσα ομορφιάς"@el, "ملکہ حسن"@ur, "ミス"@ja, "뷰티퀸"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Beer + a owl:Class ; + rdfs:label "Bier"@de, "beer"@en, "beoir"@ga, "bier"@nl, "birra"@it, "bière"@fr, "cerveza"@es, "piwo"@pl, "øl"@da, "μπύρα"@el, "ہلکی شراب"@ur, "ビール"@ja, "맥주"@ko ; + rdfs:subClassOf :Beverage ; + owl:equivalentClass wikidata:Q44 ; + prov:wasDerivedFrom . + +:Beverage + a owl:Class ; + rdfs:comment "A drink, or beverage, is a liquid which is specifically prepared for human consumption."@en, "Ein Getränk ist eine zum Trinken zubereitete Flüssigkeit. Getränke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des Körpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen."@de, "Ένα πόσιμο υγρό ρόφημα, συνήθως με μηδενική ή ελάχιστη περιεκτικότητα αλκοόλης."@el, "یک مشروب مائع ہے جو خاص طور پر انسانی استعمال کے لیے تیار کیا جاتا ہے۔"@ur ; + rdfs:label "Getränk"@de, "bebida"@es, "bevanda"@it, "beverage"@en, "boisson"@fr, "deoch"@ga, "drank"@nl, "drik"@da, "αναψυκτικό"@el, "مشروب"@ur, "飲料"@ja, "음료"@ko ; + rdfs:subClassOf :Food ; + prov:wasDerivedFrom . + +:Biathlete + a owl:Class ; + rdfs:label "Biathlete"@de, "Biathlete"@en, "Biathlète"@fr, "Biatleet"@nl, "برف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑی"@ur, "バイアスロン選手"@ja ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:BiologicalDatabase + a owl:Class ; + rdfs:comment "Διάφορες βάσεις δεδομένων οι οποίες περιέχουν πληροφορίες που ταυτοποιούν τα βασικά βιολογικά χαρακτηριστικά των οργανισμών. Οι πληροφορίες αυτές συγκροτούνται σε σύνολα βιβλιοθηκών των βασικών δομών των κυττάρων των οργανισμών, όπως οι βιλβιοθήκες νουκλεϊνικών οξέων (genomics) και πρωτεϊνών (proteomics)."@el, "حیاتیات کی بنیادی حیاتیاتی خصوصیات کی نشاندہی کرنے والی معلومات پر مشتمل مختلف ڈیٹا بیس۔ یہ معلومات حیاتیات کے خلیات کے بنیادی ڈھانچے کی لائبریریوں کے سیٹوں میں مرتب کی جاتی ہیں، جیسے کہ نیوکلک ایسڈ (جینومکس) اور پروٹین (پروٹومکس) کی لائبریریاں۔"@ur ; + rdfs:label "Banco de dados biológico"@pt, "Base de données biologiques"@fr, "Biological database"@en, "Biologische Datenbank"@de, "biologische databank"@nl, "database biologico"@it, "Βάση Δεδομένων Βιολογικών Χαρακτηριστικών"@el, "حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائل"@ur, "バイオデータベース"@ja, "생물학 데이터베이스"@ko ; + rdfs:subClassOf :Database ; + prov:wasDerivedFrom . + +:Biologist + a owl:Class ; + rdfs:label "Biologe"@de, "biologist"@en, "biologiste"@fr, "bioloog"@nl, "ماہر حیاتیات"@ur, "生物学者"@ja ; + rdfs:subClassOf :Scientist ; + prov:wasDerivedFrom . + +:Biomolecule + a owl:Class ; + rdfs:comment "Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen."@nl, "equivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22."@en, "Κάθε μόριο που παράγεται σε έναν ζωντανό οργανισμό. Συνήθως μεγαλομοριακές ενώσεις που χρησιμεύουν στην δομή και στο μεταβολισμό του κυττάρου. Πρωτεΐνες, νουκλεϊνικά οξέα, υδατάνθρακες και λιπίδια."@el, "ایسے پیچدہ نامیاتی مالیکیولز جو زندگی کی بنیاد ہیں یعنی وہ زندہ اجسام کو تعمیر کرنے ، ان کو نشوونما کرنے اور برقرار رکھنے کے لیے ضروری ہوتے ہیں"@ur ; + rdfs:label "Biomolecule"@en, "Biomolecuul"@nl, "Biomolekül"@de, "biomolecola"@it, "biomolécule"@fr, "βιομόριο"@el, "حیاتیاتی مرکبات"@ur, "生体物質"@ja, "생체 분자"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q206229 ; + prov:wasDerivedFrom . + +:Bird + a owl:Class ; + rdfs:label "Vogel"@de, "bird"@en, "fugl"@da, "oiseau"@fr, "pájaro"@es, "uccello"@it, "vogel"@nl, "éan"@ga, "πτηνό"@el, "پرندہ"@ur, "鳥類"@ja, "새"@ko ; + rdfs:subClassOf :Animal ; + prov:wasDerivedFrom . + +:Blazon + a owl:Class ; + rdfs:label "Blason"@fr, "Blazon"@en, "Wappen"@de, "blazoen (wapenschild)"@nl, "οικόσημο"@el, "آب و تاب"@ur, "紋章記述"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:BloodVessel + a owl:Class ; + rdfs:label "bloedvat"@nl, "blood vessel"@en, "vaisseau sanguin"@fr, "خون کی شریان"@ur ; + rdfs:subClassOf :AnatomicalStructure ; + prov:wasDerivedFrom . + +:BoardGame + a owl:Class ; + rdfs:comment "Un gioco da tavolo è un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia."@it, "come from http://en.wikipedia.org/wiki/Category:Board_games"@en, "ایک بورڈ گیم ایک ایسا کھیل ہے جس کے لیے ایک اچھی طرح سے متعین کردہ سطح کی ضرورت ہوتی ہے ، جسے عام طور پر ایک بورڈ کہا جاتا ہے۔"@ur ; + rdfs:label "Brettspiel"@de, "board game"@en, "bordspel"@nl, "brætspil"@da, "gioco da tavolo"@it, "jeu de société"@fr, "juego de mesa"@es, "επιτραπέζιο παιχνίδι"@el, "بورڈ کھیل"@ur, "ボードゲーム"@ja, "보드 게임"@ko ; + rdfs:subClassOf :Game ; + owl:equivalentClass wikidata:Q131436 ; + prov:wasDerivedFrom . + +:BobsleighAthlete + a owl:Class ; + rdfs:label "BobsleighAthlete"@en, "Bobsportler"@de, "bobsleeër"@nl, "بوبسلیگ کھلاڑی"@ur ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:BodyOfWater + a owl:Class ; + rdfs:comment "Συγκεντρωμένες, συνήθως μεγάλες ποσότητες νερού (π.χ. ωκεανοί) που βρίσκονται στη Γη ή σε οποιονδήποτε άλλο πλανήτη. Ο όρος χρησιμοποιείται και για υδάτινους σχηματισμούς όπου υπάρχει κίνηση του νερού, όπως ποταμοί, ρεύματα ή κανάλια."@el, "مرکوز ، عام طور پر پانی کی بڑی مقدار (جیسے سمندر) جو زمین یا کسی دوسرے سیارے پر پائے جاتے ہیں۔ یہ اصطلاح آبی شکلوں کے لیے بھی استعمال ہوتی ہے جہاں پانی کی نقل و حرکت ہوتی ہے ، جیسے دریا ، نہریں یا نہریں"@ur ; + rdfs:label "Cuerpo de agua"@es, "Gewässer"@de, "body of water"@en, "distesa d'acqua"@it, "extensão d’água"@pt, "watervlakte"@nl, "étendue d'eau"@fr, "ύδατα"@el, "اجسامِ آب"@ur, "水域"@ja, "수역"@ko ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Bodybuilder + a owl:Class ; + rdfs:label "Bodybuilder"@de, "bodybuilder"@en, "bodybuilder"@nl, "culturista"@it, "culturiste"@fr, "تن ساز"@ur, "보디빌더"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q15982795 ; + prov:wasDerivedFrom . + +:Bone + a owl:Class ; + rdfs:comment "Η βασική μονάδα του συστήματος στήριξης των σπονδυλωτών οργανισμών."@el ; + rdfs:label "Knochen"@de, "bone"@en, "bot"@nl, "cnámh"@ga, "hueso"@es, "os"@fr, "osso"@it, "osso"@pt, "οστό"@el, "ہڈی"@ur, "骨"@ja, "뼈"@ko ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q265868 ; + prov:wasDerivedFrom . + +:Book + a owl:Class ; + rdfs:label "Buch"@de, "boek"@nl, "bog"@da, "book"@en, "książka"@pl, "leabhar"@ga, "libro"@it, "livre"@fr, "llibre"@ca, "βιβλίο"@el, "книга"@ru, "کتاب"@ur, "বই"@bn, "本"@ja, "책"@ko ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass , , wikidata:Q571 ; + prov:wasDerivedFrom . + +:BowlingLeague + a owl:Class ; + rdfs:comment "a group of sports teams or players that compete against each other in Bowling"@en, "Μία διοργάνωση ομάδες ανθρώπων ή μεμονομένα άτομα συναγωνίζονται στο άθλημα του μπόουλινγκ, συνήθως με ένα έπαθλο στους πρωταθλητές."@el, "کھیلوں کی ٹیموں یا کھلاڑیوں کا ایک گروہ جو بولنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Bowling-Liga"@de, "bowling competitie"@nl, "bowling league"@en, "lega di bowling"@it, "liga de bolos"@es, "ligue de bowling"@fr, "sraith babhlála"@ga, "πρωτάθλημα μπόουλινγκ"@el, "بالنگ_ٹیموں_کی_انجمن"@ur, "ボーリングリーグ"@ja, "볼링 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Boxer + a owl:Class ; + rdfs:label "Boxer"@de, "bokser"@nl, "boxeador"@pt, "boxer"@en, "boxeur"@fr, "dornálaí"@ga, "pugile"@it, "πυγμάχος"@el, "مکے باز"@ur, "ボクサー"@ja, "권투 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:BoxingLeague + a owl:Class ; + rdfs:comment "A group of sports teams or fighters that compete against each other in Boxing"@en, "Μία διοργάνωση στην οποία μεμονωμένοι πυγμάχοι είτε ομάδες πυγμάχων συναγωνίζονται μεταξύ τους με σκοπό την νίκη."@el, "کھیلوں کی ٹیموں یا جنگجوؤں کا ایک گروپ جو مکے بازی میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Box-Liga"@de, "box competitie"@nl, "boxing league"@en, "lega di pugilato"@it, "liga de boxeo"@es, "ligue de boxe"@fr, "sraith dornálaíochta"@ga, "πρωτάθλημα πυγμαχίας"@el, "مکے بازی کھیل کی انجمن"@ur, "ボクシングリーグ"@ja, "권투 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Brain + a owl:Class ; + rdfs:comment "Το βασικό όργανο του νευρικού συστήματος των ζώων, το οποίο καθορίζει ασυνείδητες και συνειδητές λειτουργίες. Ο όρος χρησιμοποιείται πλέον και για τον χαρακτηρισμό των καθοριστικότερων στοιχείων μίας μηχανής ή ενός συνόλου πραγμάτων."@el, "جانوروں کے اعصابی نظام کا بنیادی عضو، جو لاشعوری اور شعوری افعال کا تعین کرتا ہے۔ یہ اصطلاح اب کسی مشین یا چیزوں کے سیٹ کے سب سے زیادہ متعین عناصر کو بیان کرنے کے لیے بھی استعمال ہوتی ہے۔"@ur ; + rdfs:label "Gehirn"@de, "brain"@en, "cerebro"@es, "cerveau"@fr, "cervello"@it, "hersenen"@nl, "hjerne"@da, "inchinn"@ga, "εγκέφαλος"@el, "دماغ"@ur, "脳"@ja, "뇌"@ko ; + rdfs:subClassOf :AnatomicalStructure ; + prov:wasDerivedFrom . + +:Brewery + a owl:Class ; + rdfs:comment "Ζυθοποιία ονομάζεται η βιομηχανία παρασκευής μπύρας."@el ; + rdfs:label "Brauerei"@de, "birrificio"@it, "brasserie"@fr, "brewery"@en, "brouwerij"@nl, "cervecería"@es, "ζυθοποιία"@el, "کَشید گاہ"@ur, "ブルワリー"@ja ; + rdfs:subClassOf :Company ; + prov:wasDerivedFrom . + +:Bridge + a owl:Class ; + rdfs:comment "A bridge is a structure built to span physical obstacles such as a body of water, valley, or road, for the purpose of providing passage over the obstacle (http://en.wikipedia.org/wiki/Bridge)."@en, "ایک پل ایک ایسا ڈھانچہ ہے جو جسمانی رکاوٹوں جیسے پانی ، وادی یا سڑک کی راہ میں رکاوٹ کو عبور کرنے کے مقصد سے بنایا گیا ہے"@ur ; + rdfs:label "Brücke"@de, "bridge"@en, "bro"@da, "brug"@nl, "droichead"@ga, "most"@sl, "pont"@fr, "ponte"@it, "ponte"@pt, "γέφυρα"@el, "پل"@ur, "সেতু"@bn, "橋"@ja, "다리"@ko ; + rdfs:subClassOf :RouteOfTransportation ; + owl:equivalentClass wikidata:Q12280 ; + prov:wasDerivedFrom . + +:BritishRoyalty + a owl:Class ; + rdfs:label "Britanska kraljevska oseba"@sl, "Britisches Königshaus"@de, "British royalty"@en, "Britse royalty"@nl, "reali britannici"@it, "royauté Britannique"@fr, "Βρετανική μοναρχία"@el, "برطانوی بادشاہی"@ur, "イギリス王室"@ja, "영국 왕족"@ko ; + rdfs:subClassOf :Royalty ; + prov:wasDerivedFrom . + +:BroadcastNetwork + a owl:Class ; + rdfs:comment "A broadcast network is an organization, such as a corporation or other association, that provides live or recorded content, such as movies, newscasts, sports, and public affairs programs for broadcast over a group of radio or television stations. (http://en.wikipedia.org/wiki/Broadcast_network - 28/03/2011)"@en, "Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών"@el, "نشریاتی جال ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔"@ur ; + rdfs:label "Sendergruppe"@de, "broadcast network"@en, "chaîne de télévision généraliste"@fr, "emittente"@it, "líonra craolacháin"@ga, "omroeporganisatie"@nl, "sieć emisyjna"@pl, "δίκτυο ραδιοφωνικής μετάδοσης"@el, "نشریاتی جال"@ur, "ネットワーク_(放送)"@ja, "브로드캐스트 네트워크"@ko ; + rdfs:subClassOf :Broadcaster ; + owl:equivalentClass wikidata:Q141683 ; + prov:wasDerivedFrom . + +:Broadcaster + a owl:Class ; + rdfs:comment "A broadcaster is an organisation responsible for the production of radio or television programs and/or their transmission. (http://en.wikipedia.org/wiki/Broadcaster - 28/03/2011)"@en, "Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)"@de, "Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τους"@el ; + rdfs:label "Rundfunkveranstalter"@de, "broadcaster"@en, "craoltóir"@ga, "diffuseur"@fr, "emittente"@it, "omroep"@nl, "εκφωνητής"@el, "الشبكة"@ar, "放送事業者"@ja, "방송"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q15265344 ; + prov:wasDerivedFrom . + +:BrownDwarf + a owl:Class ; + rdfs:label "Brauner Zwerg"@de, "brown dwarf"@en, "bruine dwerg"@nl, "بھورا بونا"@ur ; + rdfs:subClassOf :Star ; + owl:equivalentClass wikidata:Q101600 ; + prov:wasDerivedFrom . + +:Browser + a owl:Class ; + rdfs:label "Browser"@de, "Browser"@en, "Browser (bladerprogramma)"@nl, "Navigateur"@fr, "Браузер"@ru, "ٹٹولنے والا"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Building + a owl:Class ; + rdfs:comment "Building is defined as a Civil Engineering structure such as a house, worship center, factory etc. that has a foundation, wall, roof etc. that protect human being and their properties from direct harsh effect of weather like rain, wind, sun etc. (http://en.wikipedia.org/wiki/Building)."@en, "Ein Gebäude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das Räume umschließt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude)."@de, "عمارت کو سول انجینئرنگ ڈھانچے سے تعبیر کیا جاتا ہے جیسے مکان ، عبادت گاہ ، فیکٹری وغیرہ جس کی بنیاد ، دیوار ، چھت وغیرہ ہوتی ہے جو انسان اور ان کی خصوصیات کو موسم کے براہ راست سخت اثرات جیسے بارش ، ہوا ، سورج وغیرہ سے محفوظ رکھتی ہے۔"@ur ; + rdfs:label "Gebäude"@de, "building"@en, "bygning"@da, "bâtiment"@fr, "edificio"@es, "edificio"@it, "foirgneamh"@ga, "gebouw"@nl, "stavba"@sl, "κτίριο"@el, "عمارت"@ur, "建築物"@ja, "건축물"@ko ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:disjointWith :Person ; + owl:equivalentClass wikidata:Q41176 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "floor area (m2)"@en, "vloeroppervlak (m2)"@nl, "περιοχή ορόφων (m2)"@el ; + rdfs:range . + +:BullFighter + a owl:Class ; + rdfs:label "Stierkämpfer"@de, "bullfighter"@en, "stierenvechter"@nl, "tarbhchomhraiceoir"@ga, "toreador"@pl, "torero"@es, "torero"@fr, "torero"@it, "ταυρομάχος"@el, "بیل کا مُقابلہ کرنے والا"@ur, "闘牛士"@ja, "투우사"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:BusCompany + a owl:Class ; + rdfs:label "Busunternehmen"@de, "bus company"@en, "busmaatschappij"@nl, "comhlacht bus"@ga, "compagnie d'autobus"@fr, "compañía de autobuses"@es, "εταιρία λεωφορείων"@el, "بس كا تِجارتی اِدارہ"@ur ; + rdfs:subClassOf :PublicTransitSystem ; + prov:wasDerivedFrom . + +:BusinessPerson + a owl:Class ; + rdfs:comment "Le terme entrepreneur désigne principalement une personne qui occupe un poste supérieur, tel qu'un cadre."@fr, "The term entrepreneur mainly means someone who holds a senior position, such as an executive."@en, "Με τον όρο επιχειρηματίας νοείται κυρίως κάποιος που κατέχει μία ανώτερη θέση, όπως ένα στέλεχος."@el, "اصطلاح کاروباری کا بنیادی طور پر مطلب وہ شخص ہے جو اعلی عہدے پر فائز ہو ، جیسے ایگزیکٹو۔"@ur ; + rdfs:label "Unternehmer"@de, "businessperson"@en, "duine den lucht gnó"@ga, "homme d'affaires"@fr, "imprenditore"@it, "ondernemer"@nl, "επιχειρηματίας"@el, "کاروباری شخص"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Camera + a owl:Class ; + rdfs:comment "Una fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) è uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici."@it, "Φωτογραφική μηχανή ονομάζεται η συσκευή που χρησιμοποιείται για τη λήψη φωτογραφιών.Οι ευρύτερα χρησιμοποιούμενες σήμερα φωτογραφικές μηχανές, ερασιτεχνικής ή επαγγελματικής χρήσης, διακρίνονται σε δύο βασικές κατηγορίες: τις συμπαγείς και στις μονοοπτικές ρεφλέξ. Διακρινόμενες, ανάλογα με την τεχνολογία τους,είναι οι κλασικές φωτογραφικές μηχανές με φιλμ και οι ψηφιακές φωτογραφικές μηχανές."@el, "ایک کیمرہ (اطالوی میں روایتی طور پر کیمرے کے نام سے جانا جاتا ہے) ایک ایسا آلہ ہے جو فوٹو گرافی کی شوٹنگ اور حقیقی اشیاء کی تصاویر حاصل کرنے کے لیے استعمال کیا جاتا ہے جو کاغذ پر چھپ سکتی ہیں یا الیکٹرانک میڈیا پر محفوظ کی جا سکتی ہیں۔"@ur ; + rdfs:label "Kamera"@de, "appareil photographique"@fr, "camera"@en, "camera"@nl, "ceamara"@ga, "fotocamera"@it, "φωτογραφική μηχανή"@el, "تصویر کھینچنے کا آلہ"@ur, "カメラ"@ja, "카메라"@ko ; + rdfs:subClassOf :Device ; + prov:wasDerivedFrom . + +:CanadianFootballLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in canadian football league."@en, "ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στην Καναδική ένωση ποδοσφαίρου"@el, "کھیلوں کی ٹیموں کا ایک گروپ جو کینیڈین فٹ بال لیگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔."@ur ; + rdfs:label "Kanadische Footballliga"@de, "canadian football competitie"@nl, "lega di football canadese"@it, "liga de fútbol canadiense"@en, "ligue de football canadien"@fr, "καναδική ένωση ποδοσφαίρου"@el, "کینیڈین فٹ بال لیگ"@ur, "カナディアン・フットボール・リーグ"@ja, "캐나다 풋볼 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:CanadianFootballPlayer + a owl:Class ; + rdfs:label "canadian football Player"@en, "کینیڈین فٹ بال کھلاڑی"@ur ; + rdfs:subClassOf :GridironFootballPlayer ; + prov:wasDerivedFrom . + +:CanadianFootballTeam + a owl:Class ; + rdfs:label "Canadees footballteam"@nl, "canadian football Team"@en, "kanadische Footballmannschaft"@de, "squadra di football canadese"@it, "équipe canadienne de football américain"@fr, "καναδέζικη ομάδα ποδοσφαίρου"@el, "کینیڈین فٹ بال جماعت"@ur, "캐나다 축구 팀"@ko ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Canal + a owl:Class ; + rdfs:comment "a man-made channel for water"@en, "ένα κανάλι για νερό φτιαγμένο από άνθρωπο"@el ; + rdfs:label "Kanal"@de, "canal"@en, "canal"@fr, "canal"@pt, "canale"@it, "canáil"@ga, "kanaal"@nl, "κανάλι"@el, "نہر"@ur, "運河"@ja, "운하"@ko ; + rdfs:subClassOf :Stream ; + owl:equivalentClass ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "maximum boat beam (μ)"@en, "μέγιστο_πλάτος_πλοίου (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "maximum boat length (μ)"@en, "μέγιστο_μήκος_πλοίου (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "original maximum boat beam (μ)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "original maximum boat length (μ)"@en ; + rdfs:range . + +:Canoeist + a owl:Class ; + rdfs:label "Kanute"@de, "canoeist"@en, "canoista"@it, "canúálaí"@ga, "kanovaarder"@nl, "کشتی بنانے والا"@ur, "カヌー選手"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Canton + a owl:Class ; + rdfs:comment "An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat above"@en, "Das Wort Kanton dient zur Bezeichnung verschiedener (niederen) Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern"@de, "ایک انتظامی (فرانس) یا قانون کی عدالت (نیدرلینڈز) کا ادارہ جو علاقائی وحدت کا انتظام کرتا ہے بلدیاتی سطح پر یا اس سے کچھ اوپر"@ur ; + rdfs:label "Kanton"@de, "canton"@en, "canton"@fr, "kanton"@nl, "ضِلَع"@ur, "スイス連邦の州またはフランスの群"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Cape + a owl:Class ; + rdfs:label "cap"@fr, "cape"@en, "kaap"@nl, "خشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو"@ur ; + rdfs:subClassOf :NaturalPlace ; + prov:wasDerivedFrom . + +:Capital + a owl:Class ; + rdfs:comment "A municipality enjoying primary status in a state, country, province, or other region as its seat of government."@en, "ایک بلدیہ جو کسی ریاست، ملک، صوبے، یا دوسرے علاقے میں اپنی حکومت کی نشست کے طور پر بنیادی حیثیت سے لطف اندوز ہوتی ہے۔"@ur ; + rdfs:label "Capital"@en, "Capitale"@fr, "Capitale"@it, "Hauptstadt"@de, "hoofdstad"@nl, "Κεφάλαιο"@el, "دارالحکومت"@ur, "首都"@ja ; + rdfs:subClassOf :City ; + prov:wasDerivedFrom . + +:CapitalOfRegion + a owl:Class ; + rdfs:comment "seat of a first order administration division."@en, "فرسٹ آرڈر ایڈمنسٹریشن ڈویژن کی نشست۔"@ur ; + rdfs:label "Capital of region"@en, "Capitale régionale"@fr, "Hauptstadt der Region"@de, "hoofdstad van regio"@nl, "علاقے کا دارالحکومت"@ur ; + rdfs:subClassOf :City ; + prov:wasDerivedFrom . + +:CardGame + a owl:Class ; + rdfs:comment "come from http://en.wikipedia.org/wiki/Category:Card_games"@en ; + rdfs:label "Kartenspiel"@de, "card game"@en, "jeu de cartes"@fr, "juego de cartas"@es, "kaartspel"@nl, "kortspil"@da, "تاش"@ur ; + rdfs:subClassOf :Game ; + owl:equivalentClass wikidata:Q142714 ; + prov:wasDerivedFrom . + +:Cardinal + a owl:Class ; + rdfs:label "Kardinal"@de, "cairdinéal"@ga, "cardeal"@pt, "cardinal"@en, "cardinal"@fr, "cardinale"@it, "kardinaal"@nl, "καρδινάλιος"@el, "افضل"@ur, "枢機卿"@ja, "카디널"@ko ; + rdfs:subClassOf :Cleric ; + prov:wasDerivedFrom . + +:CardinalDirection + a owl:Class ; + rdfs:comment "One of the four main directions on a compass or any other system to determine a geographical position"@en, "Une des 4 principales directions d'un compas ou de tout autre système pour déterminer une position geographique"@fr, "جغرافیائی پوزیشن کا تعین کرنے کے لیے کمپاس یا کسی دوسرے نظام پر چار اہم سمتوں میں سے ایک"@ur ; + rdfs:label "Cardinal direction"@en, "Windrichtung"@de, "direction cardinale"@fr, "windrichting"@nl, "ہوا کی سمت"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:CareerStation + a owl:Class ; + rdfs:comment "this class marks a career step in the life of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a certain club"@en, "یہ کلاس کسی شخص کی زندگی میں کیریئر کا مرحلہ ہے ، جیسے ایک فٹ بال کھلاڑی ، جس نے کسی مخصوص کلب میں حاصل کردہ ٹائم اسپین ، میچز اور اہداف کے بارے میں معلومات رکھتے ہیں۔"@ur ; + rdfs:label "Carrierestap"@nl, "Karrierestation"@de, "career station"@en, "پیشہ تعینات"@ur ; + rdfs:subClassOf :TimePeriod ; + prov:wasDerivedFrom . + +:Cartoon + a owl:Class ; + rdfs:label "cartoon"@en, "dessin animé"@fr, "کارٹون"@ur ; + rdfs:subClassOf :work ; + owl:equivalentClass wikidata:Q627603 ; + prov:wasDerivedFrom . + +:Case + a owl:Class ; + rdfs:comment "A case is the total of work done to prepare for an administrative or business decision. As a rule, a case is reflected in a set of documents."@en, "Een zaak is het geheel aan werk gedaan om tot een bestuurlijke of zakelijke beslissing te komen. Een zaak slaat doorgaans neer in een verzameling documenten."@de, "ایک کیس انتظامی یا کاروباری فیصلے کی تیاری کے لیے کیے گئے کام کی کل ہے۔ ایک اصول کے طور پر ، ایک کیس دستاویزات کے ایک سیٹ میں ظاہر ہوتا ہے۔"@ur ; + rdfs:label "Sache"@de, "case"@en, "cás"@ga, "dossier"@fr, "zaak"@nl, "υπόθεση"@el, "معاملہ"@ur, "케이스"@ko ; + rdfs:subClassOf :UnitOfWork ; + prov:wasDerivedFrom . + +:Casino + a owl:Class ; + rdfs:comment "In modern English, a casino is a facility which houses and accommodates certain types of gambling activities."@en, "To καζίνο είναι ένας χώρος στον οποίο μπορούμε να παίξουμε τυχερά παιχνίδια ποντάροντας χρήματα."@el, "Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino."@fr, """جدید انگریزی میں ، جوئے بازی کی اڈہ ایک ایسی سہولت ہے جس میں جوئے کی سرگرمیوں کی مخصوص اقسام ہوتی ہیں۔ +."""@ur ; + rdfs:label "Kasino"@de, "casino"@en, "casino"@es, "casino"@fr, "casino"@nl, "casinò"@it, "καζίνο"@el, "رقص گاہ"@ur, "カジノ"@ja, "카지노"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q133215 ; + prov:wasDerivedFrom . + +:Castle + a owl:Class ; + rdfs:comment "Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well."@en, "قلعے اکثر ہوتے ہیں، لیکن فوجی ڈھانچہ ہونے کی ضرورت نہیں ہے۔ وہ حیثیت، خوشی اور شکار کے لیے بھی خدمت کر سکتے ہیں۔"@ur ; + rdfs:label "burg"@de, "caisleán"@ga, "castello"@it, "castle"@en, "château"@fr, "kasteel"@nl, "κάστρο"@el, "قلعہ"@ur, "城"@ja, "성 (건축)"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q23413 ; + prov:wasDerivedFrom . + +:Cat + a owl:Class ; + rdfs:label "Katze"@de, "cat"@en, "chat"@fr, "kat"@da, "kat"@nl, "بلی"@ur, "猫"@ja ; + rdfs:subClassOf :Mammal ; + owl:equivalentClass wikidata:Q146 ; + prov:wasDerivedFrom . + +:Caterer + a owl:Class ; + rdfs:label "Caterer"@en, "Partyservice"@de, "party service bedrijf"@nl, "traiteur"@fr, "کھانا دینے والا"@ur, "仕出し業者"@ja ; + rdfs:subClassOf :Company ; + prov:wasDerivedFrom . + +:Cave + a owl:Class ; + rdfs:label "Höhle"@de, "cave"@en, "caverna"@pt, "grot"@nl, "grotta"@it, "grotte"@fr, "pluais"@ga, "σπηλιά"@el, "غار"@ur, "洞窟"@ja, "동굴"@ko ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q35509 ; + prov:wasDerivedFrom . + +:CelestialBody + a owl:Class ; + rdfs:label "Himmelskörper"@de, "celestial body"@en, "corpo celeste"@it, "corps celeste"@fr, "cuerpo celeste"@es, "hemellichaam"@nl, "rinn neimhe"@ga, "ουράνιο σώμα"@el, "جرم فلکی"@ur, "天体"@ja, "천체"@ko ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + +:Cemetery + a owl:Class ; + rdfs:comment "A burial place"@en, "Un cimetière est un groupement de sépultures monumentales."@fr, "Νεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών."@el, "ایک تدفین کی جگہ"@ur ; + rdfs:label "Friedhof"@de, "begraafplaats"@nl, "cementerio"@es, "cemetery"@en, "cimetière"@fr, "reilig"@ga, "νεκροταφείο"@el, "قبرستان"@ur, "墓地"@ja ; + rdfs:subClassOf :Place ; + owl:equivalentClass wikidata:Q39614 ; + prov:wasDerivedFrom . + +:Chancellor + a owl:Class ; + rdfs:label "Kanzler"@de, "cancelliere"@it, "canciller"@es, "chanceler"@pt, "chancelier"@fr, "chancellor"@en, "kanselier"@nl, "seansailéir"@ga, "καγκελάριος"@el, "مشیر"@ur, "宰相"@ja, "재상"@ko ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q373085 ; + prov:wasDerivedFrom . + +:ChartsPlacements + a owl:Class ; + rdfs:label "Chartplatzierungen"@de, "Place in the Music Charts"@en, "plaats op de muziek hitlijst"@nl, "موسیقی چارٹس میں جگہ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Cheese + a owl:Class ; + rdfs:comment "A milk product prepared for human consumption"@en, "Producto lácteo preparado para el consumo humano"@es, "ایک دودھ کی مصنوعات جو انسانی استعمال کے لیے تیار کی جاتی ہے۔"@ur ; + rdfs:label "Käse"@de, "cheese"@en, "cáis"@ga, "formaggio"@it, "fromage"@fr, "kaas"@nl, "ost"@da, "queso"@es, "τυρί"@el, "پنیر"@ur, "チーズ"@ja, "치즈"@ko ; + rdfs:subClassOf :Food ; + prov:wasDerivedFrom . + +:Chef + a owl:Class ; + rdfs:comment "a person who cooks professionally for other people"@en, "una persona que cocina profesionalmente para otras"@es, "وہ شخص جو پیشہ ورانہ طور پر دوسرے لوگوں کے لیے کھانا پکاتا ہے۔"@ur ; + rdfs:label "Koch"@de, "chef"@en, "chef"@fr, "chef"@it, "cocinero"@es, "cócaire"@ga, "kok"@da, "kok"@nl, "szef kuchni"@pl, "αρχιμάγειρος"@el, "باورچی"@ur, "料理人"@ja, "요리사"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:ChemicalCompound + a owl:Class ; + rdfs:label "chemical compound"@en, "chemisch component"@nl, "chemische Verbindung"@de, "comhdhúileach"@ga, "composto chimico"@it, "composto químico"@pt, "produit chimique"@fr, "χημική ένωση"@el, "کیمیائی مرکب"@ur, "化合物"@ja, "화합물"@ko ; + rdfs:subClassOf :ChemicalSubstance ; + owl:equivalentClass wikidata:Q11173 ; + prov:wasDerivedFrom . + +:ChemicalElement + a owl:Class ; + rdfs:label "chemical element"@en, "chemisch element"@nl, "chemisches Element"@de, "elemento chimico"@it, "élément chimique"@fr, "χημικό στοιχείο"@el, "کیمیائی عنصر"@ur, "元素"@ja, "원소"@ko ; + rdfs:subClassOf :ChemicalSubstance ; + prov:wasDerivedFrom . + +:ChemicalSubstance + a owl:Class ; + rdfs:label "ceimiceán"@ga, "chemical substance"@en, "chemische Substanz"@de, "chemische substantie"@nl, "sostanza chimica"@it, "substance chimique"@fr, "substância química"@pt, "χημική ουσία"@el, "کیمیائی مادہ"@ur, "化学物質"@ja, "화학 물질"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass dul:ChemicalObject ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Siedepunkt (K)"@de, "boiling point (K)"@en, "kookpunt (K)"@nl, "point d'ébullition (K)"@fr, "σημείο βρασμού (K)"@el, "沸点 (K)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Dichte (μ3)"@de, "densidade (μ3)"@pt, "density (μ3)"@en, "densità (μ3)"@it, "densité (μ3)"@fr, "πυκνότητα (μ3)"@el, "密度 (μ3)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Schmelzpunkt (K)"@de, "melting point (K)"@en, "point de fusion (K)"@fr, "融点 (K)"@ja ; + rdfs:range . + +:ChessPlayer + a owl:Class ; + rdfs:label "Schachspieler"@de, "chess player"@en, "giocatore di scacchi"@it, "imreoir fichille"@ga, "joueur d'échecs"@fr, "schaker"@nl, "szachista"@pl, "παίκτης σκάκι"@el, "شطرنج کا کھلاڑی"@ur, "チェスプレーヤー"@ja, "체스 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Chief + a owl:Class ; + rdfs:label "Chef"@fr, "Chief"@en, "چیف(سردار)"@ur ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q1259323 ; + prov:wasDerivedFrom . + +:ChristianBishop + a owl:Class ; + rdfs:label "Christelijk bisschop"@nl, "Christian Bishop"@en, "Easpag Críostaí"@ga, "biskup chrześcijański"@pl, "christlicher Bischof"@de, "vescovo cristiano"@it, "évêque chrétien"@fr, "Πληροφορίες Επισκόπου"@el, "عیسائی پادري"@ur, "기독교 주교"@ko ; + rdfs:subClassOf :Cleric ; + prov:wasDerivedFrom . + +:ChristianDoctrine + a owl:Class ; + rdfs:comment "Tenets of the Christian faith, e.g. Trinity, Nicene Creed"@en, "عیسائی عقیدے کے اصول، جیسے تثلیث، نیکین عقیدہ"@ur ; + rdfs:label "Christelijke leer"@nl, "Christian Doctrine"@en, "Christliche Lehre"@de, "doctrine chrétienne"@fr, "dottrina cristiana"@it, "Χριστιανικό Δόγμα"@el, "عیسائی نظریہ"@ur, "기독교 교리"@ko ; + rdfs:subClassOf :TheologicalConcept ; + prov:wasDerivedFrom . + +:ChristianPatriarch + a owl:Class ; + rdfs:label "Christian Patriarch"@en, "christelijk patriarch"@nl, "christlicher Patriarch"@de, "patriarca cristiano"@it, "patriarcha chrześcijański"@pl, "patriarche chrétien"@fr, "χριστιανός πατριάρχης"@el, "عیسائی پادری"@ur, "기독교 총대주교"@ko ; + rdfs:subClassOf :Cleric ; + prov:wasDerivedFrom . + +:Church + a owl:Class ; + rdfs:comment "This is used for church buildings, not any other meaning of church."@en, "یہ چرچ کی عمارتوں کے لیے استعمال ہوتا ہے ، چرچ کا کوئی دوسرا مطلب نہیں۔"@ur ; + rdfs:label "Kirche"@de, "chiesa"@it, "church"@en, "eaglais"@ga, "iglesia"@es, "igreja"@pt, "kerk"@nl, "kirke"@da, "kościół"@pl, "église"@fr, "εκκλησία"@el, "گرجا"@ur, "教会"@ja, "교회"@ko ; + rdfs:subClassOf :ReligiousBuilding ; + owl:equivalentClass wikidata:Q16970 ; + prov:wasDerivedFrom . + +:Cinema + a owl:Class ; + rdfs:comment "A building for viewing films."@en, "فلم دیکھنے کے لیے ایک عمارت۔"@ur ; + rdfs:label "Theater"@de, "bioscoop"@nl, "cinema (movie theater)"@en, "cinéma"@fr, "κινηματογράφος"@el, "سنیما"@ur ; + rdfs:subClassOf :Venue ; + owl:equivalentClass wikidata:Q41253 ; + prov:wasDerivedFrom . + +:Cipher + a owl:Class ; + rdfs:label "Cipher"@en, "Geheimschrift"@nl, "Шифр"@ru, "خفیہ_پیغام"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:City + a owl:Class ; + rdfs:comment "Actualmente considérase como unha entidade urbana con alta densidade de poboación na que predominan fundamentalmente a industria e os servizos."@gl, "a relatively large and permanent settlement, particularly a large urban settlement"@en, "un asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbano"@es, "ایک نسبتا بڑی اور مستقل آبادی ، خاص طور پر ایک بڑی شہری بستی"@ur ; + rdfs:label "Stadt"@de, "by"@da, "cathair"@ga, "cidade"@gl, "cidade"@pt, "città"@it, "city"@en, "ciudad"@es, "miasto"@pl, "stad"@nl, "ville"@fr, "πόλη"@el, "شہر"@ur, "शहर"@hi, "市"@ja, "도시"@ko ; + rdfs:subClassOf :Settlement ; + owl:equivalentClass , wikidata:Q515 ; + prov:wasDerivedFrom . + +:CityDistrict + a owl:Class ; + rdfs:comment "District, borough, area or neighbourhood in a city or town"@en, "کسی شہر یا قصبے میں ضلع کا علاقہ یا محلہ۔"@ur ; + rdfs:label "Stadtviertel"@de, "city district"@en, "quartier"@fr, "stadswijk"@nl, "شہر کا ضلع"@ur ; + rdfs:subClassOf :Settlement ; + prov:wasDerivedFrom . + +:ClassicalMusicArtist + a owl:Class ; + rdfs:comment "Ο Λούντβιχ βαν Μπετόβεν,Γερμανός συνθέτης και πιανίστας,ήταν ένας σπουδαίος καλλιτέχνης της κλασικής μουσικής."@el, "لڈوگ وان بیتھوون ، جرمن موسیقار اور پیانو بجانے والے ، کلاسیکی موسیقی کے ایک عظیم فنکار تھے۔"@ur ; + rdfs:label "Künstler der klassischen Musik"@de, "artiest klassieke muziek"@nl, "artiste de musique classique"@fr, "ceoltóir clasaiceach"@ga, "classical music artist"@en, "καλλιτέχνης κλασικής μουσικής"@el, "اعلی درجےکاموسیقی فنکار"@ur ; + rdfs:subClassOf :MusicalArtist ; + prov:wasDerivedFrom . + +:ClassicalMusicComposition + a owl:Class ; + rdfs:comment "Η σύνθεση κλασικής μουσικής μπορεί να πραγματοποιηθεί και με τη βοήθεια ειδικών προγραμμάτων στον υπολογιστή που χρησιμοποιούν συγκεκριμένο αλγόριθμο."@el, "کلاسیکی موسیقی کی تشکیل کمپیوٹر پر خصوصی پروگراموں کی مدد سے کی جاسکتی ہے جو ایک مخصوص الگورتھم استعمال کرتے ہیں۔"@ur ; + rdfs:label "Komposition klassischer Musik"@de, "classical music composition"@en, "compositie klassieke muziek"@nl, "composition de musique classique"@fr, "composizione di musica classica"@it, "σύνθεση κλασικής μουσικής"@el, "روایتی موسیقی کی ترکیب"@ur ; + rdfs:subClassOf :MusicalWork ; + prov:wasDerivedFrom . + +:Cleric + a owl:Class ; + rdfs:label "cleric"@en, "ecclesiastico"@it, "ecclésiastique"@fr, "geestelijke"@nl, "geistlicher"@de, "Κλήρος"@el, "پادری"@ur, "聖職者"@ja, "성직자"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:ClericalAdministrativeRegion + a owl:Class ; + rdfs:comment "An administrative body governing some territorial unity, in this case a clerical administrative body"@en, "ایک علمی انتظامی معاملات میں ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے"@ur ; + rdfs:label "clerical administrative region"@en, "kerkelijk bestuurlijk gebied"@nl, "klerikale Verwaltungsregion"@de, "région administrative dans une église"@fr, "علمی انتظامی علاقہ"@ur, "사무 관리 지역"@ko ; + rdfs:subClassOf :AdministrativeRegion ; + prov:wasDerivedFrom . + +:ClericalOrder + a owl:Class ; + rdfs:comment "Een kloosterorde is een orde van religieuzen, mannen of vrouwen, die zich verenigd hebben omtrent een gemeenschappelijke geloofsopvatting en kloosterregel waaraan zij gebonden zijn, en op een permanente wijze samenleven binnen één en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde."@nl, "خانقاہی حکم مذہبی، مردوں یا عورتوں کا ایک حکم ہے، جو ایک مشترکہ عقیدہ اور خانقاہی اصول کے بارے میں متحد ہو گئے ہیں جس کے وہ پابند ہیں، اور ایک ہی مقامی کمیونٹی، ایک خانقاہ یا مندر کے اندر مستقل طور پر ایک ساتھ رہتے ہیں۔ ہم خیال مذہبیوں کی کئی خانقاہیں مل کر ایک خانقاہی ترتیب بناتی ہیں۔"@ur ; + rdfs:label "clerical order"@en, "klerikaler Orden"@de, "kloosterorde"@nl, "ord rialta"@ga, "orden clerical"@es, "ordine clericale"@it, "ordre religieux"@fr, "κληρική τάξη"@el, "علما کا حکم"@ur ; + rdfs:subClassOf :ReligiousOrganisation ; + prov:wasDerivedFrom . + +:ClubMoss + a owl:Class ; + rdfs:label "Bärlapp"@de, "club moss"@en, "lycopodiopsida"@fr, "wolfsklauw"@nl, "Μούσκλια"@el, "بغیر پُہولوں کا سدا بہار پودا"@ur, "ヒカゲノカズラ綱"@ja, "석송강"@ko ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:Coach + a owl:Class ; + rdfs:label "Trainer"@de, "allenatore"@it, "coach"@en, "coach"@nl, "entraîneur"@fr, "traenálaí"@ga, "προπονητής"@el, "تربیت کرنے والا"@ur, "コーチ"@ja ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:CoalPit + a owl:Class ; + rdfs:comment "A coal pit is a place where charcoal is or was extracted"@en, "Een mijn is een plaats waar steenkool wordt of werd gewonnen"@nl, "Un puits de charbon est un endroit d'où le charbon était - ou est encore - extrait"@fr, "کوئلے کا گڑھا ایک ایسی جگہ ہے جہاں چارکول ہے یا نکالا جاتا ہے۔"@ur ; + rdfs:label "Kohlengrube"@de, "coal pit"@en, "puits de charbon"@fr, "steenkolenmijn"@nl, "کوئلہ"@ur ; + rdfs:subClassOf :Mine ; + prov:wasDerivedFrom . + +:CollectionOfValuables + a owl:Class ; + rdfs:comment "Collection of valuables is a collection considered to be a work in itself)"@en, "Een verzameling van kostbaarheden, die als een werk beschouwd wordt )."@nl, "قیمتی اشیاء کا مجموعہ ایک ایسا مجموعہ ہے جو اپنے آپ میں ایک کام سمجھا جاتا ہے۔"@ur ; + rdfs:label "Kunst- und Wertsachenversammlung"@de, "collection d'objets"@fr, "collection of valuables"@en, "verzameling van kostbaarheden"@nl, "قیمتی اشیاء کا مجموعہ"@ur, "귀중품의 컬렉션"@ko ; + rdfs:subClassOf :Work ; + prov:wasDerivedFrom . + +:College + a owl:Class ; + rdfs:label "College"@de, "college"@en, "college"@nl, "coláiste"@ga, "faculdade"@pt, "universidad"@es, "université"@fr, "κολέγιο"@el, "مدرسہ"@ur, "単科大学"@ja, "단과대학"@ko ; + rdfs:subClassOf :EducationalInstitution, ; + prov:wasDerivedFrom . + +:CollegeCoach + a owl:Class ; + rdfs:label "College-Trainer"@de, "college coach"@en, "entraîneur universitaire"@fr, "school coach"@nl, "traenálaí coláiste"@ga, "προπονητής κολεγίου"@el, "کھیل سکھانے والا"@ur, "대학 코치"@ko ; + rdfs:subClassOf :Coach ; + prov:wasDerivedFrom . + +:Colour + a owl:Class ; + rdfs:comment "Color or colour is the visual perceptual property corresponding in humans to the categories called red, yellow, blue and others. Color derives from the spectrum of light (distribution of light energy versus wavelength) interacting in the eye with the spectral sensitivities of the light receptors."@en, "رنگ یا رنگ بصری ادراکی املاک ہے جو انسانوں میں سرخ ، پیلے ، نیلے اور دیگر نامی زمروں کے مطابق ہے۔ رنگ روشنی کے سپیکٹرم سے حاصل ہوتا ہے (روشنی کی تقسیم بمقابلہ طول موج) آنکھوں میں روشنی کے رسیپٹروں کی سپیکٹرمل حساسیت کے ساتھ تعامل کرتا ہے۔"@ur ; + rdfs:label "Farbe"@de, "colour"@en, "cor"@pt, "couleur"@fr, "dath"@ga, "farve"@da, "kleur"@nl, "χρώμα"@el, "رنگ"@ur, "色"@ja, "색"@ko ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:CombinationDrug + a owl:Class ; + rdfs:comment "Medikamente die mehrere Wirkstoffe enthalten"@en, "ادویات جو کیمیکل کا مجموعہ ہیں۔‎"@ur ; + rdfs:label "Kombinationspräparat"@de, "combinatiepreparaat"@nl, "combination drug"@en, "préparation combinée"@fr, "مرکب دوا"@ur ; + rdfs:subClassOf :Drug ; + prov:wasDerivedFrom . + +:Comedian + a owl:Class ; + rdfs:label "Komiker"@de, "comedian"@en, "comediante"@pt, "comédien"@fr, "fuirseoir"@ga, "komiek"@nl, "κωμικός"@el, "مسخرا"@ur, "お笑い芸人"@ja, "희극 배우"@ko ; + rdfs:subClassOf :Artist ; + prov:wasDerivedFrom . + +:ComedyGroup + a owl:Class ; + rdfs:label "Comedy Group"@en, "Komikergruppe"@de, "cabaretgroep"@nl, "مزاحیہ گروہ"@ur, "お笑いグループ"@ja, "코미디 그룹"@ko ; + rdfs:subClassOf :Group ; + prov:wasDerivedFrom . + +:Comic + a owl:Class ; + rdfs:label "Comic"@de, "bande dessinée"@fr, "comic"@en, "fumetto"@it, "greannán"@ga, "historieta"@es, "stripverhaal"@nl, "κινούμενα σχέδια"@el, "مزاحیہ"@ur, "漫画"@ja, "만화"@ko ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q245068 ; + prov:wasDerivedFrom . + +:ComicStrip + a owl:Class ; + rdfs:label "Bande dessinée"@fr, "Comicstrip"@de, "comic strip"@en, "stripverhaal (Amerikaanse wijze)"@nl, "مزاحیہ خاکے"@ur ; + rdfs:subClassOf :Comic ; + prov:wasDerivedFrom . + +:ComicsCharacter + a owl:Class ; + rdfs:label "Comic Charakter"@de, "comics character"@en, "personagem de quadrinhos"@pt, "personnage de bandes dessinées"@fr, "stripfiguur (Amerikaans)"@nl, "χαρακτήρας κινούμενων σχεδίων"@el, "مُضحِکہ خیزکردار"@ur, "コミックスのキャラクター"@ja, "만화애니 등장인물"@ko ; + rdfs:subClassOf :FictionalCharacter ; + prov:wasDerivedFrom . + +:ComicsCreator + a owl:Class ; + rdfs:label "Comicautor"@de, "comics creator"@en, "créateur de bandes dessinées"@fr, "striptekenaar"@nl, "δημιουργός κόμιξ"@el, "مزاحیہ تخلیق کار"@ur, "漫画家"@ja, "만화가"@ko ; + rdfs:subClassOf :Artist ; + prov:wasDerivedFrom . + +:Community + a owl:Class ; + rdfs:comment "A community is a group of living organisms, people, plants or animals that live in a common environment."@en, "Une communauté est un groupe d'organismes vivants, de personnes, de plantes ou d'animaux qui vivent dans un environnement commun."@fr, "Κοινότητα είναι μία ομάδα ζώντων οργανισμών, ανθρώπων, φυτών ή ζώων που ζουν σε ένα κοινό περιβάλλον."@el, "کمیونٹی جانداروں، لوگوں، پودوں یا جانوروں کا ایک گروپ ہے جو ایک مشترکہ ماحول میں رہتے ہیں۔"@ur ; + rdfs:label "Communauté"@fr, "Community"@en, "برادری"@ur ; + rdfs:subClassOf :PopulatedPlace ; + prov:wasDerivedFrom . + +:Company + a owl:Class ; + rdfs:label "Unternehmen"@de, "bedrijf"@nl, "comhlacht"@ga, "company"@en, "empresa"@es, "empresa"@pt, "entreprise"@fr, "firma"@da, "εταιρία"@el, "تِجارتی اِدارہ"@ur, "会社"@ja, "회사"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q4830453 ; + prov:wasDerivedFrom . + +:Competition + a owl:Class ; + rdfs:label "Wettbewerb"@de, "competitie"@nl, "competition"@en, "compétition"@fr, "comórtas"@ga, "διαγωνισμός"@el, "مقابلہ"@ur ; + rdfs:subClassOf :Event ; + prov:wasDerivedFrom . + +:ConcentrationCamp + a owl:Class ; + rdfs:label "Concentration camp"@en, "Konzentrationslager"@de, "camp de concentration"@fr, "concentratiekamp"@nl, "حراستی کیمپ"@ur ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + +:Congressman + a owl:Class ; + rdfs:label "Abgeordneter"@de, "congressist"@nl, "congressman"@en, "membre du Congrès"@fr, "βουλευτής"@el, "مجلس کے شرکاء"@ur, "하원 의원"@ko ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:Conifer + a owl:Class ; + rdfs:comment "Las coníferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas leñosas."@es, "Le conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopiù sono alberi e solo poche sono arbusti."@it, "عروقی (نالی دار)پودے ہیں ، بیج ایک شنک میں موجود ہوتے ہیں۔ وہ لکڑی کے پودے ہیں۔"@ur ; + rdfs:label "Konifere"@de, "conifeer"@nl, "conifer"@en, "conifere"@fr, "conífera"@es, "cónaiféar"@ga, "κωνοφόρο"@el, "صنوبر کی قِسم کا پودا"@ur, "球果植物門"@ja, "침엽수"@ko ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:Constellation + a owl:Class ; + rdfs:comment "Una costellazione è ognuna delle 88 parti in cui la sfera celeste è convenzionalmente suddivisa allo scopo di mappare le stelle."@it, "ایک برج 88 حصوں میں سے ہر ایک ہے جس میں ستاروں کی نقشہ سازی کے مقصد کے لئے آسمانی کرہ روایتی طور پر تقسیم کیا جاتا ہے۔"@ur ; + rdfs:label "Sternbild"@de, "constelación"@es, "constellation"@en, "constellation"@fr, "costellazione"@it, "réaltbhuíon"@ga, "samenstel"@nl, "takımyıldızı"@tr, "αστερισμός"@el, "نکشتر"@ur, "星座"@ja, "별자리"@ko ; + rdfs:subClassOf :CelestialBody ; + owl:equivalentClass wikidata:Q8928 ; + prov:wasDerivedFrom . + +:Contest + a owl:Class ; + rdfs:label "Wettbewerb"@de, "comórtas"@ga, "concours"@fr, "contest"@en, "wedstrijd"@nl, "διαγωνισμός"@el, "تکرار کرنا"@ur, "コンテスト"@ja ; + rdfs:subClassOf :Competition ; + owl:equivalentClass wikidata:Q476300 ; + prov:wasDerivedFrom . + +:Continent + a owl:Class ; + rdfs:comment "Un continente es una gran área de tierra emergida de la costra terrestre."@es, "Un continente è una grande area di terra emersa della crosta terrestre, è anzi la più vasta delle ripartizioni con le quali si suddividono le terre emerse."@it, "براعظم زمین کا ایک بڑا علاقہ ہے جو زمین کی پرت سے نکلا ہے ، درحقیقت یہ ان سب سے بڑی تقسیم ہے جس کے ساتھ ابھرتی ہوئی زمینیں تقسیم کی گئی ہیں۔"@ur ; + rdfs:label "Kontinent"@de, "continent"@en, "continent"@fr, "continent"@nl, "continente"@es, "continente"@it, "ilchríoch"@ga, "ήπειρος"@el, "براعظم"@ur, "大陸"@ja, "대륙"@ko ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:ControlledDesignationOfOriginWine + a owl:Class ; + rdfs:comment "A quality assurance label for wines"@en, "Μια ετικέτα διασφάλισης της ποιότητας των οίνων"@el, "شراب کے معیار کی یقین دہانی کا لیبل"@ur ; + rdfs:label "Controlled designation of origin wine"@en, "certificaat van herkomst voor kwaliteitswijnen"@nl, "kontrollierte Ursprungsbezeichnung für Qualitätsweine"@de, "vin A.O.C."@fr, "vino D.O.C."@it, "Ελεγμένη ονομασία προέλευσης κρασιού"@el, "معیاری شراب کے لئے اصل کا سرٹیفکیٹ"@ur ; + rdfs:subClassOf :Wine ; + prov:wasDerivedFrom . + +:Convention + a owl:Class ; + rdfs:label "Konvention"@de, "congres"@nl, "congrès"@fr, "convention"@en, "συνέδριο"@el, "مجلس"@ur, "컨벤션"@ko ; + rdfs:subClassOf :SocietalEvent ; + prov:wasDerivedFrom . + +:ConveyorSystem + a owl:Class ; + rdfs:label "Fördersystem"@de, "conveyor system"@en, "système convoyeur"@fr, "transportsysteem"@nl, "نقل و حمل کے نظام"@ur ; + rdfs:subClassOf :On-SiteTransportation ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :ConveyorSystem ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:Country + a owl:Class ; + rdfs:label "Staat"@de, "country"@en, "država"@sl, "land"@da, "land"@nl, "pays"@fr, "país"@es, "tír"@ga, "χώρα"@el, "Государство"@ru, "ملک"@ur, "ሀገር"@am, "国"@ja, "나라"@ko ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass , wikidata:Q6256 ; + prov:wasDerivedFrom . + +:CountrySeat + a owl:Class ; + rdfs:comment "A country seat is a rural patch of land owned by a land owner."@en, "Een buitenplaats is een landgoed."@nl, "یک کنٹری سیٹ زمین کا ایک دیہی پیچ ہے جو زمین کے مالک کی ملکیت ہے"@ur ; + rdfs:label "Landgut"@de, "buitenplaats"@nl, "country estate"@en, "ملک کی نشست"@ur ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + +:Covid19 + a owl:Class ; + rdfs:comment "2019冠狀病毒病疫情是一次由严重急性呼吸系统综合征冠状病毒导致的2019冠状病毒病所引發的全球大流行疫情"@zh, "Ongoing pandemic of coronavirus disease 2019"@en, "Pandémie actuelle de maladie coronavirus 2019"@fr, "کورونا وائرس کی بیماری 2019 کی جاری وبائی بیماری۔"@ur ; + rdfs:label "2019冠状病毒病疫情"@zh, "COVID-19 pandemic"@en, "Pandémie COVID-19"@fr, "کورونا وائرس2019"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q84263196 ; + prov:wasDerivedFrom . + +:Crater + a owl:Class ; + rdfs:label "Krater"@de, "crater"@en, "cratera"@pt, "cratere"@it, "cratère"@fr, "cráitéar"@ga, "krater"@nl, "κρατήρας"@el, "دہانه"@ur, "クレーター"@ja ; + rdfs:subClassOf :NaturalPlace ; + prov:wasDerivedFrom . + +:CricketGround + a owl:Class ; + rdfs:label "Cricketfeld"@de, "campo da cricket"@it, "cricket ground"@en, "cricketveld"@nl, "کرکٹ کا میدان"@ur ; + rdfs:subClassOf :SportFacility ; + prov:wasDerivedFrom . + +:CricketLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Cricket"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو کرکٹ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Cricket-Liga"@de, "cricket competitie"@nl, "cricket league"@en, "liga de cricket"@es, "ligue de cricket"@fr, "sraith cruicéid"@ga, "κύπελλο κρικετ"@el, "کرکٹ انجمن"@ur, "クリケットリーグ"@ja, "크리켓 대회"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:CricketTeam + a owl:Class ; + rdfs:label "Cricketmannschaft"@de, "cricket team"@en, "cricketteam"@nl, "foireann cuircéid"@ga, "squadra di cricket"@it, "équipe de cricket"@fr, "ομάδα κρίκετ"@el, "کرکٹ جماعت"@ur, "クリケットチーム"@ja ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Cricketer + a owl:Class ; + rdfs:label "Cricketspieler"@de, "cricketer"@en, "cricketspeler"@nl, "imreoir cruicéid"@ga, "joueur de cricket"@fr, "παίκτης του κρίκετ"@el, "کرکٹ کا کھلاڑی"@ur, "クリケット選手"@ja, "크리켓 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Criminal + a owl:Class ; + rdfs:label "Verbrecher"@de, "coirpeach"@ga, "criminal"@en, "criminal"@es, "crimineel"@nl, "criminel"@fr, "criminoso"@pt, "delinquente"@it, "εγκληματίας"@el, "مجرمانہ"@ur, "犯罪"@ja, "범죄인"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q2159907 ; + prov:wasDerivedFrom . + +:CrossCountrySkier + a owl:Class ; + rdfs:label "Skilangläufer"@de, "cross-country skier"@en, "langlaufer"@nl, "کراس کنٹری اسکیئر"@ur ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:Crustacean + a owl:Class ; + rdfs:label "Krebstier"@de, "crustacean"@en, "crustacés"@fr, "crústach"@ga, "schaaldier"@nl, "αστρακόδερμο"@el, "خول دارجانور"@ur, "甲殻類"@ja, "갑각류"@ko ; + rdfs:subClassOf :Animal ; + prov:wasDerivedFrom . + +:CultivatedVariety + a owl:Class ; + rdfs:comment "A cultivar is a plant or grouping of plants selected for desirable characteristics that can be maintained by propagation. A plant whose origin or selection is primarily due to intentional human activity."@en, "Een plantensoort die voor menselijk gebruik wordt geteeld en uit wilde planten is veredeld"@nl, "کاشتکار ایک پودا یا پودوں کا گروہ ہے جو مطلوبہ خصوصیات کے لیے منتخب کیا جاتا ہے جسے پھیلاؤ کے ذریعے برقرار رکھا جا سکتا ہے۔ ایک پودا جس کی اصل یا انتخاب بنیادی طور پر جان بوجھ کر انسانی سرگرمی کی وجہ سے ہے۔"@ur ; + rdfs:label "Sorte ( kultivierte Sorte )"@de, "cultivar (cultivated variety)"@en, "cultuurgewas"@nl, "saothróg"@ga, "καλλιεργούμενη ποικιλία"@el, "کاشت شدہ قسم"@ur, "재배 품종"@ko ; + rdfs:subClassOf :Plant ; + owl:equivalentClass wikidata:Q4886 ; + prov:wasDerivedFrom . + +:Curler + a owl:Class ; + rdfs:label "Curlingspieler"@de, "curler"@en, "curlingspeler"@nl, "μπικουτί"@el, "کرلنگ کا کھیل کھیلنے والا"@ur, "カーリング選手"@ja, "컬링 선수"@ko ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:CurlingLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Curling"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو کرلنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Curling-Liga"@de, "curling competitie"@nl, "curling league"@en, "liga de curling"@es, "ligue de curling"@fr, "sraith curlála"@ga, "πρωτάθλημα curling"@el, "پتھر کنڈلی کھيل کی انجمن"@ur, "컬링 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Currency + a owl:Class ; + rdfs:label "Währung"@de, "airgeadra"@ga, "currency"@en, "devise"@fr, "muntsoort"@nl, "νόμισμα"@el, "Валюта"@be, "Валюта"@ru, "سکہ رائج الوقت"@ur, "통화"@ko ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Cycad + a owl:Class ; + rdfs:label "Palmfarn"@de, "cicadácea"@pt, "cycad"@en, "cycadeeën"@nl, "cycadophytes"@fr, "cíocáid"@ga, "φοινικόθαμνος"@el, "کرف نخلی"@ur, "ソテツ門"@ja, "소철류"@kr ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:CyclingCompetition + a owl:Class ; + rdfs:label "Prueba ciclista"@es, "Radrennen"@de, "course cycliste"@fr, "cycling competition"@en, "cykelløb"@da, "gara ciclistica"@it, "wielercompetitie"@nl, "διαγωνισμός ποδηλασίας"@el, "سائیکلنگ مقابلہ"@ur, "사이클 대회"@ko ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:CyclingLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Cycling"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو سائیکلنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Rad-Liga"@de, "cycling league"@en, "liga de ciclismo"@es, "ligue de cyclisme"@fr, "wielerronde"@nl, "Ομοσπονδία Ποδηλασίας"@el, "سائیکل سوار کی انجمن"@ur, "사이클 리그"@ko ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:CyclingRace + a owl:Class ; + rdfs:label "Radrennen"@de, "corsa ciclistica"@it, "course cycliste"@fr, "cycling race"@en, "cykelløb"@da, "wielerwedstrijd"@nl, "αγώνας ποδηλασίας"@el, "سائیکلنگ دوڑ"@ur ; + rdfs:subClassOf :Race ; + owl:equivalentClass wikidata:Q15091377 ; + prov:wasDerivedFrom . + +:CyclingTeam + a owl:Class ; + rdfs:label "Radsportteam"@de, "cycling team"@en, "cykelhold"@da, "foireann rothaíochta"@ga, "squadra di ciclismo"@it, "wielerploeg"@nl, "équipe cycliste"@fr, "ομάδα ποδηλασίας"@el, "سائیکلنگ جماعت"@ur, "사이클 팀"@ko ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Cyclist + a owl:Class ; + rdfs:label "Radfahrer"@de, "ciclista"@es, "ciclista"@pt, "cyclist"@en, "cycliste"@fr, "cyklist"@da, "rothaí"@ga, "wielrenner"@nl, "ποδηλάτης"@el, "سائیکل سوار"@ur, "自転車選手"@ja, "사이클 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:DBpedian + a owl:Class ; + rdfs:label "DBpedian"@en, "DBpédien"@fr, "ڈی بی پیڈین"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:DTMRacer + a owl:Class ; + rdfs:label "DTM Rennfahrer"@de, "DTM racer"@en, "DTM-coureur"@nl, "جرمن ٹورنگ کار ماسٹرزریسر"@ur ; + rdfs:subClassOf :RacingDriver ; + prov:wasDerivedFrom . + +:Dam + a owl:Class ; + rdfs:comment "A dam is part of a landscape infrastructure, like waterworks (canals) or roads, much more than a building, though, of course, it has been built, too."@en, "Ένα φράγμα είναι μια κατασκευή που εμποδίζει, ανακατευθύνει ή επιβραδύνει την φυσική ροή υδάτων."@el, "ڈیم ایک ایسا ڈھانچہ ہے جو پانی کے قدرتی بہاؤ کو روکتا، ری ڈائریکٹ یا سست کر دیتا ہے۔"@ur ; + rdfs:label "Damm"@de, "barrage"@fr, "dam"@en, "dam"@nl, "damba"@ga, "diga"@it, "φράγμα"@el, "ڈیم"@ur, "ダム"@ja ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass wikidata:Q12323 ; + prov:wasDerivedFrom . + +:Dancer + a owl:Class ; + rdfs:label "Tänzer"@de, "ballerino"@it, "damhsóir"@ga, "dancer"@en, "danceur"@fr, "danser"@nl, "tancerz"@pl, "χορευτής"@el, "رقص کرنے والا"@ur, "ダンサー"@ja ; + rdfs:subClassOf :Artist ; + prov:wasDerivedFrom . + +:DartsPlayer + a owl:Class ; + rdfs:label "Dartspieler"@de, "darter"@nl, "darts player"@en, "joueur de fléchettes"@fr, "παίκτης βελάκιων"@el, "نيزہ باز"@ur, "다트 선수"@ko ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Database + a owl:Class ; + rdfs:label "Banco de dados"@pt, "Base de données"@fr, "Database"@en, "Datenbank"@de, "bunachar sonraí"@ga, "database"@nl, "βάση δεδομένων"@el, "ریکارڈرز_پر_مبنی_ایک_فائل"@ur, "データベース"@ja, "데이터베이스"@ko ; + rdfs:subClassOf :Work, dul:InformationObject ; + prov:wasDerivedFrom . + +:Deanery + a owl:Class ; + rdfs:comment "The intermediate level of a clerical administrative body between parish and diocese"@en, "گرجا گھر کا حلقہ اور بشپ کے دائرہ اختیار کا حلقہ کے مابین علمی انتظامی ادارے کی انٹرمیڈیٹ سطح۔"@ur ; + rdfs:label "Dekanat"@de, "deanery"@en, "proosdij"@nl, "κοσμητεία"@el, "عمید کا عہدہ"@ur ; + rdfs:subClassOf :ClericalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Decoration + a owl:Class ; + rdfs:comment "An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously."@en, "Per onorificenza si intende un segno di onore che viene concesso da un'autorità in riconoscimento di particolari atti benemeriti."@it, "Une distinction honorifique en reconnaissance d'un service civil ou militaire ."@fr, "ایک شے ، جیسے تمغہ یا آرڈر ، جو وصول کنندہ کو عزت سے نوازنے کے لیے دیا جاتا ہے۔"@ur ; + rdfs:label "Auszeichnung"@de, "condecoración"@es, "decoration"@en, "décoration"@fr, "onderscheiding"@nl, "onorificenza"@it, "διακόσμηση"@el, "سجاوٹ"@ur, "勲章"@ja, "장식"@ko ; + rdfs:subClassOf :Award ; + prov:wasDerivedFrom . + +:Deity + a owl:Class ; + rdfs:label "Gottheit"@de, "bóstwo"@pl, "deity"@en, "dia"@ga, "godheid"@nl, "θεότητα"@el, "دیوتا"@ur, "神"@ja, "이집트 신"@ko ; + rdfs:subClassOf :Agent ; + owl:equivalentClass wikidata:Q178885 ; + prov:wasDerivedFrom . + +:Demographics + a owl:Class ; + rdfs:comment "Population of a place. Uses these properties: populationTotal, year (when measured, populationYear), rank (sortOrder of this place amongst its siblings at the same level), name (areal measured by the population, eg: \"locality\", \"municipality\" or \"comitat\")"@en, "کسی جگہ کی آبادی۔ ان خصوصیات کا استعمال کرتا ہے: آبادی کی کل، سال (جب ماپا جاتا ہے، آبادی کا سال)، درجہ (اس جگہ کا ترتیب اس کے بہن بھائیوں کے درمیان ایک ہی سطح پر)، نام (علاقہ آبادی کے لحاظ سے ماپا جاتا ہے، جیسے: \"مقام\"، \"میونسپلٹی\" یا \"کمیٹیٹ\""@ur ; + rdfs:label "Demografie"@de, "demografie"@nl, "demographics"@en, "déimeagrafaic"@ga, "démographie"@fr, "δημογραφία"@el, "آبادیاتی"@ur, "人口動態"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Department + a owl:Class ; + rdfs:label "Distrikt"@de, "Distrito"@es, "departement"@nl, "department"@en, "département"@fr, "roinn"@ga, "τμήμα"@el, "شعبہ"@ur, "부서"@ko ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Depth + a owl:Class ; + rdfs:label "Tiefe"@de, "depth"@en, "diepte"@nl, "dybde"@da, "profondeur"@fr, "βάθος"@el, "گہرائی"@ur, "深度"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Deputy + a owl:Class ; + rdfs:label "Stellvertreter"@de, "deputy"@en, "diputado"@es, "député"@fr, "gedeputeerde"@nl, "αναπληρωτής"@el, "نائب"@ur, "国会議員"@ja ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:Desert + a owl:Class ; + rdfs:comment "Barren land where there is less rain."@en, "زمین کا بنجر علاقہ جہاں کم بارش ہوتی ہے۔"@ur ; + rdfs:label "Desert"@en, "Desierto"@es, "Désert"@fr, "Wüste"@de, "deserto"@pt, "gaineamhlach"@ga, "woestijn"@nl, "Έρημος"@el, "صحرا"@ur, "砂漠"@ja ; + rdfs:subClassOf :NaturalPlace ; + prov:wasDerivedFrom . + +:Device + a owl:Class ; + rdfs:label "Gerät"@de, "apparaat"@nl, "appareil"@fr, "device"@en, "dispositivo"@pt, "gléas"@ga, "συσκευη"@el, "آلہ"@ur, "デバイス"@ja, "장치"@ko ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:DigitalCamera + a owl:Class ; + rdfs:comment "Un appareil photographique numérique (ou APN) est un appareil photographique qui recueille la lumière sur un capteur photographique électronique, plutôt que sur une pellicule photographique, et qui convertit l'information reçue par ce support pour la coder numériquement."@fr, "Η ψηφιακή φωτογραφική μηχανή είναι συσκευή η οποία καταγράφει εικόνες με ηλεκτρονικό τρόπο, σε αντίθεση με την συμβατική φωτογραφική μηχανή, η οποία καταγράφει εικόνες με χημικές και μηχανικές διαδικασίες."@el, "ڈیجیٹل کیمرہ ایک ایسا آلہ ہے جو روایتی کیمرہ کے برعکس الیکٹرانک طور پر تصاویر کھینچتا ہے، جو کیمیائی اور مکینیکل عمل سے تصاویر کھینچتا ہے۔"@ur ; + rdfs:label "Digitalkamera"@de, "appareil photo numérique"@fr, "ceamara digiteach"@ga, "digital camera"@en, "digitale camera"@nl, "ψηφιακή φωτογραφική μηχανή"@el, "ڈیجیٹل کیمرہ"@ur, "디지털 카메라"@ko ; + rdfs:subClassOf :Camera ; + prov:wasDerivedFrom . + +:Dike + a owl:Class ; + rdfs:comment "A dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels"@en, "بند ایک لمبی قدرتی طور پر واقع رکاوٹ یا مصنوعی طور پر تعمیر شدہ ذخیرہ یا دیوار ہے ، جو پانی کی سطح کو کنٹرول کرتی ہے۔"@ur ; + rdfs:label "diga"@it, "dijk"@nl, "dike"@en, "levée"@fr, "بند"@ur, "堤防"@ja ; + rdfs:subClassOf :Infrastructure ; + prov:wasDerivedFrom . + +:Diocese + a owl:Class ; + rdfs:comment "District or see under the supervision of a bishop."@en, "ڈسٹرکٹ یا ایک بشپ کی نگرانی میں دیکھیں۔"@ur ; + rdfs:label "Diözese"@de, "bisdom"@nl, "deoise"@ga, "diocese"@en, "diocèse"@fr, "επισκοπή"@el, "بشپ کے تحت حلقہ"@ur, "教区"@ja, "교구"@ko ; + rdfs:subClassOf :ClericalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Diploma + a owl:Class ; + rdfs:label "Diplom"@de, "dioplóma"@ga, "diploma"@en, "diploma"@nl, "diplôme"@fr, "δίπλωμα"@el, "سند"@ur, "卒業証明書"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Disease + a owl:Class ; + rdfs:label "Krankheit"@de, "disease"@en, "galar"@ga, "maladie"@fr, "malattia"@it, "sygdom"@da, "ziekte"@nl, "ασθένεια"@el, "بیماری"@ur, "病気"@ja, "질병"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q12136 ; + prov:wasDerivedFrom . + +:DisneyCharacter + a owl:Class ; + rdfs:comment "امریکی فلم اور اینی میٹیڈ فلمیں بنانے والی کمپنی کے بنائے ہوے کارٹون کردار"@ur ; + rdfs:label "Disneyfigur"@de, "Disneyfiguur"@nl, "carachtar Disney"@ga, "disney character"@en, "personnage de Disney"@fr, "χαρακτήρες της ντίσνευ"@el, "ڈزنی کے کردار"@ur ; + rdfs:subClassOf :FictionalCharacter ; + prov:wasDerivedFrom . + +:District + a owl:Class ; + rdfs:comment "bagian wilayah administratif dibawah kabupaten"@in, "ضلع کے تحت انتظامی علاقے کا حصہ"@ur ; + rdfs:label "Bezirk"@de, "arrondissement"@fr, "ceantar"@ga, "district"@en, "district"@nl, "kecamatan"@in, "περιοχή"@el, "ضلع"@ur, "地区"@ja, "구"@ko ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:DistrictWaterBoard + a owl:Class ; + rdfs:comment "Conservancy, governmental agency dedicated to surface water management"@en, "تحفظ ،سطحی پانی کے انتظام کے لیے وقف سرکاری ایجنسی"@ur ; + rdfs:label "Bezirkwasserwirtschaftsamt"@de, "district water board"@en, "waterschap"@nl, "پانی کا ضلعی اقتدار"@ur ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Document + a owl:Class ; + rdfs:comment "Any document"@en, "کوئی بھی دستاویز۔"@ur ; + rdfs:label "Dokument"@de, "cáipéis"@ga, "document"@en, "document"@fr, "document"@nl, "documento"@it, "dokument"@da, "έγγραφο"@el, "دستاویز"@ur, "ドキュメント"@ja ; + rdfs:subClassOf :Work ; + owl:equivalentClass foaf:Document ; + prov:wasDerivedFrom . + +:DocumentType + a owl:Class ; + rdfs:comment "documenttype"@nl, "type of document (official, informal etc.)"@en, "دستاویز کی قسم (سرکاری، غیر رسمی وغیرہ"@ur ; + rdfs:label "Document Type"@en, "Dokumentenart"@de, "cineál cáipéise"@ga, "documenttype"@nl, "type de document"@fr, "τύπος εγγράφου"@el, "دستاویز کی قسم"@ur ; + rdfs:subClassOf :Type ; + prov:wasDerivedFrom . + +:Dog + a owl:Class ; + rdfs:label "Hund"@de, "chien"@fr, "dog"@en, "hond"@nl, "hund"@da, "madra"@ga, "σκύλος"@el, "کتا"@ur, "イヌ"@ja, "개"@ko ; + rdfs:subClassOf :Mammal ; + owl:disjointWith :Cat ; + owl:equivalentClass wikidata:Q25324 ; + prov:wasDerivedFrom . + +:Drama + a owl:Class ; + rdfs:label "Drama"@de, "drama"@en, "drama"@nl, "drame"@fr, "dráma"@ga, "δράμα"@el, "ناٹک"@ur, "ドラマ"@ja, "드라마"@ko ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q25372 ; + prov:wasDerivedFrom . + +:Drug + a owl:Class ; + rdfs:label "Droge"@de, "drug"@en, "druga"@ga, "geneesmiddel"@nl, "médicament"@fr, "φάρμακο"@el, "نشے کی دوا"@ur, "薬物"@ja, "약"@ko ; + rdfs:subClassOf :ChemicalSubstance ; + owl:equivalentClass wikidata:Q8386 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Drug ; + rdfs:label "Siedepunkt (K)"@de, "boiling point (K)"@en, "kookpunt (K)"@nl, "point d'ébullition (K)"@fr, "σημείο βρασμού (K)"@el, "沸点 (K)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Drug ; + rdfs:label "Schmelzpunkt (K)"@de, "melting point (K)"@en, "point de fusion (K)"@fr, "融点 (K)"@ja ; + rdfs:range . + +:Earthquake + a owl:Class ; + rdfs:comment "the result of a sudden release of energy in the Earth's crust that creates seismic waves"@en, "یہ زمین کی پرت میں اچانک توانائی کے اخراج کا نتیجہ ہے جو زلزلے کی لہروں کو پیدا کرتا ہے"@ur ; + rdfs:label "Erdbeben"@de, "aardbeving"@nl, "earthquake"@en, "tremblement de terre"@fr, "زلزلہ"@ur, "地震"@ja ; + rdfs:subClassOf :NaturalEvent ; + prov:wasDerivedFrom . + +:Economist + a owl:Class ; + rdfs:comment "An economist is a professional in the social science discipline of economics."@en, "Le terme d’économiste désigne une personne experte en science économique."@fr, "Un economista es un profesional de las ciencias sociales experto en economía teórica o aplicada."@es, "ایک ماہر معاشیات معاشیات کے سماجی سائنس کے شعبے میں پیشہ ور ہوتا ہے"@ur ; + rdfs:label "eacnamaí"@ga, "economist"@en, "economista"@es, "econoom"@nl, "Ökonom"@de, "économiste"@fr, "οικονομολόγος"@el, "ماہر معاشیات"@ur, "経済学者"@ja, "경제학자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q188094 ; + prov:wasDerivedFrom . + +:EducationalInstitution + a owl:Class ; + rdfs:label "Bildungseinrichtung"@de, "educational institution"@en, "institución educativa"@es, "onderwijsinstelling"@nl, "uddannelsesinstitution"@da, "établissement d'enseignement"@fr, "εκπαιδευτικό ίδρυμα"@el, "تعلیمی ادارے"@ur, "교육 기관"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass , wikidata:Q2385804 ; + prov:wasDerivedFrom . + +:Egyptologist + a owl:Class ; + rdfs:label "egyptologist"@en, "egyptoloog"@nl, "Ägyptologe"@de, "Éigipteolaí"@ga, "égyptologue"@fr, "αιγυπτιολόγος"@el, "ماہر مصریات"@ur, "エジプト学者"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q1350189 ; + prov:wasDerivedFrom . + +:Election + a owl:Class ; + rdfs:label "Election"@en, "Wahl"@de, "elección"@es, "elezione"@it, "toghchán"@ga, "verkiezing"@nl, "élection"@fr, "εκλογή"@el, "انتخابات"@ur, "選挙"@ja, "선거"@ko ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass wikidata:Q40231 ; + prov:wasDerivedFrom . + +:ElectionDiagram + a owl:Class ; + rdfs:label "Election Diagram"@en, "Wahldiagram"@de, "verkiezingen diagram"@nl, "εκλογικό διάγραμμα"@el, "انتخابات کا خاکہ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:ElectricalSubstation + a owl:Class ; + rdfs:comment "Substations transform voltage from high to low, or the reverse."@en, "poste de transformation abaisseur ou élévateur de tension."@fr, "برقی ذیلی مرکز وولٹیج کو زیادہ سے کم، یا برعکس میں تبدیل کرتے ہیں۔"@ur ; + rdfs:label "electrical substation"@en, "poste électrique"@fr, "transformatorhuisje"@nl, "برقی ذیلی مرکز"@ur ; + rdfs:subClassOf :Infrastucture ; + prov:wasDerivedFrom . + +:Embryology + a owl:Class ; + rdfs:label "Embryologie"@de, "embryologie"@fr, "embryologie"@nl, "embryology"@en, "sutheolaíocht"@ga, "εμβρυολογία"@el, "جنینیات کا علم"@ur, "発生学"@ja, "발생학"@ko ; + rdfs:subClassOf :AnatomicalStructure ; + prov:wasDerivedFrom . + +:Employer + a owl:Class ; + rdfs:comment "Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet."@de, "a person, business, firm, etc, that employs workers."@en, "άτομο, επιχείρηση, οργανισμός, κλπ που προσλαμβάνει εργαζόμενους."@el, "آجر وہ ہے جو ملازمت کے معاہدے کی وجہ سے ملازم سے کام کا مطالبہ کر سکتا ہے اور جس پر اجرت واجب الادا ہے۔"@ur ; + rdfs:label "Arbeitgeber"@de, "Empleador"@es, "Employer"@en, "Employeur"@fr, "arbejdsgiver"@da, "fostóir"@ga, "werkgever"@nl, "Εργοδότης"@el, "آجر"@ur, "雇用者"@ja ; + rdfs:subClassOf :Agent ; + owl:equivalentClass wikidata:Q3053337 ; + prov:wasDerivedFrom . + +:EmployersOrganisation + a owl:Class ; + rdfs:comment "An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations"@en, "ملازمین کی تنظیم تاجروں کی ایک تنظیم ہے جو مزدور تعلقات کے میدان میں اپنے اعمال کو مربوط کرنے کے لیے مل کر کام کرتی ہے۔"@ur ; + rdfs:label "Arbeitgeberverbände"@de, "Employers' Organisation"@en, "syndicat de patrons"@fr, "werkgeversorganisatie"@nl, "آجروں کی تنظیم"@ur ; + rdfs:subClassOf :Organisation ; + prov:wasDerivedFrom . + +:Engine + a owl:Class ; + rdfs:label "Motor"@de, "engine"@en, "moteur"@fr, "motor"@nl, "انجن"@ur, "機関 (機械)"@ja ; + rdfs:subClassOf :Device ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:comment "variation de la vitesse"@fr ; + rdfs:domain :Engine ; + rdfs:label "Beschleunigung (s)"@de, "acceleració (s)"@ca, "acceleratie (s)"@nl, "acceleration (s)"@en, "accélération (s)"@fr, "luasghéarú (s)"@ga, "przyspieszenie (s)"@pl, "επιτάχυνση (s)"@el, "убрзање (s)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "CO2 emission (g/km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "cylinder bore (mm)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Durchmesser (mm)"@de, "diameter (mm)"@en, "diameter (mm)"@nl, "diamètre (mm)"@fr, "διάμετρος (mm)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "cilindrada (cc)"@es, "displacement (cc)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "piston stroke (mm)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Ausgangsleistung (kW)"@de, "power output (kW)"@en, "puissance de sortie (kW)"@fr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Höchstgeschwindigkeit (kmh)"@de, "top speed (kmh)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "torque output (Nm)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Engine ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:Engineer + a owl:Class ; + rdfs:label "Ingenieur"@de, "engineer"@en, "ingeniere"@it, "ingeniero"@es, "ingenieur"@nl, "ingénieur"@fr, "innealtóir"@ga, "μηχανικός"@el, "ماہر فنیات"@ur, "技術者"@ja, "공학자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q81096 ; + prov:wasDerivedFrom . + +:Entomologist + a owl:Class ; + rdfs:label "Entomologe"@de, "entomologist"@en, "entomologo"@it, "entomoloog"@nl, "feithideolaí"@ga, "εντομολόγος"@el, "ماہر حشریات"@ur, "昆虫学者"@ja ; + rdfs:subClassOf :Scientist ; + owl:equivalentClass wikidata:Q3055126 ; + prov:wasDerivedFrom . + +:Enzyme + a owl:Class ; + rdfs:label "Enzym"@de, "einsím"@ga, "enzima"@it, "enzym"@nl, "enzyme"@en, "enzyme"@fr, "ένζυμο"@el, "خامرہ"@ur, "酵素"@ja, "효소"@ko ; + rdfs:subClassOf :Biomolecule ; + owl:equivalentClass wikidata:Q8047 ; + prov:wasDerivedFrom . + +:Escalator + a owl:Class ; + rdfs:comment "بجلی سے چلنے والی سیڑھی"@ur ; + rdfs:label "Rolltreppe"@de, "escalator"@en, "escalator"@fr, "roltrap"@nl, "رواں زینہ"@ur, "エスカレーター"@ja ; + rdfs:subClassOf :On-SiteTransportation ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Escalator ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:EthnicGroup + a owl:Class ; + rdfs:label "ethnic group"@en, "ethnie"@de, "etnia"@it, "etnische groep"@nl, "groupe ethnique"@fr, "grúpa eitneach"@ga, "εθνική ομάδα"@el, "نسلی گروہ"@ur, "민족"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q41710 ; + prov:wasDerivedFrom . + +:Eukaryote + a owl:Class ; + rdfs:label "Eukaryoten"@de, "eocarót"@ga, "eucarionte"@es, "eucaryote"@fr, "eukaryoot"@nl, "eukaryote"@en, "ευκαρυωτικό"@el, "خلوی مادہ"@ur, "真核生物"@ja, "진핵생물"@ko ; + rdfs:subClassOf :Species ; + owl:equivalentClass wikidata:Q19088 ; + prov:wasDerivedFrom . + +:EurovisionSongContestEntry + a owl:Class ; + rdfs:label "Eurovisie Songfestival act"@nl, "Eurovision song contest entry"@en, "Vorentscheid Eurovision song contest"@de, "concours Eurovision de la chanson"@fr, "iontráil i gComórtas Amhránaíochta na hEoraifíse"@ga, "Διαγωνισμός τραγουδιού της Eurovision"@el, "یوروویژن گانا مقابلہ اندراج"@ur ; + rdfs:subClassOf :Song ; + prov:wasDerivedFrom . + +:Event + a owl:Class ; + rdfs:label "Ereignis"@de, "event"@en, "evento"@pt, "gebeurtenis"@nl, "évènement"@fr, "ócáid"@ga, "γεγονός"@el, "تقریب"@ur, "イベント"@ja, "사건"@ko ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + owl:equivalentClass , dul:Event, wikidata:Q1656682 ; + prov:wasDerivedFrom . + +:Factory + a owl:Class ; + rdfs:comment "A factory (previously manufactory) or manufacturing plant is an industrial site, usually consisting of buildings and machinery, or more commonly a complex having several buildings, where workers manufacture goods or operate machines processing one product into another."@en, "Une usine est un bâtiment ou un ensemble de bâtiments destinés à la production industrielle."@fr, "Το εργοστάσιο είναι ένα κτίριο μέσα στο οποίο, με τη βοήθεια των μηχανημάτων και τη σημαντικότατη συνεισφορά εργασίας από τους εργάτες, παράγονται σήμερα όλα σχεδόν τα βιομηχανικά είδη, είτε αυτά χρειάζονται πάλι για την παραγωγή (όπως μηχανές κλπ.) είτε είναι καταναλωτικά αγαθά."@el, "ایک کارخانه (پہلے کارخانه) ایک صنعتی رقبہ ہے ، عام طور پر عمارتوں اور مشینری پر مشتمل ہوتی ہے ، یا زیادہ عام طور پر ایک مرکب جس میں کئی عمارتیں ہوتی ہیں ، جہاں مزدور سامان تیار کرتے ہیں یا مشینیں چلاتے ہیں جو ایک مصنوعات کو دوسری پر پروسیسنگ کرتے ہیں۔"@ur ; + rdfs:label "Fabrik"@de, "fabbrica"@it, "fabriek"@nl, "factory"@en, "monarcha"@ga, "usine"@fr, "εργοστάσιο"@el, "کارخانه"@ur, "工場"@ja, "공장"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q83405 ; + prov:wasDerivedFrom . + +:Family + a owl:Class ; + rdfs:comment "A group of people related by common descent, a lineage."@en, "Μια ομάδα ανθρώπων που συνδέονται με κοινή καταγωγή, μια γενεαλογία."@el, "عام نسل سے متعلق لوگوں کا ایک گروہ ، ایک نسب"@ur ; + rdfs:label "Familie"@de, "familia"@es, "familie"@da, "familie"@nl, "famille"@fr, "family"@en, "teaghlach"@ga, "οικογένεια"@el, "خاندان"@ur, "家族"@ja ; + rdfs:subClassOf :Agent ; + owl:equivalentClass wikidata:Q8436 ; + prov:wasDerivedFrom . + +:Farmer + a owl:Class ; + rdfs:label "Bauer"@de, "boer"@nl, "farmer"@en, "feirmeoir"@ga, "fermier"@fr, "αγρότης"@el, "کسان"@ur, "農家"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q131512 ; + prov:wasDerivedFrom . + +:Fashion + a owl:Class ; + rdfs:comment "Een stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers."@nl, "type or code of dressing, according to the standards of the time or individual design."@en, "وقت یا انفرادی خاکے کے معیار کے مطابق لباس کی قسم"@ur ; + rdfs:label "Mode"@de, "faisean"@ga, "fashion"@en, "mode"@fr, "mode"@nl, "μόδα"@el, "روشِ لباس"@ur, "ファッション"@ja ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:FashionDesigner + a owl:Class ; + rdfs:label "Modedesigner"@de, "dearthóir faisin"@ga, "fashion designer"@en, "modeontwerper"@nl, "styliste de mode"@fr, "σχεδιαστής μόδας"@el, "پوشاک ساز"@ur ; + rdfs:subClassOf :Artist ; + owl:equivalentClass wikidata:Q3501317 ; + prov:wasDerivedFrom . + +:Fencer + a owl:Class ; + rdfs:label "Fechter"@de, "fencer"@en, "pionsóir"@ga, "schermer"@nl, "ξιφομάχος"@el, "تیغ زن"@ur, "フェンシング選手"@ja ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q737498Q13381863 ; + prov:wasDerivedFrom . + +:Fern + a owl:Class ; + rdfs:label "farn"@de, "felce"@it, "fern"@en, "fougères"@fr, "helecho"@es, "raithneach"@ga, "samambaia"@pt, "varen"@nl, "φτέρη"@el, "بے پھول کا بڑے پتوں والا پودا"@ur, "シダ植物門"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:FictionalCharacter + a owl:Class ; + rdfs:label "carachtar ficseanúil"@ga, "fictional character"@en, "fiktiver Charakter"@de, "personage (fictie)"@nl, "personnage de fiction"@fr, "πλασματικός χαρακτήρας"@el, "خیالی کردار"@ur, "キャラクター"@ja ; + rdfs:subClassOf :Agent ; + owl:equivalentClass wikidata:Q95074 ; + prov:wasDerivedFrom . + +:FieldHockeyLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Field Hockey"@en, "ένα γκρουπ αθλητικών ομάδων που διαγωνίζονται η μια εναντίον της άλλης στο χόκεϊ επί χόρτου"@el, "کھیلوں کی ٹیموں کا ایک گروپ جو ہاکی کے میدان میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Feldhockey-Liga"@de, "field hockey league"@en, "hockeybond"@nl, "ligue d'hockey sur gazon"@fr, "πρωτάθλημα χόκεϊ επί χόρτου"@el, "کھیل ہاکی ٹیموں کا گروہ"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:FigureSkater + a owl:Class ; + rdfs:label "Eiskunstläufer"@de, "figure skater"@en, "kunstschaatser"@nl, "patinador artístico"@es, "patinador artístico"@pt, "patineur artistique"@fr, "scátálaí fíorach"@ga, "αθλητής του καλλιτεχνικού πατινάζ"@el, "فگرسکیٹر"@ur, "フィギュアスケート選手"@ja ; + rdfs:subClassOf :WinterSportPlayer ; + owl:equivalentClass wikidata:Q13219587 ; + prov:wasDerivedFrom . + +:File + a owl:Class ; + rdfs:comment "A document with a filename"@en, "Ένα σύνολο από στοιχεία ή πόρους που μπορούν να χρησιμοποιηθούν για επεξεργασία και παραγωγή πληροφορίας"@el, "فائل نام کے ساتھ ایک دستاویز"@ur ; + rdfs:label "Datei"@de, "bestand"@nl, "comhad"@ga, "fichier"@fr, "file"@en, "Αρχείο"@el, "فائل"@ur, "ファイル"@ja ; + rdfs:subClassOf :Document ; + prov:wasDerivedFrom . + +:FileSystem + a owl:Class ; + rdfs:comment "File classification system"@en, "Système de classification des fichiers"@fr, "فائلوں میں درجہ بندی کا نظام"@ur ; + rdfs:label "Bestandssysteem"@nl, "Dateisystem"@de, "File system"@en, "Système de fichiers"@fr, "Файловая система"@ru, "فائل سسٹم"@ur ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:Film + a owl:Class ; + rdfs:label "Film"@de, "film"@da, "film"@fr, "film"@nl, "film"@pl, "movie"@en, "película"@es, "scannán"@ga, "ταινία"@el, "فلم"@ur, "فيلم"@ar, "ፊልም"@am, "映画"@ja, "영화"@ko ; + rdfs:subClassOf :Work ; + owl:equivalentClass , wikidata:Q11424 ; + prov:wasDerivedFrom . + +:FilmFestival + a owl:Class ; + rdfs:label "Filmfestival"@de, "festival du film"@fr, "festiwal filmowy"@pl, "film festival"@en, "filmfestival"@da, "filmfestival"@nl, "féile scannán"@ga, "φεστιβάλ κινηματογράφου"@el, "فلمی میلہ"@ur, "映画祭"@ja, "영화제"@ko ; + rdfs:subClassOf :SocietalEvent, ; + owl:equivalentClass wikidata:Q220505 ; + prov:wasDerivedFrom . + +:Fish + a owl:Class ; + rdfs:label "Fisch"@de, "fish"@en, "fisk"@da, "iasc"@ga, "peixe"@pt, "pescado"@es, "poisson"@fr, "ryba"@pl, "vis"@nl, "ψάρι"@el, "مچھلی"@ur, "魚類"@ja ; + rdfs:subClassOf :Animal ; + owl:equivalentClass wikidata:Q152 ; + prov:wasDerivedFrom . + +:Flag + a owl:Class ; + rdfs:label "Flagge"@de, "bayrak"@tr, "bratach"@ga, "drapeau"@fr, "flag"@da, "flag"@en, "vlag"@nl, "σημαία"@el, "جھنڈا"@ur, "旗"@ja, "국기"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q14660 ; + prov:wasDerivedFrom . + +:FloweringPlant + a owl:Class ; + rdfs:label "angiosperma"@es, "angiospermes"@fr, "bedecktsamige Pflanze"@de, "bedektzadigen"@nl, "flowering plant"@en, "magnoliofita"@it, "ανθοφόρο φυτό"@el, "پھولوں کا پودا"@ur, "被子植物"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:Food + a owl:Class ; + rdfs:comment "Food is any eatable or drinkable substance that is normally consumed by humans."@en, "Lebensmittel umfasst als Oberbegriff sowohl Getränke als auch die Nahrungsmittel und Genussmittel."@de, "Φαγητό είναι οποιαδήποτε φαγώσιμη ή πόσιμη ουσία που καταναλώνεται κανονικά από ανθρώπους."@el, "کھانا کوئی بھی کھانے یا پینے کے قابل مادہ ہے جو عام طور پر انسان استعمال کرتے ہیں۔"@ur ; + rdfs:label "Food"@en, "Lebensmittel"@de, "alimento"@es, "bia"@ga, "comida"@pt, "jedzenie"@pl, "mad"@da, "nourriture"@fr, "voedsel"@nl, "φαγητό"@el, "کھانا"@ur, "食品"@ja, "음식"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q2095 ; + prov:wasDerivedFrom . + +:FootballLeagueSeason + a owl:Class ; + rdfs:label "Football League seizoen"@nl, "Football Liga Saison"@de, "football league season"@en, "séasúr srath péile"@ga, "αγωνιστική περίοδος πρωταθλήματος ποδοσφαίρου"@el, "فٹ بال لیگ کے موسم"@ur, "축구 대회 시즌"@ko ; + rdfs:subClassOf :SportsTeamSeason ; + prov:wasDerivedFrom . + +:FootballMatch + a owl:Class ; + rdfs:comment "a competition between two football teams"@en, "دو فٹ بال ٹیموں کے درمیان مقابلہ"@ur ; + rdfs:label "Fußballspiel"@de, "cluiche peile"@ga, "football match"@en, "mecz piłki nożnej"@pl, "partido de fútbol"@es, "voetbal wedstrijd"@nl, "αγώνας ποδοσφαίρου"@el, "فٹ بال مقابلہ"@ur ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:Forest + a owl:Class ; + rdfs:comment "A natural place more or less densely grown with trees"@en, "ایک قدرتی جگہ جو کم و بیش درختوں کے ساتھ اگتی ہے۔"@ur ; + rdfs:label "Wald"@de, "bos"@nl, "forest"@en, "forêt"@fr, "skov"@da, "جنگل"@ur ; + rdfs:subClassOf :NaturalPlace ; + prov:wasDerivedFrom . + +:FormerMunicipality + a owl:Class ; + rdfs:comment "A municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality"@en, "ایک بلدیہ جس کا وجود ختم ہو گیا ہے، اور زیادہ تر وقت کسی دوسری بلدیہ میں (تھوک یا جزوی طور پر) شامل ہو گیا ہے"@ur ; + rdfs:label "commune historique"@fr, "ehemalige Gemeinde"@de, "one-time municipality"@en, "voormalige gemeente"@nl, "سابق بلدیہ"@ur ; + rdfs:subClassOf :Municipality ; + owl:equivalentClass wikidata:Q19730508 ; + prov:wasDerivedFrom . + +:FormulaOneRacer + a owl:Class ; + rdfs:label "Formel-1 Rennfahrer"@de, "Formula One racer"@en, "formule 1-coureur"@nl, "pilote de formule 1"@fr, "πιλότος της φόρμουλας ένα"@el, "فارمولا ون ریسر"@ur ; + rdfs:subClassOf :RacingDriver ; + prov:wasDerivedFrom . + +:FormulaOneRacing + a owl:Class ; + rdfs:label "Formel-1 Rennen"@de, "Formule 1-r‎ace"@nl, "formula one racing"@en, "φόρμουλα ένας αγώνας"@el, "فارمولا ون ریسنگ"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:FormulaOneTeam + a owl:Class ; + rdfs:label "Formel-1 Team"@de, "formula 1 team"@en, "formule 1-team"@nl, "scuderia formula 1"@it, "ομάδα φόρμουλα 1"@el, "فارمولا ون ٹیم"@ur ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Fort + a owl:Class ; + rdfs:comment "Endroit fortifié, la plupart du temps pour protéger des routes de trafic."@fr, "Fortified place, most of the time to protect traffic routes"@en, "مضبوط جگہ ، زیادہ تر وقت آمد و رفت کے راستوں کی حفاظت کے لیے"@ur ; + rdfs:label "fort"@en, "fort"@fr, "fort"@nl, "قلعہ"@ur ; + rdfs:subClassOf :MilitaryStructure ; + prov:wasDerivedFrom . + +:Fungus + a owl:Class ; + rdfs:label "Pilz"@de, "fungas"@ga, "fungi"@fr, "fungus"@en, "hongos"@es, "schimmel"@nl, "μύκητας"@el, "پھُپھُوندی"@ur, "菌類"@ja ; + rdfs:subClassOf :Eukaryote ; + prov:wasDerivedFrom . + +:GaelicGamesPlayer + a owl:Class ; + rdfs:label "Gaelic games player"@en, "Gaelische sporter"@nl, "gälischen Sportspieler"@de, "imreoir sa Chumann Lúthchleas Gael"@ga, "joueur de sports gaéliques"@fr, "Γαελικός παίκτης παιχνιδιών"@el, "گیلک_کھیل_کا_کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Galaxy + a owl:Class ; + rdfs:label "Galaxie"@de, "galakse"@da, "galaksi"@tr, "galaxie"@fr, "galaxy"@en, "galáxia"@pt, "melkwegstelsel"@nl, "réaltra"@ga, "γαλαξίας"@el, "کہکشاں"@ur, "銀河"@ja, "은하"@ko ; + rdfs:subClassOf :CelestialBody ; + owl:equivalentClass wikidata:Q318 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Apoapsisdistanz (km)"@de, "apoapsis (km)"@en, "απόαψης (km)"@el, "апоапсис (km)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:comment "The average speed of a thing."@en, "Vitesse moyenne du déplacement d'un objet."@fr, "Η μέση ταχύτητα ενός πράγματος."@el ; + rdfs:domain :Galaxy ; + rdfs:label "Durchschnittsgeschwindigkeit (km/s)"@de, "average speed (km/s)"@en, "vitesse moyenne (km/s)"@fr, "μέση ταχύτητα (km/s)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Dichte (μ3)"@de, "densidade (μ3)"@pt, "density (μ3)"@en, "densità (μ3)"@it, "densité (μ3)"@fr, "πυκνότητα (μ3)"@el, "密度 (μ3)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Maximaltemperatur (K)"@de, "maximum temperature (K)"@en, "μέγιστη θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "durchschnittlicher Radius (km)"@de, "mean radius (km)"@en, "μέση ακτίνα (km)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Durchschnittstemperatur (K)"@de, "mean temperature (K)"@en, "μέση θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "geringste Temperatur (K)"@de, "minimum temperature (K)"@en, "ελάχιστη θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Umlaufzeit (μ)"@de, "orbital period (μ)"@en, "Περίοδος περιφοράς (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Periapsisdistanz (km)"@de, "periapsis (km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Oberfläche (km2)"@de, "surface area (km2)"@en, "έκταση (km2)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Temperatur (K)"@de, "temperature (K)"@en, "température (K)"@fr, "θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Volumen (km3)"@de, "volume (km3)"@en, "volume (km3)"@fr, "volume (km3)"@nl, "όγκος (km3)"@el, "запремина (km3)"@sr ; + rdfs:range . + +:Game + a owl:Class ; + rdfs:comment "a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool"@en, "ایک ساختی سرگرمی،جوعموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔"@ur ; + rdfs:label "Spiel"@de, "cluiche"@ga, "game"@en, "jeu"@fr, "jogo"@pt, "juego"@es, "spel"@nl, "spil"@da, "Πληροφορίες παιχνιδιού"@el, "کھیل"@ur, "ゲーム"@ja ; + rdfs:subClassOf :Activity ; + owl:equivalentClass wikidata:Q11410 ; + prov:wasDerivedFrom . + +:Garden + a owl:Class ; + rdfs:comment "A garden is a planned space, usually outdoors, set aside for the display, cultivation, and enjoyment of plants and other forms of nature. (http://en.wikipedia.org/wiki/Garden)"@en, """باغ ایک منصوبہ بند جگہ ہے ، عام طور پر باہر ، ڈسپلے ، کاشت ، اور پودوں اور فطرت کی دیگر اقسام سے لطف اندوز ہونے کے لیے + (http://en.wikipedia.org/wiki/Garden)"""@ur ; + rdfs:label "Garten"@de, "garden"@en, "giardino"@it, "gáirdín"@ga, "have"@da, "jardin"@fr, "tuin"@nl, "κήπος"@el, "باغ"@ur, "庭園"@ja ; + rdfs:subClassOf :Place ; + owl:equivalentClass wikidata:Q1107656 ; + prov:wasDerivedFrom . + +:GatedCommunity + a owl:Class ; + rdfs:label "Gated community"@en, "Hofje / gebouw met woongemeenschap"@nl, "bewachte Wohnanlage / Siedlung"@de, "مسدود برادری"@ur ; + rdfs:subClassOf :PopulatedPlace ; + prov:wasDerivedFrom . + +:Gene + a owl:Class ; + rdfs:label "Gen"@de, "gen"@da, "gen"@nl, "gene"@en, "gene"@pt, "gène"@fr, "géin"@ga, "γονίδιο"@el, "نَسبہ"@ur, "遺伝子"@ja ; + rdfs:subClassOf :Biomolecule ; + owl:equivalentClass wikidata:Q7187 ; + prov:wasDerivedFrom . + +:GeneLocation + a owl:Class ; + rdfs:label "Gen Lokation"@de, "GeneLocation"@en, "locus"@nl, "position du gène"@fr, "θέση γονιδίων"@el, "نَسبہ کا مقام"@ur, "遺伝子座"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Genre + a owl:Class ; + rdfs:label "Genre"@de, "genre"@en, "genre"@fr, "genre"@nl, "género"@es, "seánra"@ga, "ύφος"@el, "صنف"@ur, "ジャンル"@ja ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:GeologicalPeriod + a owl:Class ; + rdfs:label "geological period"@en, "geologische Periode"@de, "geologische periode"@nl, "période géologiqueA"@fr, "γεωλογική περίοδος"@el, "ارضیاتی دورانیہ"@ur ; + rdfs:subClassOf :TimePeriod ; + owl:disjointWith :Person ; + owl:equivalentClass wikidata:Q392928 ; + prov:wasDerivedFrom . + +:GeopoliticalOrganisation + a owl:Class ; + rdfs:label "geopolitical organisation"@en, "geopolitieke organisatie"@nl, "geopolitische Organisation"@de, "organisation géopolitique"@fr, "organización geopolítica"@es, "γεωπολιτική οργάνωση"@el, "جُغرافیائی سیاسیات تنظیم"@ur, "지정학적 조직"@ko ; + rdfs:subClassOf :Organisation ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :GeopoliticalOrganisation ; + rdfs:label "area metro (km2)"@en, "περιοχή μετρό (km2)"@el, "метрополска област (km2)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :GeopoliticalOrganisation ; + rdfs:label "Bevölkerungsdichte (/sqkm)"@de, "bevolkingsdichtheid (/sqkm)"@nl, "population density (/sqkm)"@en, "πυκνότητα_πληθυσμού (/sqkm)"@el, "घनत्व (/sqkm)"@hi ; + rdfs:range . + +:Ginkgo + a owl:Class ; + rdfs:comment "چینی درخت پنکھے کے جیسے پتوں والا"@ur ; + rdfs:label "Ginkgo biloba"@nl, "ginkgo"@de, "ginkgo"@el, "ginkgo"@en, "ginkgo"@fr, "ginkgo"@pt, "ginkgo biloba"@it, "جنکگو"@ur, "銀杏属"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:GivenName + a owl:Class ; + rdfs:label "Vorname"@de, "céadainm"@ga, "given name"@en, "imię"@pl, "prénom"@fr, "voornaam"@nl, "όνομα"@el, "دیا گیا نام"@ur, "名"@ja ; + rdfs:subClassOf :Name ; + owl:equivalentClass wikidata:Q202444 ; + prov:wasDerivedFrom . + +:Glacier + a owl:Class ; + rdfs:comment "Παγετώνες ονομάζονται μεγάλες μάζες πάγου συνήθως κινούμενες λόγω συμπίεσης του χιονιού."@el ; + rdfs:label "Gletscher"@de, "geleira"@pt, "ghiacciaio"@it, "glacier"@en, "glacier"@fr, "gletsjer"@nl, "oighearshruth"@ga, "παγετώνας"@el, "برف کا تودہ"@ur, "氷河"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q35666 ; + prov:wasDerivedFrom . + +:Globularswarm + a owl:Class ; + rdfs:label "Globular Swarm"@en, "Kugelschwarm"@de, "globulaire zwerm (cluster)"@nl, "Σφαιρωτό σμήνος"@el, "عالمی بھیڑ"@ur ; + rdfs:subClassOf :Swarm ; + prov:wasDerivedFrom . + +:Gnetophytes + a owl:Class ; + rdfs:label "Gnetales"@nl, "Gnetophyta"@de, "Gnetophytes"@el, "Gnetophytes"@en, "gnétophytes"@fr, "گمٹیلا پودا"@ur, "グネツム綱"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:GolfCourse + a owl:Class ; + rdfs:comment "Dans un parcours de golf, les trous comportent souvent des dangers, définis comme des zones spéciales auxquelles s'appliquent des règles de jeu supplémentaires."@fr, "In a golf course, holes often carry hazards, defined as special areas to which additional rules of the game apply."@en, "Σε ένα γήπεδο γκολφ οι τρύπες συχνά κρύβουν κινδύνους, που ορίζονται ως ειδικές περιοχές για τις οποίες ισχύουν επιπρόσθετοι κανόνες διεξαγωγής του παιχνιδιού."@el, "زمین کا ایک علاقہ جس میں گولف کے لیے 9 یا 18 سوراخ ہوتے ہیں جن میں سے ہر ایک میں ٹی ، فیئر وے ، اور سبز اور اکثر ایک یا زیادہ قدرتی یا مصنوعی خطرات شامل ہیں۔ - جسے گولف لنکس بھی کہا جاتا ہے۔"@ur ; + rdfs:label "Golfplatz"@de, "campo da golf"@it, "cúrsa gailf"@ga, "golf course"@en, "golfbaan"@nl, "terrain de golf"@fr, "γήπεδο γκολφ"@el, "گالف کا میدان"@ur ; + rdfs:subClassOf :SportFacility ; + owl:equivalentClass wikidata:Q1048525 ; + prov:wasDerivedFrom . + +:GolfLeague + a owl:Class ; + rdfs:comment "Golfplayer that compete against each other in Golf"@en, "گالف پلیئر جو گالف میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Golfliga"@de, "golf competitie"@nl, "golf league"@en, "liga de golfe"@pt, "ligue de golf"@fr, "sraith gailf"@ga, "ένωση γκολφ"@el, "گالف کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:GolfPlayer + a owl:Class ; + rdfs:label "Golfspieler"@de, "golf player"@en, "golfeur"@fr, "golfspeler"@nl, "golfspiller"@da, "imreoir gailf"@ga, "παίκτης γκολφ"@el, "گالف کا کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13156709 ; + prov:wasDerivedFrom . + +:GolfTournament + a owl:Class ; + rdfs:label "Golfturnier"@de, "comórtas gailf"@ga, "golf toernooi"@nl, "golf tournament"@en, "torneo di golf"@it, "tournoi de golf"@fr, "گولف کا باہمی مقابلہ"@ur ; + rdfs:subClassOf :Tournament ; + owl:equivalentClass wikidata:Q15061650 ; + prov:wasDerivedFrom . + +:GovernmentAgency + a owl:Class ; + rdfs:comment "A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions, such as an intelligence agency."@en, "Eine Behörde ist eine staatliche Einrichtung, die im weitesten Sinne für die Erfüllung von Aufgaben der Verwaltung des Staates und dabei insbesondere für Dienstleistungen des Staates gegenüber seinen Bürgern zuständig ist. Eine Behörde erhält ihren Auftrag aus den Gesetzen des Staates, in dem und für den sie tätig ist."@de, "Μια κυβερνητική υπηρεσία είναι μόνιμη ή ημι-μόνιμη οργάνωση στο μηχανισμό της κυβέρνησης, η οποία είναι υπεύθυνη για την εποπτεία και διαχείριση συγκεκριμένων λειτουργιών, όπως η υπηρεσία πληροφοριών."@el, "ایک سرکاری ایجنسی حکومت کی مشینری میں ایک مستقل یا نیم مستقل تنظیم ہے جو مخصوص افعال کی نگرانی اور انتظام کے لیے ذمہ دار ہے ، جیسے کہ ایک انٹیلی جنس ایجنسی"@ur ; + rdfs:label "Behörde"@de, "agence gouvernementale"@fr, "agencia del gobierno"@es, "government agency"@en, "orgaan openbaar bestuur"@nl, "κυβερνητική υπηρεσία"@el, "Орган исполнительной власти"@ru, "سرکاری محکمہ"@ur, "정부 기관"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q327333 ; + prov:wasDerivedFrom . + +:GovernmentCabinet + a owl:Class ; + rdfs:comment "A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch."@en, "Un cabinet est une entité composée d'officiels de l'état de haut niveau, formée typiquement des dirigeants supérieurs de l'exécutif."@fr, "کابینہ اعلی درجے کے ریاستی عہدیداروں کا ایک ادارہ ہے ، عام طور پر ایگزیکٹو برانچ کے اعلی رہنماؤں پر مشتمل ہوتا ہے۔"@ur ; + rdfs:label "cabinet des ministres"@fr, "cabinet of ministers"@en, "kabinet (regeringsploeg)"@nl, "وزراء کی کابینہ"@ur ; + rdfs:subClassOf :GovernmentAgency ; + prov:wasDerivedFrom . + +:GovernmentType + a owl:Class ; + rdfs:comment "a form of government"@en, "حکومت کی ایک شکل"@ur ; + rdfs:label "Government Type"@en, "Regierungsform"@de, "regeringsvorm"@nl, "régime politique"@fr, "Είδη Διακυβέρνησης"@el, "حکومت کی قسم"@ur ; + rdfs:subClassOf :Type ; + prov:wasDerivedFrom . + +:GovernmentalAdministrativeRegion + a owl:Class ; + rdfs:comment "An administrative body governing some territorial unity, in this case a governmental administrative body"@en, "ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے ، اس صورت میں ایک سرکاری انتظامی ادارہ ہے۔"@ur ; + rdfs:label "gebied onder overheidsbestuur"@nl, "governmental administrative region"@en, "région administrative d'état"@fr, "staatliche Verwaltungsregion"@de, "حکومتی انتظامی علاقہ"@ur ; + rdfs:subClassOf :AdministrativeRegion ; + prov:wasDerivedFrom . + +:Governor + a owl:Class ; + rdfs:label "Gouverneur"@de, "gobharnóir"@ga, "gouverneur"@fr, "gouverneur"@nl, "governor"@en, "κυβερνήτης"@el, "حاکم"@ur, "知事"@ja ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q132050 ; + prov:wasDerivedFrom . + +:GrandPrix + a owl:Class ; + rdfs:label "Grand Prix"@en, "Grand Prix"@ga, "gran premio"@it, "grand prix"@fr, "grand prix"@nl, "grosser Preis"@de, "γκραν πρι"@el, "موٹر کار کی دوڑ"@ur, "グランプリ"@ja ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "course (km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "Entfernung (km)"@de, "distance (km)"@en, "distance (km)"@fr ; + rdfs:range . + +:Grape + a owl:Class ; + rdfs:label "Weintraube"@de, "druif"@nl, "fíonchaor"@ga, "grape"@en, "raisin"@fr, "uva"@es, "uva"@it, "σταφύλι"@el, "انگور"@ur, "ブドウ"@ja ; + rdfs:subClassOf :FloweringPlant ; + owl:equivalentClass wikidata:Q10978 ; + prov:wasDerivedFrom . + +:GraveMonument + a owl:Class ; + rdfs:comment "A monument erected on a tomb, or a memorial stone."@en, "ایک یادگار ایک مقبرے پر کھڑی کی گئی ، یا ایک یادگار پتھر"@ur ; + rdfs:label "Grabdenkmal"@de, "grafsteen of grafmonument"@nl, "grave stone or grave monument"@en, "pierre tombale ou monument funéraire"@fr, "قبر کی یادگار"@ur ; + rdfs:subClassOf :Monument ; + prov:wasDerivedFrom . + +:GreenAlga + a owl:Class ; + rdfs:label "Grünalge"@de, "alga verde"@es, "algue verte"@fr, "green alga"@en, "groenwieren"@nl, "πράσινο φύκος"@el, "سبز طحالب"@ur, "緑藻"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:GridironFootballPlayer + a owl:Class ; + rdfs:comment "Gradiron football, also called North American football, is a family of soccer team games played primarily in the United States and Canada."@en, "گریڈیرون فٹ بال ، جسے شمالی امریکی فٹ بال بھی کہا جاتا ہے ، فٹ بال ٹیم کھیلوں کا ایک خاندان ہے جو بنیادی طور پر ریاستہائے متحدہ اور کینیڈا میں کھیلا جاتا ہے"@ur ; + rdfs:label "Gridiron Footballspieler"@de, "Gridiron voetballer"@nl, "gridiron football player"@en, "joueur de football américain gridiron"@fr, "گرڈیرون فٹ بال کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q14128148 ; + prov:wasDerivedFrom . + +:GrossDomesticProduct + a owl:Class ; + rdfs:label "Bruttoinlandsprodukt"@de, "bruto nationaal product"@nl, "gross domestic product"@en, "olltáirgeacht intíre"@ga, "ακαθάριστο εγχώριο προϊόν"@el, "مجموعی ملکی پیداوار"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:GrossDomesticProductPerCapita + a owl:Class ; + rdfs:comment "فی کس جی ڈی پی قومی حدود کے اندر پیدا ہونے والی مارکیٹنگ اشیاء اور خدمات کے مجموعے کی پیمائش کرتا ہے ، جو اس علاقے میں رہنے والے ہر شخص کے لیے اوسط ہے"@ur ; + rdfs:label "Bruttoinlandsprodukt pro Kopf"@de, "bruto nationaal product per hoofd van de bevolking"@nl, "gross domestic product per capita"@en, "olltáirgeacht intíre per capita"@ga, "produit intérieur brut par habitant"@fr, "ακαθάριστο εγχώριο προϊόν κατά κεφαλήν"@el, "فی کس مجموعی ملکی پیداوار"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Group + a owl:Class ; + rdfs:comment "An (informal) group of people."@en, "un groupe (informel) de personnes."@fr, "Μια συνήθως άτυπη ομάδα ανθρώπων."@el, "لوگوں کا ایک غیر رسمی گروہ"@ur ; + rdfs:label "Gruppe"@de, "groep"@nl, "group"@en, "groupe"@fr, "grupo"@es, "gruppe"@da, "gruppo"@it, "grúpa"@ga, "ομάδα"@el, "گروہ"@ur, "集団"@ja ; + rdfs:subClassOf :Organisation, ; + prov:wasDerivedFrom . + +:Guitar + a owl:Class ; + rdfs:comment "Describe la guitarra"@es, "Describes the guitar"@en, "Décrit la guitare"@fr, "beschrijving van de gitaar"@nl, "Περιγράφει την κιθάρα"@el, "ایک تار والا میوزیکل آلہ ، جس میں فنگر فنگر بورڈ ہوتا ہے ، عام طور پر کٹے ہوئے اطراف ، اور چھ یا بارہ تار ، انگلیوں یا پلیکٹرم سے توڑنے یا جھومنے سے بجائے جاتے ہیں۔"@ur ; + rdfs:label "Gitarre"@de, "giotar"@ga, "gitaar"@nl, "guitar"@da, "guitar"@en, "guitare"@fr, "guitarra"@es, "κιθάρα"@el, "ستار"@ur, "ギター"@ja ; + rdfs:subClassOf :Instrument ; + owl:equivalentClass wikidata:Q6607 ; + prov:wasDerivedFrom . + +:Guitarist + a owl:Class ; + rdfs:label "Gitarrist"@de, "chitarrista"@it, "giotáraí"@ga, "gitarist"@nl, "guitarist"@da, "guitarist"@en, "guitariste"@fr, "κιθαρίστας"@el, "ستار بجانے والا"@ur, "ギター演奏者"@ja ; + rdfs:subClassOf :Instrumentalist ; + owl:equivalentClass wikidata:Q855091 ; + prov:wasDerivedFrom . + +:Gymnast + a owl:Class ; + rdfs:comment "A gymnast is one who performs gymnastics"@en, "Un gymnaste est une personne qui pratique la gymnastique"@fr, "Ένας γυμναστής είναι ένας που εκτελεί γυμναστικές ασκήσεις"@el, "جمناسٹ وہ ہوتا ہے جو جمناسٹکس کرتا ہے"@ur ; + rdfs:label "Turner"@de, "gleacaí"@ga, "gymnast"@da, "gymnast"@en, "gymnaste"@fr, "turner"@nl, "γυμναστής"@el, "کسرتی"@ur, "体操選手"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:HandballLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Handball"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو ہینڈ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے"@ur ; + rdfs:label "Handball-Liga"@de, "handbal competitie"@nl, "handball league"@en, "håndboldliga"@da, "ligue de handball"@fr, "Ομοσπονδία Χειροσφαίρισης"@el, "ہینڈ بال کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:HandballPlayer + a owl:Class ; + rdfs:comment "ایک کھیل جِس میں دو یا چار کھِلاڑی بَند احاطے میں ربَڑ کی چھوٹی گیند کو ہاتھوں سے دیوار پَر مارتے ہیں"@ur ; + rdfs:label "Handballspieler"@de, "handball player"@en, "handballer"@nl, "håndboldspiller"@da, "imreoir liathróid láimhe"@ga, "joueur de handball"@fr, "jugador de balonmano"@es, "παίκτης του handball"@el, "ہینڈ بال کا کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13365117 ; + prov:wasDerivedFrom . + +:HandballTeam + a owl:Class ; + rdfs:label "Handballmannschaft"@de, "foireann liathróid láimhe"@ga, "handbal team"@nl, "handball team"@en, "håndboldhold"@da, "squadra di pallamano"@it, "équipe de handball"@fr, "ομάδα χειροσφαίρισης"@el, "ہینڈ بال جماعت"@ur ; + rdfs:subClassOf :SportsTeam ; + owl:equivalentClass wikidata:Q10517054 ; + prov:wasDerivedFrom . + +:HighDiver + a owl:Class ; + rdfs:label "Turmspringer"@de, "high diver"@en, "schoonspringer"@nl, "اونچائی سے پانی میں ڈبکی لگانے والا"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Historian + a owl:Class ; + rdfs:label "Historiker"@de, "historian"@en, "historicus"@nl, "historien"@fr, "staraí"@ga, "storico"@it, "ιστορικός"@el, "مورخ"@ur, "歴史学者"@ja ; + rdfs:subClassOf :Writer ; + prov:wasDerivedFrom . + +:HistoricBuilding + a owl:Class ; + rdfs:label "bâtiment historique"@fr, "foirgneamh stairiúil"@ga, "historic building"@en, "historisch gebouw"@nl, "historisches Gebäude"@de, "ιστορικό κτίριο"@el, "تاریخی عمارت"@ur, "歴史的建造物"@ja ; + rdfs:subClassOf :Building, ; + prov:wasDerivedFrom . + +:HistoricPlace + a owl:Class ; + rdfs:label "historic place"@en, "historischer Ort"@de, "plaats van geschiedkundig belang"@nl, "site historique"@fr, "áit stairiúil"@ga, "ιστορικός χώρος"@el, "تاریخی مقام"@ur ; + rdfs:subClassOf :Place, ; + prov:wasDerivedFrom . + +:HistoricalAreaOfAuthority + a owl:Class ; + rdfs:comment "Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority"@en, "زیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے"@ur ; + rdfs:label "ancient area of jurisdiction of a person (feudal) or of a governmental body"@en, "gebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staat"@nl, "کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ"@ur ; + rdfs:subClassOf :AdministrativeRegion ; + prov:wasDerivedFrom . + +:HistoricalCountry + a owl:Class ; + rdfs:comment "ایک ایسی جگہ جو ایک ملک ہوا کرتی تھی۔"@en ; + rdfs:label "Historical country"@en, "ancien pays"@fr, "historischer Land"@de, "tír stairiúil"@ga, "voormalig land"@nl, "تاریخی ملک"@ur ; + rdfs:subClassOf :Country ; + prov:wasDerivedFrom . + +:HistoricalDistrict + a owl:Class ; + rdfs:comment "a place which used to be a district."@en, "یک ایسی جگہ جو پہلے ضلع ہوتی تھی۔"@ur ; + rdfs:label "Historical district"@en, "ancien département"@fr, "ceantar stairiúil"@ga, "historischer Kreis / Bezirk"@de, "voormalig kwartier of district"@nl, "تاریخی ضلع"@ur ; + rdfs:subClassOf :District ; + prov:wasDerivedFrom . + +:HistoricalEvent + a owl:Class ; + rdfs:comment "an event that is clearly different from strictly personal events and had historical impact"@en, "ایک ایسا واقعہ جو ذاتی واقعات سے واضح طورپرمختلف ہوجونمایاں، تاریخ بدلنےوالااثررکھتا ہے"@ur ; + rdfs:label "historical event"@en, "historische gebeurtenis"@nl, "historisches Ereignis"@de, "évènement historique"@fr, "تاریخی واقعہ"@ur ; + rdfs:subClassOf :SocietalEvent ; + prov:wasDerivedFrom . + +:HistoricalPeriod + a owl:Class ; + rdfs:comment "A historical Period should be linked to a Place by way of the property dct:spatial (already defined)"@en, "Une période historique doit être liée à un lieu au moyen de la propriété dct:spatial (déjà définie)"@fr, "یک تاریخی ادوار کو جائیداد کے ذریعے کسی جگہ سے جوڑا جانا چاہیے۔"@ur ; + rdfs:label "historical period"@en, "historische Periode"@de, "historische periode"@nl, "période historique"@fr, "tréimhse sa stair"@ga, "ιστορική περίοδος"@el, "تاریخی دور"@ur ; + rdfs:subClassOf :TimePeriod ; + owl:disjointWith :Person ; + owl:equivalentClass wikidata:Q11514315 ; + prov:wasDerivedFrom . + +:HistoricalProvince + a owl:Class ; + rdfs:comment "A place which used to be a province."@en, "یک ایسی جگہ جو ایک صوبہ ہوا کرتی تھی۔"@ur ; + rdfs:label "Ancienne province"@fr, "Historical province"@en, "cúige stairiúil"@ga, "historischer Provinz"@de, "voormalige provincie"@nl, "تاریخی صوبہ"@ur ; + rdfs:subClassOf :Province ; + prov:wasDerivedFrom . + +:HistoricalRegion + a owl:Class ; + rdfs:comment "Lieu qui était autrefois une région."@fr, "a place which used to be a region."@en, "ایک ایسی جگہ جو ایک علاقہ ہوا کرتی تھی"@ur ; + rdfs:label "Ancienne région"@fr, "Historical region"@en, "historischer Region"@de, "réigiún stairiúil"@ga, "voormalige regio"@nl, "تاریخی علاقہ"@ur ; + rdfs:subClassOf :Region ; + owl:equivalentClass wikidata:Q1620908 ; + prov:wasDerivedFrom . + +:HistoricalSettlement + a owl:Class ; + rdfs:comment "A place which used to be a city or town or village."@en, "وہ جگہ جو پہلے شہر یا قصبہ یا گاؤں ہوا کرتی تھی"@ur ; + rdfs:label "Historical settlement"@en, "ancien ville ou village"@fr, "historischer Siedlung"@de, "voormalige stad of dorp"@nl, "áit lonnaithe stairiúil"@ga, "تاریخی آبادکاری"@ur ; + rdfs:subClassOf :Settlement ; + prov:wasDerivedFrom . + +:HockeyClub + a owl:Class ; + rdfs:label "Hockeyverein"@de, "hockey club"@en, "hockeyclub"@nl, "ہاکی کی تنظیم"@ur ; + rdfs:subClassOf :SportsClub ; + prov:wasDerivedFrom . + +:HockeyTeam + a owl:Class ; + rdfs:label "Hockeymannschaft"@de, "Hokejska ekipa"@sl, "hockey team"@en, "hockeyploeg"@nl, "équipe de hockey"@fr, "ομάδα χόκεϊ"@el, "ہاکی کھیل کی جماعت"@ur ; + rdfs:subClassOf :SportsTeam ; + owl:equivalentClass wikidata:Q4498974 ; + prov:wasDerivedFrom . + +:Holiday + a owl:Class ; + rdfs:comment "Un jour férié est un jour de fête civile ou religieuse, ou commémorant un événement."@fr, "Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden."@de, "ام تعطیل سول یا مذہبی جشن کا دن ہے ، یا کسی تقریب کی یاد میں"@ur ; + rdfs:label "Feiertag"@de, "giorno festivo"@it, "holiday"@en, "jour férié"@fr, "lá saoire"@ga, "vakantie"@nl, "αργία"@el, "چھٹی"@ur, "祝日"@ja, "휴일"@ko ; + rdfs:subClassOf :TimeInterval ; + owl:equivalentClass wikidata:Q1445650 ; + prov:wasDerivedFrom . + +:HollywoodCartoon + a owl:Class ; + rdfs:label "Hollywood Cartoon"@de, "Hollywood cartoon"@nl, "hollywood cartoon"@en, "κινούμενα σχέδια του Hollywood"@el, "ہالی ووڈ کارٹون"@ur ; + rdfs:subClassOf :Cartoon ; + prov:wasDerivedFrom . + +:Hormone + a owl:Class ; + rdfs:comment "A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour."@en, "Hormonen zijn signaalstoffen die door endocriene klieren via de bloedbaan aan doelcellen of -organen worden afgegeven en fysiologische processen en gedrag reguleren"@nl, "Une hormone fait partie d'une classe de molécules de signalisation produites par les glandes d'organismes multicellulaires qui sont transportées par le système circulatoire pour cibler des organes distants afin de réguler la physiologie et le comportement."@fr, "ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں"@ur ; + rdfs:label "Hormone"@en, "Hormone"@fr, "hormoon"@nl, "اعضاء کی خوراک"@ur ; + rdfs:subClassOf :Biomolecule ; + owl:equivalentClass wikidata:Q8047 ; + prov:wasDerivedFrom . + +:Horse + a owl:Class ; + rdfs:label "Pferd"@de, "capall"@ga, "cheval"@fr, "hest"@da, "horse"@en, "paard"@nl, "گھوڑا"@ur, "ウマ"@ja ; + rdfs:subClassOf :Mammal ; + prov:wasDerivedFrom . + +:HorseRace + a owl:Class ; + rdfs:label "Pferderennen"@de, "course de chevaux"@fr, "horse race"@en, "paardenrace"@nl, "αγώνας ιππασίας"@el, "گھوڑا دوڑ میں مقابلہ کرنا"@ur ; + rdfs:subClassOf :Race ; + prov:wasDerivedFrom . + +:HorseRider + a owl:Class ; + rdfs:label "Reiter"@de, "cavalier"@fr, "horse rider"@en, "marcach"@ga, "paardrijder"@nl, "ιππέας"@el, "گھڑ سوار"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:HorseTrainer + a owl:Class ; + rdfs:label "Pferdetrainer"@de, "entraineur de chevaux"@fr, "horse trainer"@en, "paardentrainer"@nl, "εκπαιδευτής αλόγων"@el, "گھوڑا سدھانے والا"@ur, "調教師"@ja ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Hospital + a owl:Class ; + rdfs:label "Krankenhaus"@de, "hospital"@da, "hospital"@en, "hospital"@pt, "hôpital"@fr, "ospidéal"@ga, "ziekenhuis"@nl, "νοσοκομείο"@el, "ہسپتال"@ur, "병원"@ko ; + rdfs:subClassOf :building ; + prov:wasDerivedFrom . + +:HotSpring + a owl:Class ; + rdfs:label "foinse the"@ga, "fonte termal"@pt, "heiße Quelle"@de, "hot spring"@en, "source d'eau chaude"@fr, "warmwaterbron"@nl, "گرم موسم بہار"@ur, "温泉"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q177380 ; + prov:wasDerivedFrom . + +:Hotel + a owl:Class ; + rdfs:label "Hotel"@de, "albergo"@it, "hotel"@da, "hotel"@en, "hotel"@nl, "hôtel"@fr, "óstán"@ga, "ξενοδοχείο"@el, "سرائے"@ur, "ホテル"@ja, "호텔"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass , wikidata:Q27686 ; + prov:wasDerivedFrom . + +:HumanGene + a owl:Class ; + rdfs:label "HumanGene"@en, "Humangen"@de, "gène humain"@fr, "géin duine"@ga, "menselijk gen"@nl, "ανθρώπινο γονίδιο"@el, "انسانی نَسبہ"@ur, "ヒト遺伝子"@ja ; + rdfs:subClassOf :Gene ; + prov:wasDerivedFrom . + +:HumanGeneLocation + a owl:Class ; + rdfs:label "HumanGeneLocation"@en, "Humangen Lokation"@de, "Position de gène chez l'homme"@fr, "menselijk genoom locatie"@nl, "τοποθεσία του ανθρώπινου γονιδίου"@el, "انسانی نَسبہ کا مقام"@ur, "ヒト遺伝子座"@ja ; + rdfs:subClassOf :GeneLocation ; + prov:wasDerivedFrom . + +:Humorist + a owl:Class ; + rdfs:label "Humorist"@de, "humorist"@en, "humoriste"@fr, "komiek"@nl, "χιουμορίστας"@el, "مزاح نگار"@ur, "喜劇作家または喜劇俳優"@ja ; + rdfs:subClassOf :Artist ; + prov:wasDerivedFrom . + +:IceHockeyLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Ice Hockey."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو برفانی ہاکی میں ایک دوسرے سے مقابلہ کرتا ہے"@ur ; + rdfs:label "Eishockey-Liga"@de, "ice hockey league"@en, "ijshockey competitie"@nl, "ligue d'hockey sur glace"@fr, "πρωτάθλημα χόκεϋ"@el, "برفانی ہاکی کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:IceHockeyPlayer + a owl:Class ; + rdfs:label "Eishockeyspieler"@de, "ice hockey player"@en, "ijshockeyspeler"@nl, "joueur de hockey sur glace"@fr, "παίκτης χόκεϋ"@el, "برفانی ہاکی کا کھلاڑی"@ur, "아이스하키 선수"@ko ; + rdfs:subClassOf :WinterSportPlayer ; + owl:equivalentClass wikidata:Q11774891 ; + prov:wasDerivedFrom . + +:Identifier + a owl:Class ; + rdfs:label "Bezeichner"@de, "identifiant"@fr, "identificator"@nl, "identifier"@en, "شناخت کنندہ"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q6545185 ; + prov:wasDerivedFrom . + +:Ideology + a owl:Class ; + rdfs:comment "for example: Progressivism_in_the_United_States, Classical_liberalism"@en, "για παραδειγμα: Προοδευτισμός στις ΗΠΑ, κλασικός φιλελευθερισμός"@el, "مثال کے طور پر: ریاستہائے متحدہ میں ترقی پسندی، کلاسیکی لبرل ازم"@ur ; + rdfs:label "Ideologie"@de, "ideologia"@pt, "ideologie"@nl, "ideology"@en, "idé-eolaíocht"@ga, "idéologie"@fr, "ιδεολογία"@el, "نظریہ"@ur, "イデオロギー"@ja ; + rdfs:subClassOf :TopicalConcept ; + owl:equivalentClass d0:CognitiveEntity, wikidata:Q7257 ; + prov:wasDerivedFrom . + +:Image + a owl:Class ; + rdfs:comment "A document that contains a visual image"@en, "ایک دستاویز جس میں بصری عکس ہو۔"@ur ; + rdfs:label "Bild"@de, "afbeelding"@nl, "billede"@da, "image"@en, "image"@fr, "íomhá"@ga, "تصویر"@ur, "画像"@ja ; + rdfs:subClassOf :Document ; + prov:wasDerivedFrom . + +:InformationAppliance + a owl:Class ; + rdfs:comment "An information device such as PDAs or Video game consoles, etc."@en, "معلوماتی آلہ جیسے پی ڈی اے یا ویڈیو گیم کنسولز وغیرہ"@ur ; + rdfs:label "Datengerät"@de, "dispositivo electrónico"@es, "information appliance"@en, "συσκευή πληροφορικής"@el, "معلوماتی آلات"@ur ; + rdfs:subClassOf :Device ; + owl:equivalentClass wikidata:Q1067263 ; + prov:wasDerivedFrom . + +:Infrastructure + a owl:Class ; + rdfs:label "Infrastruktur"@de, "infrastructure"@en, "infrastructure"@fr, "infrastructure"@nl, "infrastruktur"@da, "Υποδομή"@el, "بنیادی ڈھانچہ"@ur, "インフラストラクチャー"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "Länge (km)"@de, "lengte (km)"@nl, "length (km)"@en, "longueur (km)"@fr, "μήκος (km)"@el, "ርዝመት (km)"@am ; + rdfs:range . + +:Infrastucture + a owl:Class ; + rdfs:label "infrastructure"@en, "infrastructure"@fr, "بنیادی ڈھانچہ"@ur ; + rdfs:subClassOf :ArchitecturalStructure ; + prov:wasDerivedFrom . + +:InlineHockeyLeague + a owl:Class ; + rdfs:comment "group of sports teams that compete against each other in Inline Hockey."@en, "کھیلوں کی ٹیموں کا گروپ جو ان لائن ہاکی میں ایک دوسرے سے مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Inlinehockey Liga"@de, "inline hockey league"@en, "inlinehockey competitie"@nl, "sraith haca inlíne"@ga, "πρωτάθλημα χόκεϋ inline"@el, "ان لائن ہاکی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Insect + a owl:Class ; + rdfs:label "Insekt"@de, "feithid"@ga, "insect"@en, "insect"@nl, "insecte"@fr, "insecto"@es, "έντομο"@el, "کیڑا"@ur, "昆虫"@ja ; + rdfs:subClassOf :Animal ; + owl:equivalentClass wikidata:Q1390 ; + prov:wasDerivedFrom . + +:Instrument + a owl:Class ; + rdfs:comment "Describes all musical instrument"@en, "تمام آلات موسیقی کو بیان کرتا ہے"@ur ; + rdfs:label "Glasbilo"@sl, "Instrument"@en, "Instrumento"@es, "instrument de musique"@fr, "musikinstrument"@de, "muziekinstrument"@nl, "strumento musicale"@it, "uirlis"@ga, "Μουσικό Όργανο"@el, "آلہ"@ur, "楽器"@ja, "악기"@ko ; + rdfs:subClassOf :Device, ; + owl:equivalentClass wikidata:Q225829 ; + prov:wasDerivedFrom . + +:Instrumentalist + a owl:Class ; + rdfs:comment "Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist)"@nl, "Un instrumentiste est quelqu'un qui joue d'un instrument. Tout instrumentiste non-vocal (incluant guitariste, pianiste, saxophoniste, DJ, musicien divers...). Tout artiste solo qui compose et/ou fait partie d'un groupe."@fr, "Ο μουσικός είναι ένα άτομο το οποίο γράφει, ερμηνεύει, ή κάνει μουσική."@el, "موسیقار وہ شخص ہوتا ہے جو لکھتا ہے، پرفارم کرتا ہے یا موسیقی بناتا ہے۔"@ur ; + rdfs:label "Musiker"@de, "instrumentalist"@en, "instrumentalist"@nl, "instrumentiste"@fr, "ionstraimí"@ga, "μουσικός"@el, "سازندہ"@ur, "音楽家"@ja ; + rdfs:subClassOf :MusicalArtist ; + prov:wasDerivedFrom . + +:Intercommunality + a owl:Class ; + rdfs:label "Intercommunality"@en, "Interkommunalität"@de, "intercommunalité"@fr, "فرقہ واریت"@ur ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q3153117 ; + prov:wasDerivedFrom . + +:InternationalFootballLeagueEvent + a owl:Class ; + rdfs:label "International Football Liga Veranstaltung"@de, "international football league event"@en, "بین الاقوامی فٹ بال انجمن کی تقریب"@ur ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:InternationalOrganisation + a owl:Class ; + rdfs:comment "An international organisation is either a private or a public organisation seeking to accomplish goals across country borders"@en, "ایک بین الاقوامی تنظیم یا تو ایک نجی یا عوامی تنظیم ہے جو ملک کی سرحدوں سے اہداف حاصل کرنے کی کوشش کرتی ہے۔"@ur ; + rdfs:label "international organisation"@en, "internationale organisatie"@nl, "organisation internationale"@fr, "بین الاقوامی تنظیم"@ur ; + rdfs:subClassOf :Organisation ; + prov:wasDerivedFrom . + +:Island + a owl:Class ; + rdfs:label "Insel"@de, "Isla"@es, "eiland"@nl, "ilha"@pt, "island"@en, "oileán"@ga, "wyspa"@pl, "île"@fr, "ø"@da, "νησί"@el, "جزیرہ"@ur, "島"@ja, "섬"@ko ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q23442 ; + prov:wasDerivedFrom . + +:JewishLeader + a owl:Class ; + rdfs:label "Buruzagi judua"@eu, "JewishLeader"@en, "Jødisk leder"@da, "chef juif"@fr, "زعيم يهودي"@ar, "یہودی رہنما"@ur, "यहूदी नेता"@hi ; + rdfs:subClassOf :Religious ; + prov:wasDerivedFrom . + +:Jockey + a owl:Class ; + rdfs:label "Jockey (Pferderennprofi)"@de, "jockey"@nl, "jockey (coureur à cheval)"@fr, "jockey (horse racer)"@en, "marcach"@ga, "αναβάτης αλόγου αγώνων"@el, "پیشہ ور گھڑ سوار"@ur, "騎手"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Journalist + a owl:Class ; + rdfs:label "Journalist"@de, "giornalista"@it, "iriseoir"@ga, "journalist"@en, "journalist"@nl, "journaliste"@fr, "periodista"@es, "δημοσιογράφος"@el, "صحافی"@ur, "ジャーナリスト"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q1930187 ; + prov:wasDerivedFrom . + +:Judge + a owl:Class ; + rdfs:label "breitheamh"@ga, "giudice"@it, "judge"@en, "juez"@es, "juge"@fr, "rechter"@nl, "richter"@de, "δικαστής"@el, "قاضی"@ur, "裁判官"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q16533 ; + prov:wasDerivedFrom . + +:LacrosseLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Lacrosse."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو لیکروس لیگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے"@ur ; + rdfs:label "Lacrosse-Liga"@de, "lacrosse bond"@nl, "lacrosse league"@en, "ligue de crosse"@fr, "πρωτάθλημα χόκεϋ σε χόρτο"@el, "لیکروس انجمن"@ur, "ラクロスリーグ"@ja ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:LacrossePlayer + a owl:Class ; + rdfs:label "Lacrossespieler"@de, "imreoir crosógaíochta"@ga, "lacrosse player"@en, "lacrosse-speler"@nl, "παίκτης χόκεϋ σε χόρτο"@el, "لیکروس کھلاڑی"@ur, "ラクロス選手"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Lake + a owl:Class ; + rdfs:label "See"@de, "jezioro"@pl, "lac"@fr, "lago"@pt, "lake"@en, "loch"@ga, "meer"@nl, "λίμνη"@el, "озеро"@ru, "جھیل"@ur, "호수"@ja, "호수"@ko ; + rdfs:subClassOf :BodyOfWater ; + owl:equivalentClass , wikidata:Q23397 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Lake ; + rdfs:label "Einzugsgebiet (km2)"@de, "area of catchment (km2)"@en, "λίμνη (km2)"@el, "подручје слива (km2)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Lake ; + rdfs:label "Uferlänge (km)"@de, "shore length (km)"@en, "μήκος_όχθης (km)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Lake ; + rdfs:label "Volumen (μ³)"@de, "volume (μ³)"@en, "volume (μ³)"@fr, "volume (μ³)"@nl, "όγκος (μ³)"@el, "запремина (μ³)"@sr ; + rdfs:range . + +:Language + a owl:Class ; + rdfs:label "Sprache"@de, "idioma"@es, "langage"@fr, "language"@en, "lingua"@gl, "sprog"@da, "taal"@nl, "teanga"@ga, "γλώσσα"@el, "زبان"@ur, "ቋንቋ"@am, "言語"@ja, "언어"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass , wikidata:Q315 ; + prov:wasDerivedFrom . + +:LatterDaySaint + a owl:Class ; + rdfs:label "Azken eguneko santua"@eu, "Latter Day Saint"@en, "Saint des derniers jours"@fr, "Sidste dages helgen"@da, "قديس اليوم الأخير"@ar, "نارمن فرقے کا عيسائی"@ur, "बाद के दिन संत"@hi ; + rdfs:subClassOf :Religious ; + prov:wasDerivedFrom . + +:LaunchPad + a owl:Class ; + rdfs:label "Startrampe"@de, "ceap lainseála"@ga, "lanceerbasis"@nl, "launch pad"@en, "rampe de lancement"@fr, "ράμπα φορτώσεως"@el, "میزائل چلانے کی جگہ"@ur ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass wikidata:Q1353183 ; + prov:wasDerivedFrom . + +:Law + a owl:Class ; + rdfs:label "Gesetz"@de, "law"@en, "loi"@fr, "lov"@da, "wet"@nl, "قانون"@ur, "法 (法学)"@ja ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:LawFirm + a owl:Class ; + rdfs:comment "A law firm is a business entity formed by one or more lawyers to engage in the practice of law. The primary service provided by a law firm is to advise clients (individuals or corporations) about their legal rights and responsibilities, and to represent their clients in civil or criminal cases, business transactions, and other matters in which legal advice and other assistance are sought."@en, "Als Anwaltskanzlei bezeichnet man die Büroräume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanwälte."@de, "ایک قانونی فرم ایک کاروباری ادارہ ہے جسے ایک یا زیادہ وکلاء نے قانون کی مشق میں مشغول کرنے کے لیے تشکیل دیا ہے۔ قانونی فرم کی طرف سے فراہم کردہ بنیادی خدمت کلائنٹس (افراد یا کارپوریشنز) کو ان کے قانونی حقوق اور ذمہ داریوں کے بارے میں مشورہ دینا ہے، اور دیوانی یا فوجداری مقدمات، کاروباری لین دین، اور دیگر معاملات میں اپنے مؤکلوں کی نمائندگی کرنا ہے جن میں قانونی مشورہ اور دیگر مدد طلب کی جاتی ہے۔"@ur ; + rdfs:label "Anwaltskanzlei"@de, "advocatenkantoor"@nl, "bufete de abogados"@es, "gnólacht dlí"@ga, "law firm"@en, "εταιρεία δικηγόρων"@el, "قانونی فرم"@ur, "法律事務所"@ja ; + rdfs:subClassOf :Company ; + owl:equivalentClass wikidata:Q613142 ; + prov:wasDerivedFrom . + +:Lawyer + a owl:Class ; + rdfs:comment "a person who is practicing law."@en, "ایک شخص جو قانون پر عمل پیرا ہے"@ur ; + rdfs:label "Anwalt"@de, "Avocat"@fr, "Lawyer"@en, "advocaat"@nl, "dlíodóir"@ga, "وکیل"@ur, "弁護士"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q40348 ; + prov:wasDerivedFrom . + +:LegalCase + a owl:Class ; + rdfs:label "Legal Case"@en, "Rechtsfall"@de, "cas juridique"@fr, "caso jurídico"@pt, "rechtzaak"@nl, "νομική υπόθεση"@el, "قانونی مقدمہ"@ur ; + rdfs:subClassOf :Case ; + owl:equivalentClass wikidata:Q2334719 ; + prov:wasDerivedFrom . + +:Legislature + a owl:Class ; + rdfs:label "Legislative"@de, "legislatura"@es, "legislature"@en, "pouvoir législatif"@fr, "reachtas"@ga, "wetgevend orgaan"@nl, "νομοθετικό σώμα"@el, "مقننہ"@ur, "立法府"@ja ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q11204 ; + prov:wasDerivedFrom . + +:Letter + a owl:Class ; + rdfs:comment "A letter from the alphabet."@en, "Ein Buchstabe des Alphabets."@de, "Ene lettre de l'alphabet."@fr, "حروف تہجی سے ایک حرف"@ur ; + rdfs:label "Buchstabe"@de, "letter"@en, "letter"@nl, "lettre"@fr, "litir"@ga, "γράμμα"@el, "حرف"@ur, "文字"@ja ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q133492, wikidata:Q9788 ; + prov:wasDerivedFrom . + +:Library + a owl:Class ; + rdfs:label "Biblioteca"@es, "Bibliothek"@de, "bibliotek"@da, "biblioteka"@pl, "bibliotheek"@nl, "bibliothèque"@fr, "leabharlann"@ga, "library"@en, "βιβλιοθήκη"@el, "کتب خانہ"@ur, "図書館"@ja, "도서관"@ko ; + rdfs:subClassOf :EducationalInstitution ; + owl:equivalentClass , wikidata:Q7075 ; + prov:wasDerivedFrom . + +:Lieutenant + a owl:Class ; + rdfs:label "Leutnant"@de, "leifteanant"@ga, "lieutenant"@en, "lieutenant"@fr, "luitenant"@nl, "tenente"@pt, "υπολοχαγός"@el, "فوجی افسر"@ur, "中尉"@ja ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:LifeCycleEvent + a owl:Class ; + rdfs:label "Lebenszyklus Ereignis"@de, "life cycle event"@en, "wordingsgebeurtenis"@nl, "دورانیہ حیات وقوعه"@ur ; + rdfs:subClassOf :Event ; + prov:wasDerivedFrom . + +:Ligament + a owl:Class ; + rdfs:label "Band (Anatomie)"@de, "bindweefsel"@nl, "ligament"@en, "ligament"@fr, "ligamento"@pt, "σύνδεσμος"@el, "بندهن"@ur, "靭帯"@ja ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q39888 ; + prov:wasDerivedFrom . + +:LightNovel + a owl:Class ; + rdfs:comment "A style of Japanese novel"@en, "جاپانی ناول کا ایک انداز"@ur ; + rdfs:label "Light novel"@de, "light novel"@en, "ανάλαφρο μυθιστόρημα"@el, "جاپانی افسانه"@ur, "ライトノベル"@ja ; + rdfs:subClassOf :Novel ; + owl:equivalentClass wikidata:Q747381 ; + prov:wasDerivedFrom . + +:Lighthouse + a owl:Class ; + rdfs:label "Leuchtturm"@de, "lighthouse"@en, "phare"@fr, "teach solais"@ga, "vuurtoren"@nl, "Φάρος"@el, "روشنی کا مینار"@ur, "灯台"@ja ; + rdfs:subClassOf :Tower ; + owl:equivalentClass wikidata:Q39715 ; + prov:wasDerivedFrom . + +:LineOfFashion + a owl:Class ; + rdfs:comment "A coherent type of clothing or dressing following a particular fashion"@en, "Een samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode."@nl, "ایک مربوط قسم کا لباس یا لباس کسی خاص فیشن کے بعد"@ur ; + rdfs:label "Modelinie"@de, "line of fashion"@en, "modelijn"@nl, "type de couture"@fr, "قطار رائج"@ur ; + rdfs:subClassOf :Work ; + prov:wasDerivedFrom . + +:Linguist + a owl:Class ; + rdfs:label "Sprachwissenschaftler"@de, "linguist"@en, "linguiste"@fr, "linguïst"@nl, "lingwista"@pl, "lingüista"@ca, "teangeolaí"@ga, "γλωσσολόγος"@el, "ماہر لسانیات"@ur, "言語学者"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q14467526 ; + prov:wasDerivedFrom . + +:Lipid + a owl:Class ; + rdfs:comment "Zijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelen"@nl, "چربی اور چکنائی والے مادے ہیں جو بائیو کیمسٹری میں اہم کردار ادا کرتے ہیں"@ur ; + rdfs:label "lipid"@de, "lipid"@en, "lipide"@fr, "lipide"@nl, "چربی"@ur, "脂質"@ja ; + rdfs:subClassOf :Biomolecule ; + prov:wasDerivedFrom . + +:List + a owl:Class ; + rdfs:comment "A general list of items."@en, "Een geordende verzameling objecten."@nl, "une liste d'éléments."@fr, "Μια γενική λίστα από αντικείμενα."@el, "اشیاء کی عمومی فہرست"@ur ; + rdfs:label "Liste"@de, "lijst"@nl, "liosta"@ga, "list"@en, "liste"@da, "liste"@fr, "λίστα"@el, "فہرست"@ur, "一覧"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass dul:Collection, ; + prov:wasDerivedFrom . + +:LiteraryGenre + a owl:Class ; + rdfs:comment "Genres of literature, e.g. Satire, Gothic"@en, "ادب کی انواع، جیسے طنزیہ، غیر مہذب"@ur ; + rdfs:label "Literaturgattung"@de, "genre littéraire"@fr, "literair genre"@nl, "literary genre"@en, "ادبی صنف"@ur ; + rdfs:subClassOf :Genre ; + prov:wasDerivedFrom . + +:Locality + a owl:Class ; + rdfs:label "Gegend"@de, "ceantar"@ga, "locality"@en, "localité"@fr, "streek"@nl, "τόπος"@el, "علاقہ"@ur, "地域"@ja ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q3257686 ; + prov:wasDerivedFrom . + +:Lock + a owl:Class ; + rdfs:label "Schleuse"@de, "glas"@ga, "lock"@en, "lås"@da, "sluis"@nl, "écluse"@fr, "κλειδαριά"@el, "تالا"@ur, "錠"@ja ; + rdfs:subClassOf :Infrastructure ; + prov:wasDerivedFrom . + +:Locomotive + a owl:Class ; + rdfs:label "Lokomotive"@de, "locomotief"@nl, "locomotive"@en, "locomotive"@fr, "traen"@ga, "κινητήριος"@el, "ریل گاڑی کا انجن"@ur, "機関車"@ja ; + rdfs:subClassOf :MeanOfTransportation, ; + owl:equivalentClass wikidata:Q93301 ; + prov:wasDerivedFrom . + +:LunarCrater + a owl:Class ; + rdfs:label "Mondkrater"@de, "cratera lunar"@pt, "cratère lunaire"@fr, "cráitéar gealaí"@ga, "lunar crater"@en, "maankrater"@nl, "Σεληνιακός κρατήρας"@el, "قمری گڑھا"@ur ; + rdfs:subClassOf :Crater ; + owl:equivalentClass wikidata:Q1348589 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :LunarCrater ; + rdfs:label "Durchmesser (km)"@de, "diameter (km)"@en, "diameter (km)"@nl, "diamètre (km)"@fr, "διάμετρος (km)"@el ; + rdfs:range . + +:Lymph + a owl:Class ; + rdfs:label "Lymphe"@de, "limfe"@ga, "lymfe"@nl, "lymph"@en, "lymphe"@fr, "λέμφος"@el, "سفید رنگ کے خلیوں پر مشتمل ایک بے رنگ سیال"@ur, "リンパ"@ja ; + rdfs:subClassOf :AnatomicalStructure ; + prov:wasDerivedFrom . + +:Magazine + a owl:Class ; + rdfs:comment "Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Prägungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden können."@de, "Magazines, periodicals, glossies or serials are publications, generally published on a regular schedule, containing a variety of articles. They are generally financed by advertising, by a purchase price, by pre-paid magazine subscriptions, or all three."@en, "Περιοδικά ή γυαλιστερές φωτογραφίες περιοδικών εκδόσεων δημοσιεύονται σε τακτά χρονικά διαστήματα, περιέχει μια ποικιλία από αντικείμενα.Γενικά χρηματοδοτείται από διαφημίσεις, με τιμή αγοράς, με προπληρωμένες συνδρομές περιοδικών, ή και των τριών."@el, "میگزین، میگزین، چمکیلی یا سیریل اشاعتیں ہیں، عام طور پر ایک باقاعدہ شیڈول پر شائع ہوتے ہیں، مختلف مضامین پر مشتمل ہوتے ہیں. انہیں عام طور پر اشتہارات، خریداری کی قیمت، پری پیڈ میگزین سبسکرپشنز، یا تینوں کے ذریعے مالی اعانت فراہم کی جاتی ہے۔."@ur ; + rdfs:label "Publikumszeitschrift"@de, "irisleabhar"@ga, "magazine"@en, "magazine"@fr, "tijdschrift"@nl, "Περιοδικό"@el, "رسالہ"@ur, "雑誌"@ja, "잡지"@ko ; + rdfs:subClassOf :PeriodicalLiterature ; + owl:equivalentClass wikidata:Q41298 ; + prov:wasDerivedFrom . + +:Mammal + a owl:Class ; + rdfs:label "mamach"@ga, "mammal"@en, "mammifero"@it, "mammifère"@fr, "mamífero"@es, "mamífero"@pt, "pattedyr"@da, "ssak"@pl, "säugetier"@de, "zoogdier"@nl, "θηλαστικό ζώο"@el, "تھن والے جانور"@ur, "哺乳類"@ja ; + rdfs:subClassOf :Animal ; + owl:disjointWith :Fish ; + owl:equivalentClass wikidata:Q7377 ; + prov:wasDerivedFrom . + +:Man + a owl:Class ; + rdfs:label "Homme"@fr, "Mand"@da, "Mann"@de, "Mens"@nl, "Mężczyzna"@pl, "Uomo"@it, "man"@en, "мужчина"@ru, "آدمی"@ur, "おとこ"@ja, "남자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q8441 ; + prov:wasDerivedFrom . + +:Manga + a owl:Class ; + rdfs:comment "Manga are comics created in Japan"@en, "Manga is het Japanse equivalent van het stripverhaal"@nl, "منگا جاپان میں تخلیق کردہ کامکس ہیں"@ur ; + rdfs:label "manga"@de, "manga"@en, "manga"@fr, "manga"@it, "manga"@nl, "κινούμενα σχέδια"@el, "مانگا"@ur, "日本の漫画"@ja ; + rdfs:subClassOf :Comic ; + owl:equivalentClass wikidata:Q8274 ; + prov:wasDerivedFrom . + +:Manhua + a owl:Class ; + rdfs:comment "Außerhalb Chinas wird der Begriff für Comics aus China verwendet."@de, "Bandes dessinées produites initialement en Chine"@fr, "Comics originally produced in China"@en, "Manhua is het Chinese equivalent van het stripverhaal"@nl, "Κόμικς που παράγονται αρχικά στην Κίνα"@el, "کامکس اصل میں چین میں تیار کیے گئے تھے"@ur ; + rdfs:label "manhua"@de, "manhua"@el, "manhua"@en, "manhua"@fr, "manhua"@nl, "مانہوا"@ur, "中国の漫画"@ja ; + rdfs:subClassOf :Comic ; + owl:equivalentClass wikidata:Q754669 ; + prov:wasDerivedFrom . + +:Manhwa + a owl:Class ; + rdfs:comment "Korean term for comics and print cartoons"@en, "Manhua is het Koreaanse equivalent van het stripverhaal"@nl, "ist die in der westlichen Welt verbreitete Bezeichnung für Comics aus Südkorea."@de, "Κορεάτικος όρος για τα κόμικς και τα κινούμενα σχέδια εκτύπωσης"@el, "مزاحیہ اور پرنٹ کارٹونز کے لیے کورین اصطلاح"@ur ; + rdfs:label "manhwa"@de, "manhwa"@el, "manhwa"@en, "manhwa"@nl, "منحوا"@ur, "韓国の漫画"@ja ; + rdfs:subClassOf :Comic ; + owl:equivalentClass wikidata:Q562214 ; + prov:wasDerivedFrom . + +:Manor + a owl:Class ; + rdfs:comment "Estate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds"@en ; + rdfs:label "Grundherrschaft"@de, "Heerlijkheid"@nl, "Manor"@en, "Seigneurie"@fr, "جاگیر"@ur ; + rdfs:subClassOf :HistoricalAreaOfAuthority ; + prov:wasDerivedFrom . + +:MartialArtist + a owl:Class ; + rdfs:label "Kampfkünstler"@de, "martial artist"@en, "Πολεμικός Καλλιτέχνης"@el, "مارشل کے فنکار"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:MathematicalConcept + a owl:Class ; + rdfs:comment "Concepts mathématiques tels que les nombres de Fibonacci, les nombres imaginaires, la symétrie"@fr, "Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry"@en, "ریاضی کے تصورات، جیسے فبونیکی نمبرز، خیالی نمبرز، سمیٹری"@ur ; + rdfs:label "Mathematical concept"@en, "concept mathématique"@fr, "mathematisches Konzept"@de, "wiskundig concept"@nl, "ریاضیاتی تصور"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:Mayor + a owl:Class ; + rdfs:label "Bürgermeister"@de, "burgemeester"@nl, "maire"@fr, "mayor"@en, "δήμαρχος"@el, "شہر کا منتظم"@ur, "ከንቲባ"@am, "首長"@ja ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q30185 ; + prov:wasDerivedFrom . + +:MeanOfTransportation + a owl:Class ; + rdfs:label "Moyen de transport"@fr, "Transportmittel"@de, "mean of transportation"@en, "vervoermiddel"@nl, "μεταφορικό μέσο"@el, "نقل و حمل کے ذرائع"@ur ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:Media + a owl:Class ; + rdfs:comment "canaux d'enregistrement et de transmission ou outils utilisés pour enregistrer et fournir des informations ou des données"@fr, "storage and transmission channels or tools used to store and deliver information or data"@en, "ذخیرہ اور منتقلی چینلز یااوزار جو معلومات یا ڈیٹا کو ذخیرہ کرنے اور پہنچانے کے لیے استعمال ہوتے ہیں۔"@ur ; + rdfs:label "Medien"@de, "media"@en, "media"@nl, "meáin"@ga, "média"@fr, "μέσα ενημέρωσης"@el, "مواصلات"@ur, "媒体"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q340169 ; + prov:wasDerivedFrom . + +:MedicalSpecialty + a owl:Class ; + rdfs:label "medical specialty"@en, "medisch specialisme"@nl, "medizinisches Fachgebiet"@de, "specializzazione medica"@it, "spécialité médicale"@fr, "ιατρική ειδικότητα"@el, "طبی مہارت"@ur, "診療科"@ja, "진료과"@ko ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q930752 ; + prov:wasDerivedFrom . + +:Medician + a owl:Class ; + rdfs:label "Mediziner"@de, "medician"@en, "medico"@it, "medicus"@nl, "γιατρός"@el, "طبیب"@ur, "生命医科学研究者または医師"@ja ; + rdfs:subClassOf :Scientist ; + prov:wasDerivedFrom . + +:Medicine + a owl:Class ; + rdfs:comment "The science and art of healing the human body and identifying the causes of disease"@en, "انسانی جسم کو ٹھیک کرنے اور بیماری کی وجوہات کی نشاندہی کرنے کا سائنس اور فن"@ur ; + rdfs:label "Medicine"@en, "Medizin"@de, "geneeskunde"@nl, "médecine"@fr, "دوائی"@ur, "医学"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q11190 ; + prov:wasDerivedFrom . + +:Meeting + a owl:Class ; + rdfs:comment "A regular or irregular meeting of people as an event to keep record of"@en, "ریکارڈ رکھنے کے لیے ایک تقریب کے طور پر لوگوں کی باقاعدہ یا بے قاعدہ ملاقات"@ur ; + rdfs:label "Treffen"@de, "cruinniú"@ga, "meeting"@en, "réunion"@fr, "vergadering"@nl, "συνάντηση"@el, "ملاقات"@ur, "会議"@ja ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass wikidata:Q2761147 ; + prov:wasDerivedFrom . + +:MemberOfParliament + a owl:Class ; + rdfs:label "Parlamentsmitglied"@de, "member of parliament"@en, "membre du Parlement"@fr, "membro do parlamento"@pt, "parlementslid"@nl, "Μέλος κοινοβουλίου"@el, "رکن پارلیمنٹ"@ur ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q486839 ; + prov:wasDerivedFrom . + +:MemberResistanceMovement + a owl:Class ; + rdfs:label "Member of a Resistance Movement"@en, "Membre d'une organisation de résistance"@fr, "Mitglied einer Widerstandorganisation"@de, "lid van een verzetsorganisatie"@nl, "مزاحمتی تحریک کے رکن"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Memorial + a owl:Class ; + rdfs:comment "A monument erected to commemorate a person, an event and/or group. In the case of a person, this might be a grave or tomb."@en, "ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو"@ur ; + rdfs:label "Denkmal"@de, "gedenkteken"@nl, "memorial"@en, "mémorial"@fr, "μνημείο"@el, "یادگار"@ur, "記念碑"@ja ; + rdfs:subClassOf :Monument ; + prov:wasDerivedFrom . + +:MetroStation + a owl:Class ; + rdfs:comment "Η στάση μετρό χρησιμοποιείται συνήθως για μια τοποθεσία ή σημείο όπου σταματάει το μεταφορικό μέσο μετρό"@el ; + rdfs:label "U-Bahn Station"@de, "metrostation"@nl, "station de métro"@fr, "subway station"@en, "στάση μετρό"@el, "زمین دوز برقی ریل کا اڈہ"@ur ; + rdfs:subClassOf :Station ; + owl:equivalentClass wikidata:Q928830 ; + prov:wasDerivedFrom . + +:MicroRegion + a owl:Class ; + rdfs:comment "A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community"@en, "Une microrégion est - principalement du point de vue statistique - une région du Brésil, qui se trouve à un niveau administratif entre la mésorégion et la communauté"@fr, "Η μικρο-περιφέρεια χρησιμοποιείται για να περιγράψει, κυρίως στατιστικά, μια περιοχή στη Βραζιλία σε διοικητικό επίπεδο μεταξύ μίας μεσο-περιφέρειας και μίας κοινότητα"@el, "مائیکرو ریجن برازیل میں ایک - بنیادی شماریاتی - خطہ ہے، انتظامی سطح پر ایک میسو ریجن اور کمیونٹی کے درمیان"@ur ; + rdfs:label "Mikroregion"@de, "micro-region"@en, "micro-région"@fr, "microregio"@nl, "microrregiao"@pt, "μικρο-περιφέρεια"@el, "چھوٹاعلاقہ"@ur ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:MilitaryAircraft + a owl:Class ; + rdfs:label "Militärmaschine"@de, "avion militaire"@fr, "legervliegtuig"@nl, "military aircraft"@en, "فوجی ہوائی جہاز"@ur ; + rdfs:subClassOf :Aircraft ; + prov:wasDerivedFrom . + +:MilitaryConflict + a owl:Class ; + rdfs:label "conflit militaire"@fr, "militair conflict"@nl, "military conflict"@en, "militärischer Konflikt"@de, "militær konflikt"@da, "στρατιωτική σύγκρουση"@el, "فوجی تنازعہ"@ur, "전쟁"@ko ; + rdfs:subClassOf :SocietalEvent ; + prov:wasDerivedFrom . + +:MilitaryPerson + a owl:Class ; + rdfs:label "militair"@nl, "militaire"@fr, "militare"@it, "military person"@en, "militärische Person"@de, "στρατιωτικός"@el, "فوجی شخص"@ur, "軍人"@ja, "군인"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:MilitaryService + a owl:Class ; + rdfs:label "Militärdienst"@de, "military service"@en, "service militaire"@fr, "فوجی خدمات"@ur ; + rdfs:subClassOf :CareerStation ; + prov:wasDerivedFrom . + +:MilitaryStructure + a owl:Class ; + rdfs:comment "A military structure such as a Castle, Fortress, Wall, etc."@en, "Une structure miltaire telle qu'un château, une forteresse, des remparts, etc."@fr, "ایک فوجی ڈھانچہ جیسے قلعہ اور دیوار وغیرہ"@ur ; + rdfs:label "militair bouwwerk"@nl, "military structure"@en, "militärisches Bauwerk"@de, "structure militaire"@fr, "Στρατιωτική Δομή"@el, "فوجی ڈھانچہ"@ur, "군사 건축물"@ko ; + rdfs:subClassOf :ArchitecturalStructure ; + prov:wasDerivedFrom . + +:MilitaryUnit + a owl:Class ; + rdfs:label "Militäreinheit"@de, "militaire eenheid"@nl, "military unit"@en, "unidad militar"@es, "unidade militar"@pt, "unité militaire"@fr, "Στρατιωτική Μονάδα"@el, "فوجی یونٹ"@ur, "군대"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q176799 ; + prov:wasDerivedFrom . + +:MilitaryVehicle + a owl:Class ; + rdfs:label "Militärfahrzeug"@de, "legervoertuig"@nl, "military vehicle"@en, "véhicule militaire"@fr, "فوجی گاڑی"@ur ; + rdfs:subClassOf :MeanOfTransportation, ; + prov:wasDerivedFrom . + +:Mill + a owl:Class ; + rdfs:comment "a unit operation designed to break a solid material into smaller pieces"@en, "ایک یونٹ آپریشن جو ٹھوس مواد کو چھوٹے ٹکڑوں میں توڑنے کے لیے ڈیزائن کیا گیا ہے۔"@ur ; + rdfs:label "Mill"@en, "Molen"@nl, "Moulin"@fr, "Mühle"@de, "muileann"@ga, "mulino"@it, "mølle"@da, "Μύλος"@el, "چکی"@ur, "粉砕機"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q44494 ; + prov:wasDerivedFrom . + +:Mine + a owl:Class ; + rdfs:comment "A mine is a place where mineral resources are or were extracted"@en, "Een mijn is een plaats waar delfstoffen worden of werden gewonnen"@nl, "Une mine est un endroit où des ressources minérales sont, ou ont été extraites."@fr, "کان ایک ایسی جگہ ہے جہاں معدنی وسائل ہیں یا نکالے گئے ہیں۔"@ur ; + rdfs:label "Mine (Bergwerk)"@de, "mijn (delfstoffen))"@nl, "mine"@en, "mine"@fr, "کان"@ur, "鉱山"@ja ; + rdfs:subClassOf :Place ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:Mineral + a owl:Class ; + rdfs:comment "A naturally occurring solid chemical substance."@en, "Corpi naturali inorganici, in genere solidi."@it, "قدرتی طور پر پائے جانے والا ٹھوس کیمیائی مادہ"@ur ; + rdfs:label "mineraal"@nl, "mineral"@de, "mineral"@en, "minerale"@it, "minéral"@fr, "ορυκτό"@el, "معدنیات"@ur, "鉱物"@ja, "광물"@ko ; + rdfs:subClassOf :ChemicalSubstance ; + owl:equivalentClass wikidata:Q7946 ; + prov:wasDerivedFrom . + +:Minister + a owl:Class ; + rdfs:label "Minister"@de, "minister"@en, "minister"@nl, "ministre"@fr, "وزیر"@ur ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:MixedMartialArtsEvent + a owl:Class ; + rdfs:label "Mixed Kampfkunst Veranstaltung"@de, "imeacht ealaíona comhraic measctha"@ga, "mixed martial arts event"@en, "évènement d'arts martiaux mixtes"@fr, "مخلوط جنگ جو آرٹس تقریب"@ur ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:MixedMartialArtsLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Mixed Martial Arts"@en, "کھیلوں کی ٹیموں کا ایک گروپ جو مخلوط مارشل آرٹس میں ایک دوسرے سے مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Mixed Kampfkunst Liga"@de, "ligue d'arts martiaux mixtes"@fr, "mixed martial arts league"@en, "sraith ealaíona comhraic measctha"@ga, "مخلوط مارشل آرٹس کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:MobilePhone + a owl:Class ; + rdfs:label "Mobiltelefon (Handy)"@de, "mobiele telefoon"@nl, "mobile phone"@en, "telefon komórkowy"@pl, "telefono cellulare"@it, "téléphone mobile"@fr, "сотавы тэлефон"@be, "сотовый телефон"@ru, "موبائل فون"@ur ; + rdfs:subClassOf :Device ; + owl:equivalentClass wikidata:Q17517 ; + prov:wasDerivedFrom . + +:Model + a owl:Class ; + rdfs:label "(foto)model"@nl, "mainicín"@ga, "mannequin"@fr, "model"@de, "model"@en, "μοντέλο"@el, "نمائش کرنے والا"@ur, "モデル_(職業)"@ja, "모델"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q4610556 ; + prov:wasDerivedFrom . + +:Mollusca + a owl:Class ; + rdfs:comment "Τα μαλάκια αποτελούν μια τεράστια συνομοταξία ζώων, την πολυπληθέστερη μετά τα αρθρόποδα, με πάνω από 100.000 είδη."@el ; + rdfs:label "Weichtiere"@de, "mollusca"@en, "mollusque"@fr, "weekdier"@nl, "μαλάκια"@el, "ریڑھ کی ہڈی کے بغیر جانور"@ur, "軟体動物"@ja ; + rdfs:subClassOf :Animal ; + owl:equivalentClass wikidata:Q25326 ; + prov:wasDerivedFrom . + +:Monarch + a owl:Class ; + rdfs:label "monarca"@es, "monarca"@it, "monarch"@de, "monarch"@en, "monarch"@nl, "monark"@da, "monarque"@fr, "μονάρχης"@el, "بادشاہ"@ur, "君主"@ja, "군주"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q116 ; + prov:wasDerivedFrom . + +:Monastery + a owl:Class ; + rdfs:comment "Een klooster (van het Latijnse claustrum, afgesloten ruimte) is een gebouw of een samenstel van gebouwen dat dient tot huisvesting van een groep of gemeenschap van mannen of vrouwen, vaak monniken of monialen genoemd, die zich uit de wereld heeft teruggetrokken om een godsdienstig leven te leiden."@nl, "Is pobal manaigh ina gcónaí faoi móideanna reiligiúnach í mainistir."@ga, "Klasztor – budynek lub zespół budynków, w którym mieszkają wspólnoty religijne zakonników albo zakonnic."@pl, "Le monastère est un ensemble de bâtiments où habite une communauté religieuse de moines ou de moniales.."@fr, "Monastery denotes the building, or complex of buildings, comprising the domestic quarters and workplace(s) of monastics, whether monks or nuns, and whether living in community or alone (hermits). The monastery generally includes a place reserved for prayer which may be a chapel, church or temple, and may also serve as an oratory."@en, "Un monestir és un tipus d'edificació per a la reclusió dels religiosos, que hi viuen en comú. Originàriament un monestir era la cel·la d'un sol monjo, dit en aquest cas ermità o anacoreta."@ca, "Μονή υποδηλώνει το κτίριο ή συγκρότημα κτιρίων, που αποτελείται από τις εγχώρια τρίμηνα και στο χώρο εργασίας (ες) των μοναχών, αν οι μοναχοί ή μοναχές, και αν ζουν στην κοινότητα ή μεμονωμένα (ερημίτες). Η μονή περιλαμβάνει γενικά ένα χώρο που προορίζεται για την προσευχή που μπορεί να είναι ένα παρεκκλήσι, εκκλησία ή ναό, και μπορεί επίσης να χρησιμεύσει ως μια ρητορική."@el, "خانقاہ عمارت، یا عمارتوں کے کمپلیکس کی نشاندہی کرتی ہے، جس میں خانقاہوں کے گھریلو کوارٹرز اور کام کی جگہیں شامل ہیں، چاہے وہ راہب ہوں یا راہبائیں، اور چاہے وہ برادری میں رہ رہے ہوں یا اکیلے (حرمت والے)۔ خانقاہ میں عام طور پر نماز کے لیے مخصوص جگہ شامل ہوتی ہے جو ایک چیپل، گرجا گھر یا مندر ہو سکتا ہے، اور ایک تقریر کے طور پر بھی کام کر سکتا ہے۔"@ur ; + rdfs:label "Kloster"@de, "klasztor"@pl, "klooster"@nl, "kloster"@da, "mainistir"@ga, "monastery"@en, "monastère"@fr, "monestir"@ca, "μοναστήρι"@el, "خانقاہ"@ur, "僧院"@ja ; + rdfs:subClassOf :ReligiousBuilding ; + owl:equivalentClass d0:Location, wikidata:Q44613 ; + prov:wasDerivedFrom . + +:MonoclonalAntibody + a owl:Class ; + rdfs:comment "Medikamente welche monoklonale Antikörper sind"@en, "وہ دوائیں جو ایک مونوکلونل دافِع جِسم ہیں۔‎‎"@ur ; + rdfs:label "monoclonal antibody"@en, "monoclonal anticorps"@fr, "monoklonaler Antikörper"@de, "مونوکلونل دافِع جِسم"@ur ; + rdfs:subClassOf :Drug ; + prov:wasDerivedFrom . + +:Monument + a owl:Class ; + rdfs:comment "A type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature."@en, "ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو۔"@ur ; + rdfs:label "Denkmal"@de, "monument"@en, "monument"@fr, "monument"@nl, "séadchomhartha"@ga, "μνημείο"@el, "یادگار"@ur, "モニュメント"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q4989906 ; + prov:wasDerivedFrom . + +:Mosque + a owl:Class ; + rdfs:comment "A mosque, sometimes spelt mosk, is a place of worship for followers of Islam."@en, "Is áit adhartha na Moslamach, lucht leanúna an reiligiúin Ioslam, é mosc"@ga, "Meczet – miejsce kultu muzułmańskiego"@pl, "Une mosquée est un lieu de culte où se rassemblent les musulmans pour les prières communes."@fr, "Το τζαμί είναι ο τόπος λατρείας των Μουσουλμάνων."@el, "ایک مسجد اسلام کے پیروکاروں کے لیے عبادت گاہ ہے۔"@ur ; + rdfs:label "Moschee"@de, "meczet"@pl, "mezquita"@es, "mosc"@ga, "moskee"@nl, "mosque"@en, "mosquée"@fr, "τζαμί"@el, "مسجد"@ur, "モスク"@ja ; + rdfs:subClassOf :ReligiousBuilding ; + owl:equivalentClass wikidata:Q32815 ; + prov:wasDerivedFrom . + +:Moss + a owl:Class ; + rdfs:label "Laubmoss"@de, "caonach"@ga, "moss"@en, "mossen"@nl, "mousses"@fr, "muschio"@it, "βρύο"@el, "کائی"@ur, "蘚類"@ja ; + rdfs:subClassOf :Plant ; + prov:wasDerivedFrom . + +:MotocycleRacer + a owl:Class ; + rdfs:label "Motorrad-Rennfahrer"@de, "motocycle racer"@en, "motorcoureur"@nl, "οδηγός αγώνων μοτοσυκλέτας"@el, "موٹر سائیکل دوڑانے والا"@ur ; + rdfs:subClassOf :MotorcycleRider ; + prov:wasDerivedFrom . + +:MotorRace + a owl:Class ; + rdfs:label "Motorradrennen"@de, "motor race"@en, "motorwedstrijd"@nl, "کار دوڑ"@ur ; + rdfs:subClassOf :Race ; + prov:wasDerivedFrom . + +:Motorcycle + a owl:Class ; + rdfs:label "Motorrad"@de, "gluaisrothar"@ga, "moto"@fr, "motocicletta"@it, "motorcycle"@en, "motorfiets"@nl, "μοτοσυκλέτα"@el, "موٹر سائیکل"@ur ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q34493 ; + prov:wasDerivedFrom . + +:MotorcycleRacingLeague + a owl:Class ; + rdfs:comment "a group of sports teams or bikerider that compete against each other in Motorcycle Racing"@en, "کھیلوں کی ٹیموں یا بائیک سواروں کا ایک گروپ جو موٹر سائیکل ریسنگ میں ایک دوسرے سے مقابلہ کرتے ہیں"@ur ; + rdfs:label "motorcycle racing league"@en, "موٹر سائیکل ریسنگ لیگ"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:MotorcycleRider + a owl:Class ; + rdfs:label "Motorradfahrer"@de, "motorcycle rider"@en, "motorrijder"@nl, "μοτοσυκλετιστής"@el, "موٹر سائیکل سوار"@ur ; + rdfs:subClassOf :MotorsportRacer ; + prov:wasDerivedFrom . + +:MotorsportRacer + a owl:Class ; + rdfs:label "Motorsport Fahrer"@de, "motorsport racer"@en, "motorsport renner"@nl, "οδηγός αγώνων"@el, "موٹر کھیل میں گاڑی دوڑانے والا"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:MotorsportSeason + a owl:Class ; + rdfs:label "Motorsportsaison"@de, "motorsport season"@en, "motorsportseizoen"@nl, "موٹر کھیل کا موسم"@ur ; + rdfs:subClassOf :SportsSeason ; + prov:wasDerivedFrom . + +:Mountain + a owl:Class ; + rdfs:label "Berg"@de, "berg"@nl, "montagne"@fr, "montanha"@pt, "mountain"@en, "sliabh"@ga, "Βουνό"@el, "پہاڑ"@ur, "ተራራ"@am, "山"@ja, "山"@zh, "산"@ko ; + rdfs:subClassOf :NaturalPlace ; + owl:disjointWith :Person ; + owl:equivalentClass , wikidata:Q8502 ; + prov:wasDerivedFrom . + +:MountainPass + a owl:Class ; + rdfs:comment "a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation"@en, "ایک راستہ جو پہاڑی سلسلہ کو عبور کرنے کی اجازت دیتا ہے۔ یہ عام طور پر اونچی اونچائی کے دو علاقوں کے درمیان ایک سیڈل پوائنٹ ہوتا ہے"@ur ; + rdfs:label "Bergpass"@de, "bergpas"@nl, "col de montagne"@fr, "desfiladeiro"@pt, "mountain pass"@en, "Πέρασμα βουνού"@el, "درہ"@ur, "峠"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q133056 ; + prov:wasDerivedFrom . + +:MountainRange + a owl:Class ; + rdfs:comment "a chain of mountains bordered by highlands or separated from other mountains by passes or valleys."@en, "پہاڑوں کی ایک زنجیر جو پہاڑوں سے متصل ہے یا دوسرے پہاڑوں سے راستوں یا وادیوں سے الگ ہے۔."@ur ; + rdfs:label "Bergkette"@de, "bergketen"@nl, "cadeia montanhosa"@pt, "chaîne de montagne"@fr, "mountain range"@en, "Οροσειρά"@el, "پہاڑی سلسلہ"@ur, "산맥"@ko ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q46831 ; + prov:wasDerivedFrom . + +:MouseGene + a owl:Class ; + rdfs:label "MouseGene"@en, "چوہے کا نَسبہ"@ur ; + rdfs:subClassOf ; + prov:wasDerivedFrom . + +:MouseGeneLocation + a owl:Class ; + rdfs:label "Mausgenom Lokation"@de, "MouseGeneLocation"@en, "muisgenoom locatie"@nl, "چوہے کے نَسبہ کا مقام"@ur, "マウス遺伝子座"@ja ; + rdfs:subClassOf :GeneLocation ; + prov:wasDerivedFrom . + +:MovieDirector + a owl:Class ; + rdfs:comment "a person who oversees making of film."@en, "ایک شخص جو فلم بنانے کی نگرانی کرتا ہے"@ur ; + rdfs:label "Filmregisseur"@de, "Movie director"@en, "regisseur"@nl, "réalisateur de film"@fr, "stiúrthóir scannáin"@ga, "فلم کا ہدایت کار"@ur ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q2526255 ; + prov:wasDerivedFrom . + +:MovieGenre + a owl:Class ; + rdfs:label "Filmgenre"@de, "filmgenre"@nl, "genre de film"@fr, "movie genre"@en, "seánra scannáin"@ga, "είδος ταινίας"@el, "فلم کی صنف"@ur ; + rdfs:subClassOf :Genre ; + prov:wasDerivedFrom . + +:MovingImage + a owl:Class ; + rdfs:comment "A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage"@en, "ایک بصری دستاویز جس کا مقصد متحرک ہونا ہے"@ur ; + rdfs:label "Bewegtbilder"@de, "bewegend beeld"@nl, "moving image"@en, "متحرک فلم"@ur ; + rdfs:subClassOf :Image ; + prov:wasDerivedFrom . + +:MovingWalkway + a owl:Class ; + rdfs:label "Rollsteig"@de, "rolpad"@nl, "travellator"@en, "حرکت پذیر پیدل چلنے کا راستہ"@ur ; + rdfs:subClassOf :On-SiteTransportation ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :MovingWalkway ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:MultiVolumePublication + a owl:Class ; + rdfs:label "meerdelige publicatie"@nl, "mehrbändige Publikation"@de, "multi volume publication"@en, "publication en plusieurs volumes"@fr, "کثیر حجم کی اشاعت"@ur ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:Municipality + a owl:Class ; + rdfs:comment "An administrative body governing a territorial unity on the lower level, administering one or a few more settlements"@en, "Un Municipio es el ente local definido en el artículo 140 de la Constitución española y la entidad básica de la organización territorial del Estado según el artículo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del Régimen Local. Tiene personalidad jurídica y plena capacidad para el cumplimiento de sus fines. La delimitación territorial de Municipio está recogida del REgistro Central de Cartografía del IGN"@es, "Δήμος ονομάζεται μία οντότητα της δημόσιας διοίκησης, η οποία στα περισσότερα κράτη αποτελεί τη βασική αυτοδιοικητική μονάδα και κατά κανόνα περιλαμβάνει μια πόλη ή κωμόπολη και τα γύρω χωριά της."@el, "ایک انتظامی ادارہ جو نچلی سطح پر علاقائی اتحاد کو کنٹرول کرتا ہے، ایک یا چند مزید بستیوں کا انتظام کرتا ہے"@ur ; + rdfs:label "Gemeinde"@de, "commune"@fr, "gemeente"@nl, "municipality"@en, "municipio"@es, "δήμος"@el, "بلدیہ"@ur, "基礎自治体"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Murderer + a owl:Class ; + rdfs:label "Mörder"@de, "assasino"@it, "assassin"@fr, "dúnmharfóir"@ga, "moordenaar"@nl, "murderer"@en, "δολοφόνος"@el, "قاتل"@ur, "殺人"@ja, "연쇄 살인자"@ko ; + rdfs:subClassOf :Criminal ; + owl:equivalentClass wikidata:Q16266334 ; + prov:wasDerivedFrom . + +:Muscle + a owl:Class ; + rdfs:label "Muskel"@de, "matán"@ga, "muscle"@en, "muscle"@fr, "spier"@nl, "μυς"@el, "پٹھوں"@ur, "筋肉"@ja ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q7365 ; + prov:wasDerivedFrom . + +:Museum + a owl:Class ; + rdfs:label "Museum"@de, "museu"@pt, "museum"@en, "museum"@nl, "musée"@fr, "muzeum"@pl, "músaem"@ga, "μουσείο"@el, "عجائب گھر"@ur, "博物館"@ja, "박물관"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q33506 ; + prov:wasDerivedFrom . + +:MusicComposer + a owl:Class ; + rdfs:comment "a person who creates music."@en, "ایک شخص جو موسیقی تخلیق کرتا ہے"@ur ; + rdfs:label "Komponist"@de, "componist"@nl, "compositeur"@fr, "music composer"@en, "موسیقی بنانے والا"@ur ; + rdfs:subClassOf :Writer ; + prov:wasDerivedFrom . + +:MusicDirector + a owl:Class ; + rdfs:comment "A person who is the director of an orchestra or concert band."@en, "ایک شخص جو سازینہ یا موسیقی بجانے والوں کا گروہ کا رہنما ہے"@ur ; + rdfs:label "Dirigent"@de, "chef d'orchestre"@fr, "dirigent"@nl, "music director"@en, "موسیقی کا رہنما"@ur ; + rdfs:subClassOf :MusicalArtist ; + owl:equivalentClass wikidata:Q1198887 ; + prov:wasDerivedFrom . + +:MusicFestival + a owl:Class ; + rdfs:label "Musikfestival"@de, "festival de musique"@fr, "festival de música"@es, "music festival"@en, "muziekfestival"@nl, "φεστιβάλ μουσικής"@el, "موسیقی میلہ"@ur, "음악제"@ko ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass , wikidata:Q868557 ; + prov:wasDerivedFrom . + +:MusicGenre + a owl:Class ; + rdfs:label "genere musicale"@it, "genre (muziek)"@nl, "genre musical"@fr, "género musical"@pt, "music genre"@en, "musik genre"@de, "μουσικό είδος"@el, "موسیقی کی صنف"@ur, "음악 장르"@ko ; + rdfs:subClassOf :Genre ; + owl:equivalentClass wikidata:Q188451 ; + prov:wasDerivedFrom . + +:Musical + a owl:Class ; + rdfs:label "Musical"@de, "musical"@en, "musical"@nl, "musique"@fr, "μουσικός"@el, "موسیقی کا"@ur, "ミュージカル"@ja, "뮤지컬"@ko ; + rdfs:subClassOf :MusicalWork ; + owl:equivalentClass wikidata:Q2743 ; + prov:wasDerivedFrom . + +:MusicalArtist + a owl:Class ; + rdfs:label "artista musical"@pt, "musical artist"@en, "musicien"@fr, "musikalischer Künstler"@de, "muziekartiest"@nl, "μουσικός"@el, "موسیقی کا فنکار"@ur, "የሙዚቃ አርቲስት"@am, "音楽家"@ja, "음악가"@ko ; + rdfs:subClassOf :Artist, , dul:NaturalPerson ; + prov:wasDerivedFrom . + +:MusicalWork + a owl:Class ; + rdfs:label "musical work"@en, "musikalisches Werk"@de, "opera musicale"@it, "œuvre musicale"@fr, "μουσικό έργο"@el, "موسیقی کا کام"@ur ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q2188189 ; + prov:wasDerivedFrom . + +:MythologicalFigure + a owl:Class ; + rdfs:label "figura mitologica"@it, "mythological figure"@en, "mythologisch figuur"@nl, "mythologische Gestalt"@de, "personnage mythologique"@fr, "μυθικό πλάσμα"@el, "افسانوی شکل"@ur ; + rdfs:subClassOf :FictionalCharacter ; + owl:equivalentClass wikidata:Q15410431 ; + prov:wasDerivedFrom . + +:NCAATeamSeason + a owl:Class ; + rdfs:label "NCAA Team Saison"@de, "NCAA team seizoen"@nl, "national collegiate athletic association team season"@en, "قومی کالج ورزش انجمن کاموسم"@ur ; + rdfs:subClassOf :SportsTeamSeason ; + prov:wasDerivedFrom . + +:Name + a owl:Class ; + rdfs:label "Name"@de, "ainm"@ga, "naam"@nl, "name"@en, "nazwa"@pl, "nom"@fr, "nome"@pt, "όνομα"@el, "نام"@ur, "名前"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q82799 ; + prov:wasDerivedFrom . + +:NarutoCharacter + a owl:Class ; + rdfs:label "Naruto Charakter"@de, "carachtar naruto"@ga, "naruto character"@en, "personage in Naruto"@nl, "افسانوی کردار"@ur ; + rdfs:subClassOf :FictionalCharacter ; + prov:wasDerivedFrom . + +:NascarDriver + a owl:Class ; + rdfs:label "NASCAR Fahrer"@de, "nascar coureur"@nl, "nascar driver"@en, "pilote de la nascar"@fr, "οδηγός αγώνων nascar"@el, "نیسکار ڈرائیور"@ur ; + rdfs:subClassOf :RacingDriver ; + prov:wasDerivedFrom . + +:NationalAnthem + a owl:Class ; + rdfs:comment "Patriotic musical composition which is the offcial national song."@en, "محب وطن موسیقی کی ساخت جو سرکاری قومی گانا ہے۔"@ur ; + rdfs:label "Hymne national"@fr, "National anthem"@en, "Nationalhymne"@de, "amhrán náisiúnta"@ga, "volkslied"@nl, "قومی ترانہ"@ur ; + rdfs:subClassOf :MusicalWork ; + owl:equivalentClass wikidata:Q23691 ; + prov:wasDerivedFrom . + +:NationalCollegiateAthleticAssociationAthlete + a owl:Class ; + rdfs:label "NCAA"@de, "National Collegiate Athletic Association atleet"@nl, "athlète de la national collegiate athletic association"@fr, "lúthchleasaí sa National Collegiate Athletic Association"@ga, "national collegiate athletic association athlete"@en, "قومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:NationalFootballLeagueEvent + a owl:Class ; + rdfs:label "NFL Game day"@de, "national football league event"@en, "قومی فٹ بال انجمن تقریب"@ur ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:NationalFootballLeagueSeason + a owl:Class ; + rdfs:label "NFL Saison"@de, "national football league season"@en, "قومی فٹ بال لیگ کا موسم"@ur ; + rdfs:subClassOf :FootballLeagueSeason ; + prov:wasDerivedFrom . + +:NationalSoccerClub + a owl:Class ; + rdfs:label "milli takım"@tr, "national soccer club"@en, "nationale voetbalclub"@nl, "nationaler Fußballverein"@de, "قومی فٹ بال تنظیم"@ur ; + rdfs:subClassOf :SoccerClub ; + prov:wasDerivedFrom . + +:NaturalEvent + a owl:Class ; + rdfs:comment "Το φυσικό γεγονός χρησιμοποιείται για να περιγράψει ένα συμβάν που πραγματοποιείται φυσικά"@el, "مادی تقریب کا استعمال قدرتی طور پر رونما ہونے والے واقعے کو بیان کرنے کے لیے کیا جاتا ہے۔"@ur ; + rdfs:label "Naturereignis"@de, "evento naturale"@it, "gebeurtenis in de natuur"@nl, "natural event"@en, "événement naturel"@fr, "φυσικό γεγονός"@el, "قدرتی واقعہ"@ur ; + rdfs:subClassOf :Event ; + prov:wasDerivedFrom . + +:NaturalPlace + a owl:Class ; + rdfs:comment "Der natürlicher Ort beinhaltet alle Orte die natürlicherweise im Universum existieren."@de, "The natural place encompasses all places occurring naturally in universe."@en, "Η φυσική θέση ερμηνεύει όλα τα σημεία που απαντώνται φυσικά στο σύμπαν"@el, "قدرتی جگہ کائنات میں قدرتی طور پر پائے جانے والے تمام مقامات پر محیط ہے۔"@ur ; + rdfs:label "lieu naturel"@fr, "lugar natural"@pt, "natural place"@en, "natuurgebied"@nl, "natürlicher Ort"@de, "φυσική θέση"@el, "قدرتی جگہ"@ur ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + +:NaturalRegion + a owl:Class ; + rdfs:comment "H φυσική περιοχή χρησιμοποιείται για να περιγράψει την έκταση μιας γεωγραφικής περιοχής στην οποία η ανθρωπογενής παρέμβαση είναι ανύπαρκτη μέχρι ελάχιστη"@el, "قدرتی رقبہ کا استعمال کسی جغرافیائی علاقے کی حد کو بیان کرنے کے لیے کیا جاتا ہے جس میں بشریات کی مداخلت کم از کم موجود نہیں ہوتی"@ur ; + rdfs:label "Naturraum"@de, "natural region"@en, "natuurlijke regio"@nl, "région naturelle"@fr, "φυσική περιοχή"@el, "قدرتی علاقہ"@ur ; + rdfs:subClassOf :Region ; + owl:equivalentClass wikidata:Q1970725 ; + prov:wasDerivedFrom . + +:Nebula + a owl:Class ; + rdfs:label "Nebula"@en, "Nébuleuse"@fr, "Туманность"@ru, "آنکھ کا جالا"@ur ; + rdfs:subClassOf :CelestialBody ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:Nerve + a owl:Class ; + rdfs:label "Nerv"@de, "nerf"@fr, "nerve"@en, "néaróg"@ga, "zenuw"@nl, "νεύρο"@el, "اعصاب"@ur, "神経"@ja ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q9620 ; + prov:wasDerivedFrom . + +:NetballPlayer + a owl:Class ; + rdfs:label "Korbballspieler"@de, "giocatore di netball"@it, "korfbalspeler"@nl, "netball player"@en, "نیٹ بال کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Newspaper + a owl:Class ; + rdfs:comment "A newspaper is a regularly scheduled publication containing news of current events, informative articles, diverse features and advertising. It usually is printed on relatively inexpensive, low-grade paper such as newsprint."@en, "Eine Zeitung ist ein Druckwerk von mäßigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal wöchentlich, öffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualität verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien."@de, "اخبار ایک باقاعدہ شیڈول اشاعت ہے جس میں موجودہ واقعات، معلوماتی مضامین، متنوع خصوصیات اور اشتہارات کی خبریں ہوتی ہیں۔ یہ عام طور پر نسبتاً سستے، کم درجے کے کاغذ پر پرنٹ کیا جاتا ہے جیسے نیوز پرنٹ۔"@ur ; + rdfs:label "Zeitung"@de, "journal"@fr, "krant"@nl, "newspaper"@en, "εφημερίδα"@el, "اخبار"@ur, "新聞"@ja, "신문"@ko ; + rdfs:subClassOf :PeriodicalLiterature ; + owl:equivalentClass wikidata:Q11032 ; + prov:wasDerivedFrom . + +:NobelPrize + a owl:Class ; + rdfs:label "Duais Nobel"@ga, "Nobel Prize"@en, "Nobelpreis"@de, "Nobelprijs"@nl, "Premio Nobel"@es, "Premio Nobel"@it, "Prix Nobel"@fr, "Βραβείο Νόμπελ"@el, "اعلی انعام"@ur, "ノーベル賞"@ja ; + rdfs:subClassOf :Award ; + owl:equivalentClass wikidata:Q7191 ; + prov:wasDerivedFrom . + +:Noble + a owl:Class ; + rdfs:label "Adliger"@de, "edele"@nl, "noble"@en, "noble"@fr, "ευγενής"@el, "عظیم"@ur, "高貴な"@ja ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:NobleFamily + a owl:Class ; + rdfs:comment "Famille réputée d'ascendance noble"@fr, "Family deemed to be of noble descent"@en, "خاندان کو شریف النسل سمجھا جاتا ہے۔"@ur ; + rdfs:label "Adelsfamilie"@de, "Famille noble"@fr, "Noble family"@en, "adelijk geslacht"@nl, "شریف خاندان"@ur ; + rdfs:subClassOf :Family ; + owl:equivalentClass wikidata:Q13417114 ; + prov:wasDerivedFrom . + +:Non-ProfitOrganisation + a owl:Class ; + rdfs:label "gemeinnützige Organisation"@de, "non-profit organisatie"@nl, "non-profit organisation"@en, "organisation à but non lucratif"@fr, "μη κερδοσκοπική οργάνωση"@el, "Некоммерческая организация"@ru, "غیر منافع بخش تنظیم"@ur ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q163740 ; + prov:wasDerivedFrom . + +:NordicCombined + a owl:Class ; + rdfs:comment "نورڈک کمبائنڈ ایک موسم سرما کا کھیل ہے جس میں ما بین ملک کے کھلاڑی سکینگ اور سکی جمپنگ میں مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Nordic Combined"@en, "Nordischer Kombinierer"@de, "مشترکہ نورڈک"@ur ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:Novel + a owl:Class ; + rdfs:comment "A book of long narrative in literary prose"@en, "Le roman est un genre littéraire, caractérisé pour l'essentiel par une narration fictionnelle plus ou moins longue."@fr, "Ένα βιβλίο με μεγάλη αφήγηση σε λογοτεχνική πρόζα"@el, "ادبی نثر میں طویل داستان کی کتاب>http://en.wikipedia.org/wiki/Novel"@ur ; + rdfs:label "Roman"@de, "novel"@en, "novella"@it, "roman"@da, "roman"@fr, "roman"@nl, "úrscéal"@ga, "νουβέλα"@el, "افسانه"@ur, "小説"@ja ; + rdfs:subClassOf :book ; + owl:equivalentClass wikidata:Q8261 ; + prov:wasDerivedFrom . + +:NuclearPowerStation + a owl:Class ; + rdfs:label "Kernkraftwerk"@de, "Nuclear Power plant"@en, "centrale nucléaire"@fr, "kernenergiecentrale"@nl, "stáisiún núicléach"@ga, "Πυρηνικός Σταθμός Παραγωγής Ενέργειας"@el, "ایٹمی بجلی گھر"@ur ; + rdfs:subClassOf :PowerStation ; + owl:equivalentClass wikidata:Q134447 ; + prov:wasDerivedFrom . + +:Ocean + a owl:Class ; + rdfs:comment "A body of saline water that composes much of a planet's hydrosphere."@en, "Μάζα αλμυρού νερού που αποτελεί σημαντικό μέρος της υδρόσφαιρας ενός πλανήτη."@el, "نمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔"@ur ; + rdfs:label "Ocean"@en, "Océan"@fr, "Ozean"@de, "aigéan"@ga, "oceaan"@nl, "oceano"@pt, "Ωκεανός"@el, "سمندر"@ur, "大洋"@ja ; + rdfs:subClassOf :BodyOfWater ; + owl:equivalentClass wikidata:Q9430 ; + prov:wasDerivedFrom . + +:OfficeHolder + a owl:Class ; + rdfs:label "Amtsinhaber"@de, "ambtsdrager"@nl, "cargo público"@es, "office holder"@en, "titulaire"@fr, "κάτοχος δημόσιου αξιώματος"@el, "عہدے دار"@ur, "공직자"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:OldTerritory + a owl:Class ; + rdfs:label "alten Länder"@de, "ancien territoire"@fr, "old territory"@en, "پرانا علاقہ"@ur ; + rdfs:subClassOf :Territory ; + prov:wasDerivedFrom . + +:OlympicEvent + a owl:Class ; + rdfs:label "Olympisch evenement"@nl, "olympic event"@en, "olympische Veranstaltung"@de, "événement olympique"@fr, "ολυμπικακό γεγονός"@el, "اولمپک کھیلوں کی تقریب"@ur ; + rdfs:subClassOf :Olympics ; + prov:wasDerivedFrom . + +:OlympicResult + a owl:Class ; + rdfs:label "olympic result"@en, "olympisches Ergebnis"@de, "resultaat op de Olympische Spelen"@nl, "resultados de Juegos Olímpicos"@es, "résultat de Jeux Olympiques"@fr, "αποτελέσματα Ολυμπιακών αγώνων"@el, "اولمپک کا نتیجہ"@ur ; + rdfs:subClassOf :SportCompetitionResult ; + prov:wasDerivedFrom . + +:Olympics + a owl:Class ; + rdfs:label "Jeux Olympiques"@fr, "Juegos Olímpicos"@es, "Na Cluichí Oilimpeacha"@ga, "Olympiade"@de, "Olympische Spelen"@nl, "olympics"@en, "ολυμπιακοί αγώνες"@el, "اولمپکس"@ur, "近代オリンピック"@ja, "올림픽"@ko ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:On-SiteTransportation + a owl:Class ; + rdfs:label "Vorortbeförderungsmittel"@de, "on-site mean of transportation"@en, "stationair vervoermiddel"@nl, "کِسی موقع مقام پر نقل و حمل"@ur ; + rdfs:subClassOf :MeanOfTransportation ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :On-SiteTransportation ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:Openswarm + a owl:Class ; + rdfs:label "Open Swarm"@de, "Open Swarm"@en, "open zwerm (cluster)"@nl, "Ανοικτό σμήνος"@el, "کھلی بھیڑ"@ur ; + rdfs:subClassOf :Swarm ; + prov:wasDerivedFrom . + +:Opera + a owl:Class ; + rdfs:label "ceoldráma"@ga, "oper"@de, "opera"@en, "opera"@it, "opera"@nl, "opéra"@fr, "όpera"@es, "όπερα"@el, "موسیقی کے ساتھ نقل یا اداکاری"@ur, "オペラ"@ja ; + rdfs:subClassOf :MusicalWork ; + owl:equivalentClass wikidata:Q1344 ; + prov:wasDerivedFrom . + +:Organ + a owl:Class ; + rdfs:comment "All types and sizes of organs"@en, "Όλα τα είδη και τα μεγέθη των οργάνων"@el, "اعضاء کی تمام اقسام اور سائز"@ur ; + rdfs:label "Orgel"@de, "Orgue"@fr, "organ"@en, "orgel"@nl, "όργανο"@el, "عضو"@ur, "オルガン"@ja ; + rdfs:subClassOf :Instrument ; + owl:equivalentClass wikidata:Q1444 ; + prov:wasDerivedFrom . + +:Organisation + a owl:Class ; + rdfs:label "Organisation"@de, "organisatie"@nl, "organisation"@da, "organisation"@en, "organisation"@fr, "organizacija"@sl, "organización"@es, "organização"@pt, "οργάνωση"@el, "Организация"@ru, "تنظیم"@ur, "組織"@ja, "조직"@ko ; + rdfs:subClassOf :Agent ; + owl:disjointWith ; + owl:equivalentClass , dul:SocialPerson, wikidata:Q43229 ; + prov:wasDerivedFrom . + +:OrganisationMember + a owl:Class ; + rdfs:comment "A member of an organisation."@en, "Membre appartenant à une organisation."@fr, "Μέλος ενός οργανισμού."@el, "کسی تنظیم کا ممبر"@ur ; + rdfs:label "Membre d'organisation"@fr, "Miembro de organización"@es, "Organisation member"@en, "Organisationsmitglied"@de, "organisatielid"@nl, "Μέλος οργανισμού"@el, "تنظیم کے رکن"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Outbreak + a owl:Class ; + rdfs:label "Outbreak"@en, "ہنگامہ"@ur ; + rdfs:subClassOf :Event ; + owl:equivalentClass wikidata:Q495513 ; + prov:wasDerivedFrom . + +:OverseasDepartment + a owl:Class ; + rdfs:label "département outre mer"@fr, "overseas department"@en, "overzees departement"@nl, "Übersee-Departement"@de, "بیرون ملک کے محکمے"@ur ; + rdfs:subClassOf :Department ; + owl:equivalentClass wikidata:Q202216 ; + prov:wasDerivedFrom . + +:PaintballLeague + a owl:Class ; + rdfs:comment "a group of sports teams that compete against each other in Paintball"@en, "ένα γκρουπ αθλητικών ομάδων που ανταγωνίζονται στο paintball"@el, "کھیلوں کی ٹیموں کا ایک گروہ جو پینٹ بال(مصنوعي روغني گوليوں سے فوجي انداز کي جنگ لڑنے کي نقل) میں ایک دوسرے سے مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Paintball-Liga"@de, "ligue de paintball"@fr, "paintball competitie"@nl, "paintball league"@en, "κύπελλο paintball"@el, "پینٹبال انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Painter + a owl:Class ; + rdfs:label "Maler"@de, "maler"@da, "painter"@en, "peintre"@fr, "schilder"@nl, "ζωγράφος"@el, "رنگ ساز"@ur, "画家"@ja ; + rdfs:subClassOf :Artist ; + owl:equivalentClass wikidata:Q1028181 ; + prov:wasDerivedFrom . + +:Painting + a owl:Class ; + rdfs:comment "Describes a painting to assign picture entries in wikipedia to artists."@en ; + rdfs:label "Gemälde"@de, "Painting"@en, "maleri"@da, "obraz"@pl, "peinture"@fr, "pictiúr"@ga, "schilderij"@nl, "Έργο Ζωγραφικής"@el, "نقاشی"@ur, "絵画"@ja ; + rdfs:subClassOf :Artwork ; + owl:equivalentClass , wikidata:Q3305213 ; + prov:wasDerivedFrom . + +:Pandemic + a owl:Class ; + rdfs:comment "Epidémie globale de maladie infectieuse"@fr, "Global epidemic of infectious disease"@en, "متعدی بیماری کی عالمی وبا"@ur, "也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病"@zh ; + rdfs:label "Pandemic"@en, "Pandémie"@fr, "عالمی وباء"@ur, "瘟疫"@zh ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Parish + a owl:Class ; + rdfs:comment "The smallest unit of a clerical administrative body"@en, "Είναι η μικρότερη μονάδα στην διοικητική ιερατική δομή."@el, "علما کے انتظامی ادارے کی سب سے چھوٹی اکائی"@ur ; + rdfs:label "Gemeinde"@de, "parish"@en, "parochie"@nl, "paroisse"@fr, "paróiste"@ga, "ενορία"@el, "پادری کا علاقہ"@ur, "小教区"@ja ; + rdfs:subClassOf :ClericalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Park + a owl:Class ; + rdfs:comment "A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park"@en, "پارک کھلی جگہ کا ایک علاقہ ہے جو تفریحی استعمال کے لیے فراہم کی جاتی ہے۔"@ur ; + rdfs:label "Park"@de, "parc"@fr, "park"@en, "park"@nl, "parque"@pt, "páirc"@ga, "πάρκο"@el, "تفریح گاہ"@ur, "公園"@ja, "공원"@ko ; + rdfs:subClassOf :Place ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Parliament + a owl:Class ; + rdfs:label "Parlament"@de, "parlaimint"@ga, "parlamento"@es, "parlement"@fr, "parlement"@nl, "parliament"@en, "κοινοβούλιο"@el, "مجلس قانون ساز"@ur, "議会"@ja ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q35749 ; + prov:wasDerivedFrom . + +:PenaltyShootOut + a owl:Class ; + rdfs:comment "سزا دینے کا عمل کھیلوں کے میچوں میں فاتح کا تعین کرنے کا ایک طریقہ ہے جو بصورت دیگر نکل دیا جاتا ہے یا برابر ہو جاتا۔"@ur ; + rdfs:label "Elfmeterschießen"@de, "ciceanna éirice"@ga, "penalty schieten"@nl, "penalty shoot-out"@en, "سزا دینے کا عمل"@ur ; + rdfs:subClassOf :Event, ; + prov:wasDerivedFrom . + +:PeriodOfArtisticStyle + a owl:Class ; + rdfs:label "Kunst Zeitstil"@de, "period of artistic style"@en, "période de style artistique"@fr, "stijlperiode"@nl, "فنکارانہ انداز کی مدت"@ur ; + rdfs:subClassOf :TimePeriod ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:PeriodicalLiterature + a owl:Class ; + rdfs:comment "Periodical literature (also called a periodical publication or simply a periodical) is a published work that appears in a new edition on a regular schedule. The most familiar examples are the newspaper, often published daily, or weekly; or the magazine, typically published weekly, monthly or as a quarterly. Other examples would be a newsletter, a literary journal or learned journal, or a yearbook."@en, "Une publication périodique est un titre de presse qui paraît régulièrement."@fr, "Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelmäßig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff für Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen."@de, "Περιοδικός Τύπος (ή αλλιώς περιοδικό ή εφημερίδα) είναι η δημοσίευση άρθρου ή νέων ανά τακτά διαστήματα. Το πιο γνωστό παράδειγμα είναι οι εφημερίδες, που δημοσιεύονται σε καθημερινή ή εβδομαδιαία βάση και το περιοδικό, που τυπικά εκδίδεται σε εβδομαδιαία, μηνιαία ή δίμηνη βάση. Άλλα παραδείγματα μπορεί να είναι τα νέα ενός οργανισμού ή εταιρείας, ένα λογοτεχνικό ή εκπαιδευτικό περιοδικό ή ένα ετήσιο λεύκωμα."@el, "ایک شائع شدہ کام ہے جو ایک باقاعدہ ترتیب کار پر ایک نئے اشاعت میں نمودار ہوتا ہے۔ سب سے واقف مثال اخبار ہیں ، جو اکثر روزانہ یا ہفتہ وار شائع ہوتے ہیں۔ یا رسالہ عام طور پر ہفتہ وار ، ماہانہ یا سہ ماہی کے طور پر شائع ہوتا ہے۔ دوسری مثالوں میں ایک نیوز لیٹر ، ایک ادبی جریدہ یا سیکھا ہوا جریدہ ، یا ایک سالانہ کتاب ہوگی۔"@ur ; + rdfs:label "Periodikum"@de, "periodical literature"@en, "publication périodique"@fr, "περιοδικός τύπος"@el, "متواتر ادب"@ur ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q1092563 ; + prov:wasDerivedFrom . + +:Person + a owl:Class ; + rdfs:label "Oseba"@sl, "Person"@de, "duine"@ga, "osoba"@pl, "person"@da, "person"@en, "persona"@es, "persona"@it, "personne"@fr, "persoon"@nl, "pertsona"@eu, "pessoa"@pt, "Πληροφορίες προσώπου"@el, "անձ"@hy, "شخص"@ar, "شخص"@ur, "ሰው"@am, "人_(法律)"@ja ; + rdfs:subClassOf :Animal ; + owl:equivalentClass , dul:NaturalPerson, wikidata:Q215627, wikidata:Q5, foaf:Person ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Höhe (cm)"@de, "altura (cm)"@pt, "hauteur (cm)"@fr, "height (cm)"@en, "hoogte (cm)"@nl, "højde (cm)"@da, "višina (cm)"@sl, "ύψος (cm)"@el, "身長 (cm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + +:PersonFunction + a owl:Class ; + rdfs:label "Funktion einer Person"@de, "fonction de personne"@fr, "función de persona"@es, "functie van persoon"@nl, "person function"@en, "شخص کی تقریب"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:PersonalEvent + a owl:Class ; + rdfs:comment "an event that occurs in someone's personal life"@en, "ένα συμβάν που αφορά την προσωπική ζωή κάποιου"@el, "ایک واقعہ جو کسی کی ذاتی زندگی میں پیش آتا ہے۔"@ur ; + rdfs:label "Ereignis im persönlichen Leben"@de, "levensloopgebeurtenis"@nl, "personal event"@en, "évènement dans la vie privée"@fr, "προσωπικό συμβάν"@el, "ذاتی تقریب"@ur ; + rdfs:subClassOf :LifeCycleEvent ; + prov:wasDerivedFrom . + +:Pharaoh + a owl:Class ; + rdfs:comment "قدیم بادشاہوں کا ایک لقب"@ur ; + rdfs:label "Farao"@da, "Faraoia"@eu, "Pharaoh"@en, "pharaon"@fr, "فراعنہ"@ar, "फिरौन"@hi ; + rdfs:subClassOf :Royalty ; + prov:wasDerivedFrom . + +:Philosopher + a owl:Class ; + rdfs:label "Philosoph"@de, "filosoof"@nl, "philosophe"@fr, "philosopher"@en, "φιλόσοφος"@el, "فلسفی"@ur, "哲学者"@ja, "철학자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q4964182 ; + prov:wasDerivedFrom . + +:PhilosophicalConcept + a owl:Class ; + rdfs:comment "Concepts philosophiques tels que l'Existentialisme, Cogito Ergo Sum"@fr, "Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum"@en, "فلسفیانہ تصورات، جیسے وجودیت، ٹریوس سم"@ur ; + rdfs:label "Filosofisch thema"@nl, "Philosophical concept"@en, "concept philosophique"@fr, "philosophisch Konzept"@de, "فلسفیانہ تصور"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:Photographer + a owl:Class ; + rdfs:label "Fotograf"@de, "fotograaf"@nl, "fotografo"@it, "photographe"@fr, "photographer"@en, "φωτογράφος"@el, "عکسی تصویر اتارنے والا"@ur, "写真家"@ja ; + rdfs:subClassOf :Artist ; + owl:equivalentClass wikidata:Q33231 ; + prov:wasDerivedFrom . + +:Pilot + a owl:Class ; + rdfs:label "Pilot"@en, "pilot"@da, "pilote"@fr, "pilotua"@eu, "طيار"@ar, "طیارہ اڑانے والا"@ur, "पायलट"@hi ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Place + a owl:Class ; + rdfs:comment "uma localização"@pt, "غیر متحرک چیزیں یا مقامات۔"@ur ; + rdfs:label "Ort"@de, "lekua"@eu, "lieu"@fr, "lloc"@ca, "lugar"@es, "lugar"@pt, "miejsce"@pl, "plaats"@nl, "place"@en, "sted"@da, "áit"@ga, "περιοχή"@el, "جگہ"@ur, "مكان"@ar, "ቦታ"@am, "立地"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass :Location, ; + prov:wasDerivedFrom . + +:Planet + a owl:Class ; + rdfs:label "Planet"@de, "Planeta"@pt, "planeet"@nl, "planet"@en, "planet"@sl, "planeta"@ca, "planeta"@es, "planeta"@pl, "planète"@fr, "pláinéad"@ga, "Πλανήτης"@el, "سیارہ"@ur, "惑星"@ja ; + rdfs:subClassOf :CelestialBody ; + owl:equivalentClass wikidata:Q634 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Apoapsisdistanz (km)"@de, "apoapsis (km)"@en, "απόαψης (km)"@el, "апоапсис (km)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:comment "The average speed of a thing."@en, "Vitesse moyenne du déplacement d'un objet."@fr, "Η μέση ταχύτητα ενός πράγματος."@el ; + rdfs:domain :Planet ; + rdfs:label "Durchschnittsgeschwindigkeit (km/s)"@de, "average speed (km/s)"@en, "vitesse moyenne (km/s)"@fr, "μέση ταχύτητα (km/s)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Dichte (μ3)"@de, "densidade (μ3)"@pt, "density (μ3)"@en, "densità (μ3)"@it, "densité (μ3)"@fr, "πυκνότητα (μ3)"@el, "密度 (μ3)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Maximaltemperatur (K)"@de, "maximum temperature (K)"@en, "μέγιστη θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "durchschnittlicher Radius (km)"@de, "mean radius (km)"@en, "μέση ακτίνα (km)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Durchschnittstemperatur (K)"@de, "mean temperature (K)"@en, "μέση θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "geringste Temperatur (K)"@de, "minimum temperature (K)"@en, "ελάχιστη θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Umlaufzeit (μ)"@de, "orbital period (μ)"@en, "Περίοδος περιφοράς (μ)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Periapsisdistanz (km)"@de, "periapsis (km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Oberfläche (km2)"@de, "surface area (km2)"@en, "έκταση (km2)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Temperatur (K)"@de, "temperature (K)"@en, "température (K)"@fr, "θερμοκρασία (K)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Volumen (km3)"@de, "volume (km3)"@en, "volume (km3)"@fr, "volume (km3)"@nl, "όγκος (km3)"@el, "запремина (km3)"@sr ; + rdfs:range . + +:Plant + a owl:Class ; + rdfs:label "pflanze"@de, "pianta"@it, "planda"@ga, "plant"@en, "plant"@nl, "plante"@fr, "φυτό"@el, "پودا"@ur, "植物"@ja ; + rdfs:subClassOf :Eukaryote ; + owl:equivalentClass wikidata:Q756 ; + prov:wasDerivedFrom . + +:Play + a owl:Class ; + rdfs:comment "A play is a form of literature written by a playwright, usually consisting of scripted dialogue between characters, intended for theatrical performance rather than just reading."@en, "Ένα παιχνίδι είναι μια μορφή της λογοτεχνίας, γραμμένο από έναν συγγραφέα, που συνήθως αποτελείται από σενάριο του διαλόγου μεταξύ των χαρακτήρων, που προορίζεται για την θεατρική παράσταση και όχι μόνο ανάγνωση."@el, "ڈرامہ ادب کی ایک شکل ہے جسے ڈرامہ نگار نے لکھا ہے، عام طور پر کرداروں کے درمیان تحریری مکالمے پر مشتمل ہوتا ہے، جس کا مقصد صرف پڑھنے کے بجائے تھیٹر کی کارکردگی کے لیے ہوتا ہے۔"@ur ; + rdfs:label "Theaterstück"@de, "dráma"@ga, "obra de teatro"@es, "pièce de théâtre"@fr, "play"@en, "toneelstuk"@nl, "παιχνίδι"@el, "تماشہ"@ur, "戯曲"@ja ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q25379 ; + prov:wasDerivedFrom . + +:PlayWright + a owl:Class ; + rdfs:comment "A person who writes dramatic literature or drama."@en, "وہ شخص جو ڈرامائی ادب یا ڈرامہ لکھتا ہے۔"@ur ; + rdfs:label "Dramatiker"@de, "Dramaturge"@fr, "Playwright"@en, "drámadóir"@ga, "toneelschrijver"@nl, "ڈرامہ نگار"@ur ; + rdfs:subClassOf :Writer ; + owl:equivalentClass wikidata:Q214917 ; + prov:wasDerivedFrom . + +:PlayboyPlaymate + a owl:Class ; + rdfs:comment "پلے میٹ ایک خاتون ماڈل ہے جسے پلے بوائے میگزین کے سینٹر فولڈ/گیٹ فولڈ میں پلے میٹ آف دی منتھ کے طور پر دکھایا گیا ہے"@ur ; + rdfs:label "Playboy Playmate"@de, "Playboy Playmate"@en, "playboy playmate"@el, "playmate pour Playboy"@fr, "پلے بوائے پلے میٹ"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Poem + a owl:Class ; + rdfs:label "Gedicht"@de, "dán"@ga, "gedicht"@nl, "poem"@en, "poesia"@it, "poème"@fr, "ποίημα"@el, "نظم"@ur, "詩"@ja ; + rdfs:subClassOf :WrittenWork ; + owl:equivalentClass wikidata:Q5185279 ; + prov:wasDerivedFrom . + +:Poet + a owl:Class ; + rdfs:label "Dichter"@de, "dichter"@nl, "file"@ga, "poet"@en, "poète"@fr, "ποιητής"@el, "شاعر"@ur, "詩人"@ja ; + rdfs:subClassOf :Writer ; + owl:equivalentClass wikidata:Q49757 ; + prov:wasDerivedFrom . + +:PokerPlayer + a owl:Class ; + rdfs:label "Pokerspieler"@de, "imreoir pócair"@ga, "joueur de poker"@fr, "poker player"@en, "pokerspeler"@nl, "παίχτης του πόκερ"@el, "پوکر کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:PoliceOfficer + a owl:Class ; + rdfs:label "Officier de police"@fr, "Police Officer"@en, "Politimand"@da, "Polizia ofiziala"@eu, "ضابط شرطة"@ar, "پولیس افسر"@ur, "पुलिस अधिकारी"@hi ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:PoliticalConcept + a owl:Class ; + rdfs:comment "Concept politiques tels que le capitalisme, la démocratie..."@fr, "Political concepts, e.g. Capitalism, Democracy"@en, "سیاسی تصورات، جیسے سرمایہ داری، جمہوریت"@ur ; + rdfs:label "Political concept"@en, "concept politique"@fr, "politiek concept"@nl, "politische Konzept"@de, "سیاسی تصور"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:PoliticalFunction + a owl:Class ; + rdfs:label "fonction politique"@fr, "political function"@en, "politieke functie"@nl, "politische Funktion"@de, "سیاسی تقریب"@ur ; + rdfs:subClassOf :PersonFunction ; + prov:wasDerivedFrom . + +:PoliticalParty + a owl:Class ; + rdfs:comment "for example: Democratic_Party_(United_States)"@en, "για παράδειγμα: Δημοκρατικό Κόμμα _United_States)"@el ; + rdfs:label "parti politique"@fr, "partia polityczna"@pl, "partido político"@es, "partido político"@pt, "partit polític"@ca, "political party"@en, "politieke partij"@nl, "politische Partei"@de, "πολιτικό κόμμα"@el, "سیاسی جماعت"@ur ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q7278 ; + prov:wasDerivedFrom . + +:Politician + a owl:Class ; + rdfs:label "Politiker"@de, "polaiteoir"@ga, "politician"@en, "politicien"@fr, "politicus"@nl, "politik"@sl, "político"@pt, "πολιτικός"@el, "سیاستدان"@ur, "የፖለቲካ ሰው"@am, "政治家"@ja, "정치인"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q82955 ; + prov:wasDerivedFrom . + +:PoliticianSpouse + a owl:Class ; + rdfs:label "Ehepartner eines Politiker"@de, "partner van een politicus"@nl, "politician spouse"@en, "σύζυγος πολιτικού"@el, "سیاستدان میاں بیوی"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:PoloLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in Polo."@en, "کھیلوں کی ٹیموں کا ایک گروہ جو پولو میں ایک دوسرے سے مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Polo-Liga"@de, "ligue de polo"@fr, "polo competitie"@nl, "polo league"@en, "sraith póló"@ga, "Ομοσπονδία Υδατοσφαίρισης"@el, "پولو انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Polysaccharide + a owl:Class ; + rdfs:comment "Zijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenheden"@nl, "یہ کاربوہائیڈریٹس ہیں جو دس یا اس سے زیادہ سادَہ شَکَّر یونٹوں سے بنی ہیں۔"@ur ; + rdfs:label "Polysaccharide"@de, "polysaccharide"@en, "polysacharide"@nl, "کثِیر شَکری"@ur ; + rdfs:subClassOf :Biomolecule ; + prov:wasDerivedFrom . + +:Pope + a owl:Class ; + rdfs:label "Papst"@de, "pape"@fr, "papież"@pl, "paus"@nl, "pope"@en, "pápa"@ga, "πάπας"@el, "رومن کیتہولک پادری"@ur, "教皇"@ja, "교황"@ko ; + rdfs:subClassOf :Cleric ; + owl:equivalentClass wikidata:Q19546 ; + prov:wasDerivedFrom . + +:PopulatedPlace + a owl:Class ; + rdfs:comment "As defined by the United States Geological Survey, a populated place is a place or area with clustered or scattered buildings and a permanent human population (city, settlement, town, or village) referenced with geographic coordinates (http://en.wikipedia.org/wiki/Populated_place)."@en, "Selon la définition du United States Geological Survey, un lieu peuplé est un lieu ou une zone avec des bâtiments regroupés ou dispersés et une population humaine permanente (agglomération, colonie, ville ou village) référencée par des coordonnées géographiques (http://en.wikipedia. org/wiki/Populated_place)."@fr, "Πυκνοκατοικημένη περιοχή, είναι η περιοχή ή το μέρος με μεγάλο αριθμό κτιρίων και μεγάλο μόνιμο πληθυσμό, σε σύγκριση με την γεωγραφική περιοχή που καταλαμβάνει (μεγαλούπολη, πόλη ή χωριό)."@el, "جیسا کہ امریکہ نے بیان کیا ہے۔ ارضیاتی سروے ، ایک آبادی والی جگہ وہ جگہ یا علاقہ ہے جہاں گروہ یا بکھرے ہوئے عمارتیں اور مستقل انسانی آبادی (شہر ، بستی ، قصبہ یا گاؤں) ہو۔"@ur ; + rdfs:label "bebouwde omgeving"@nl, "befolket sted"@da, "bewohnter Ort"@de, "lieu habité"@fr, "populated place"@en, "πυκνοκατοικημένη περιοχή"@el, "آبادی والی جگہ"@ur, "تجمع سكاني"@ar ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:comment "The area of the thing in square meters."@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Fläche (km2)"@de, "area (km2)"@en, "oppervlakte (km2)"@nl, "superficie (km2)"@fr, "área (km2)"@pt, "έκταση (km2)"@el, "област (km2)"@sr, "رقبہ (km2)"@ur ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "area metro (km2)"@en, "περιοχή μετρό (km2)"@el, "метрополска област (km2)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Fläche (km2)"@de, "area total (km2)"@en, "oppervlakte (km2)"@nl, "superficie (km2)"@fr, "έκταση περιοχής (km2)"@el, "укупна површина (km2)"@sr, "ጠቅላላ የመሬት ስፋት (km2)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Stadtgebiet (km2)"@de, "area urban (km2)"@en, "αστική περιοχή (km2)"@el, "урбана површина (km2)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Bevölkerungsdichte (/sqkm)"@de, "bevolkingsdichtheid (/sqkm)"@nl, "population density (/sqkm)"@en, "πυκνότητα_πληθυσμού (/sqkm)"@el, "घनत्व (/sqkm)"@hi ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "bevolkingsdichtheid (/sqkm)"@nl, "population metro density (/sqkm)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population urban density (/sqkm)"@en ; + rdfs:range . + +:Population + a owl:Class ; + rdfs:label "Bevölkerung"@de, "bevolking"@nl, "daonra"@ga, "population"@en, "population"@fr, "πληθυσμός"@el, "آبادی"@ur, "人口"@ja ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q33829 ; + prov:wasDerivedFrom . + +:Port + a owl:Class ; + rdfs:comment "a location on a coast or shore containing one or more harbors where ships can dock and transfer people or cargo to or from land."@en, "ساحل یا ساحل پر ایک مقام جس میں ایک یا زیادہ بندرگاہیں ہوں جہاں بحری جہاز لوگوں یا سامان کو زمین پر یا اس سے منتقل کر سکتے ہیں"@ur ; + rdfs:label "Hafen"@de, "Port"@en, "Port"@fr, "caladh"@ga, "haven"@nl, "بندرگاہ"@ur, "港湾"@ja ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass wikidata:Q44782 ; + prov:wasDerivedFrom . + +:PowerStation + a owl:Class ; + rdfs:label "Elektriciteitscentrale"@nl, "Kraftwerk"@de, "central eléctrica"@es, "centrale électrique"@fr, "power station"@en, "stáisiún cumhachta"@ga, "σταθμός παραγωγής ενέργειας"@el, "بجلی گھر"@ur, "発電所"@ja ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass wikidata:Q159719 ; + prov:wasDerivedFrom . + +:Prefecture + a owl:Class ; + rdfs:label "Präfektur"@de, "prefecture"@en, "prefectuur"@nl, "préfecture"@fr, "νομαρχία"@el, "دائرہ اختيارات"@ur, "県"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + owl:equivalentClass wikidata:Q515716 ; + prov:wasDerivedFrom . + +:PrehistoricalPeriod + a owl:Class ; + rdfs:label "periode in de prehistorie"@nl, "prehistorical period"@en, "prähistorisch Zeitalter"@de, "tréimhse réamhstaire"@ga, "ère préhistorique"@fr, "προϊστορική περίοδο"@el, "تاریخ سے پہلے کے زمانے کا دور"@ur ; + rdfs:subClassOf :TimePeriod ; + owl:disjointWith :HistoricalPeriod ; + prov:wasDerivedFrom . + +:Presenter + a owl:Class ; + rdfs:comment "TV or radio show presenter"@en, "ٹی وی یا ریڈیو شو پیش کرنے والا"@ur ; + rdfs:label "Moderator"@de, "láithreoir"@ga, "presentator"@nl, "presenter"@en, "présentateur"@fr, "Παρουσιαστής"@el, "پیش کنندہ"@ur, "司会者"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q13590141 ; + prov:wasDerivedFrom . + +:President + a owl:Class ; + rdfs:label "Präsident"@de, "president"@en, "president"@nl, "prezydent"@pl, "président"@fr, "uachtarán"@ga, "πρόεδρος"@el, "صدر"@ur, "大統領"@ja, "국가원수"@ko ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q30461 ; + prov:wasDerivedFrom . + +:Pretender + a owl:Class ; + rdfs:label "Pretender"@en, "itxurakeria"@eu, "pretender"@da, "prétendante"@fr, "الزاعم"@ar, "دکھاوا کرنے والا"@ur, "दावेदार"@hi ; + rdfs:subClassOf :Royalty ; + prov:wasDerivedFrom . + +:Priest + a owl:Class ; + rdfs:label "prete"@it, "priest"@en, "priester"@de, "priester"@nl, "prêtre"@fr, "sagart"@ga, "παπάς"@el, "پجاری"@ur, "司祭"@ja ; + rdfs:subClassOf :Cleric ; + owl:equivalentClass wikidata:Q42603 ; + prov:wasDerivedFrom . + +:PrimeMinister + a owl:Class ; + rdfs:label "Premierminister"@de, "eerste minister"@nl, "premier ministre"@fr, "prime minister"@en, "príomh-aire"@ga, "πρωθυπουργός"@el, "وزیراعظم"@ur, "총리"@ko ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:Prison + a owl:Class ; + rdfs:label "gefängnis"@de, "gevangenis"@nl, "prigione"@it, "prison"@en, "prison"@fr, "príosún"@ga, "φυλακή"@el, "جیل"@ur, "刑務所"@ja ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q40357 ; + prov:wasDerivedFrom . + +:Producer + a owl:Class ; + rdfs:comment "a person who manages movies or music recordings."@en, "وہ شخص جو فلموں یا میوزک کی ریکارڈنگ کا انتظام کرتا ہے۔"@ur ; + rdfs:label "Producer"@en, "Producteur"@fr, "Produzent"@de, "producent"@da, "producent"@nl, "مبدہ"@ur, "監督"@ja ; + rdfs:subClassOf :Person ; + owl:equivalentClass , wikidata:Q3282637 ; + prov:wasDerivedFrom . + +:Profession + a owl:Class ; + rdfs:label "Beruf"@de, "beroep"@nl, "gairm"@ga, "métier"@fr, "profession"@en, "επάγγελμα"@el, "پیشہ"@ur, "専門職"@ja ; + rdfs:subClassOf :PersonFunction ; + owl:equivalentClass wikidata:Q28640 ; + prov:wasDerivedFrom . + +:Professor + a owl:Class ; + rdfs:label "Professor"@de, "ollamh"@ga, "profesor"@pl, "professeur"@fr, "professor"@en, "professor"@nl, "καθηγητής"@el, "معلم"@ur, "教授"@ja ; + rdfs:subClassOf :Scientist ; + prov:wasDerivedFrom . + +:ProgrammingLanguage + a owl:Class ; + rdfs:comment "ایسی زبانیں جو کمپیوٹر کو ہدایات دینے میں معاون ہیں"@ur ; + rdfs:label "Programmiersprache"@de, "langage de programmation"@fr, "linguagem de programação"@pt, "linguaggio di programmazione"@it, "programmeertaal"@nl, "programmeringssprog"@da, "programming language"@en, "teanga ríomhchlárúcháin"@ga, "γλώσσα προγραμματισμού"@el, "پروگرامنگ زبان"@ur, "프로그래밍 언어"@ko ; + rdfs:subClassOf :Language ; + owl:equivalentClass wikidata:Q9143 ; + prov:wasDerivedFrom . + +:Project + a owl:Class ; + rdfs:comment "A project is a temporary endeavor undertaken to achieve defined objectives."@en, "Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen."@de, "ایک پروجیکٹ ایک عارضی کوشش ہے جو متعین مقاصد کے حصول کے لیے کی جاتی ہے۔"@ur ; + rdfs:label "Projekt"@de, "project"@en, "project"@nl, "projet"@fr, "proyecto"@es, "tionscadal"@ga, "σχέδιο"@el, "منصوبہ"@ur, "プロジェクト"@ja ; + rdfs:subClassOf :UnitOfWork ; + prov:wasDerivedFrom . + +:ProtectedArea + a owl:Class ; + rdfs:comment "Deze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijn"@nl, "This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity"@en, "یہ طبقہ 'محفوظ' حیثیت والے علاقوں کو ظاہر کرتا ہے"@ur ; + rdfs:label "Schutzgebiet"@de, "aire protégée"@fr, "beschermd gebied"@nl, "protected area"@en, "προστατευμένη περιοχή"@el, "محفوظ علاقہ"@ur, "保護地区"@ja ; + rdfs:subClassOf :Place ; + owl:equivalentClass wikidata:Q473972 ; + prov:wasDerivedFrom . + +:Protein + a owl:Class ; + rdfs:label "Protein"@de, "protein"@en, "proteina"@it, "proteína"@pt, "proteïne"@nl, "protéine"@fr, "próitéin"@ga, "πρωτεΐνη"@el, "لحمیات"@ur, "タンパク質"@ja, "단백질"@ko ; + rdfs:subClassOf :Biomolecule ; + owl:equivalentClass wikidata:Q8054 ; + prov:wasDerivedFrom . + +:Protocol + a owl:Class ; + rdfs:label "Protocol"@en, "Protocole"@fr, "Protokoll"@de, "Протокол"@ru, "رابطے کا ضابطہ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:ProtohistoricalPeriod + a owl:Class ; + rdfs:comment "انسانوں کےمطالعہ تحریر کی ایجاد سے پہلےکی مدت"@ur ; + rdfs:label "periode in de protohistorie"@nl, "proto-historisch Zeitalter"@de, "protohistorical period"@en, "قدیم تاریخی زمانہ"@ur ; + rdfs:subClassOf :TimePeriod ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:Province + a owl:Class ; + rdfs:comment "An administrative body governing a territorial unity on the intermediate level, between local and national level"@en, "Entité administrative en charge d'une unité territoriale se situant entre le niveau local et national; ex: Province Nord (Nouvelle-Calédonie)"@fr, "Είναι διοικητική δομή του κράτους που διοικεί μια περιοχή που είναι σε έκταση μεγαλύτερη από τοπικό επίπεδο και μικρότερη από εθνικό επίπεδο."@el, "ایک انتظامی ادارہ جو مقامی اور قومی سطح کے درمیان انٹرمیڈیٹ سطح پر علاقائی وحدت کا انتظام کرتا ہے۔"@ur ; + rdfs:label "Provinz"@de, "cúige"@ga, "province"@en, "province"@fr, "provincie"@nl, "επαρχία"@el, "صوبہ"@ur, "英語圏の行政区画"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Psychologist + a owl:Class ; + rdfs:label "Psychologe"@de, "psychologist"@en, "psychologue"@fr, "psycholoog"@nl, "síceolaí"@ga, "ψυχολόγος"@el, "ماہر نفسیات"@ur ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q212980 ; + prov:wasDerivedFrom . + +:PublicService + a owl:Class ; + rdfs:comment "Είναι οι υπηρεσίες που προσφέρονται από δομές του κράτους"@el, "یہ ریاستی ڈھانچے کی طرف سے عوام کے لیے فراہم کردہ خدمات ہیں۔"@ur ; + rdfs:label "public service"@en, "service public"@fr, "staatsapparaat"@nl, "öffentlicher Dienst"@de, "δημόσιες υπηρεσίες"@el, "خدمات عامہ"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q161837 ; + prov:wasDerivedFrom . + +:PublicTransitSystem + a owl:Class ; + rdfs:comment "A public transit system is a shared passenger transportation service which is available for use by the general public. Public transport modes include buses, trolleybuses, trams and trains, 'rapid transit' (metro/subways/undergrounds etc) and ferries. Intercity public transport is dominated by airlines, coaches, and intercity rail. (http://en.wikipedia.org/wiki/Public_transit)."@en, "Ein System des Öffentlichen Personenverkehrs auf Straße, Schiene oder Wasser."@de, "Un système de transport en commun est un service de transport partagé de passagers mis à la disposition du grand public. Les modes de transport public comprennent les bus, les trolleybus, les tramways et les trains, le « transport en commun rapide » (métro, TGV, etc.) et les ferries. Les transports publics interurbains sont dominés par les compagnies aériennes, les autocars et le rail intercité. (http://en.wikipedia.org/wiki/Public_transit)."@fr, "Τα μέσα μαζικής μεταφοράς (συντομογραφία ΜΜΜ) είναι τα δημόσια συγκοινωνιακά μέσα, που περιλαμβάνουν τα λεωφορεία, τα τρόλεϊ, τα τραμ, τα τρένα, το μετρό, τα πλοία. Υπάρχουν και τα ταχεία μέσα συγκοινωνίας που περιλαμβάνουν τα αεροπλάνα, υπερταχεία τρένα."@el, "عوامی راہداری کا نظام ایک مشترکہ عوامی نقل و حمل کی سروس ہے جو عام لوگوں کے استعمال کے لیے دستیاب ہے۔عوامی نقل و حمل کے طریقوں میں بسیں ، ٹرالی بسیں ، ٹرام اور ٹرینیں ، 'تیز رفتارراہداری' (میٹرو/زمین دوز برقی ریل/زیر زمین وغیرہ) اور فیری شامل ہیں۔"@ur ; + rdfs:label "Sistema de Transporte Público"@es, "Système de transport public"@fr, "openbaar vervoer systeem"@nl, "public transit system"@en, "Öffentliches Personenverkehrssystem"@de, "μέσα μαζικής μεταφοράς"@el, "عوامی راہداری کا نظام"@ur ; + rdfs:subClassOf :Company ; + prov:wasDerivedFrom . + +:Publisher + a owl:Class ; + rdfs:comment "Publishing company"@en, "شائع کرنے والے اشاعتی ادارہ"@ur ; + rdfs:label "Herausgeber"@de, "editor"@es, "foilsitheoir"@ga, "publisher"@en, "uitgever"@nl, "éditeur"@fr, "εκδότης"@el, "ناشر"@ur, "出版社"@ja, "출판사"@ko ; + rdfs:subClassOf :Company ; + prov:wasDerivedFrom . + +:Pyramid + a owl:Class ; + rdfs:comment "a structure whose shape is roughly that of a pyramid in the geometric sense."@en, "ایک ڈھانچہ جس کی شکل ہندسی معنوں میں تقریبا ایک اہرام کی ہے۔"@ur ; + rdfs:label "Pyramid"@en, "Pyramide"@de, "Pyramide"@fr, "pirimid"@ga, "pyramide"@nl, "مخروطی مصری مینار"@ur, "ピラミッド"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q12516 ; + prov:wasDerivedFrom . + +:Quote + a owl:Class ; + rdfs:label "Citation"@fr, "Quote"@en, "Zitat"@de, "citaat"@nl, "اقتباس"@ur, "引用"@ja ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:Race + a owl:Class ; + rdfs:label "Rennen"@de, "course"@fr, "race"@en, "race"@nl, "rás"@ga, "αγώνας"@el, "دوڑ"@ur, "レース"@ja ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:RaceTrack + a owl:Class ; + rdfs:label "Rennstrecke"@de, "circuit de course"@fr, "race track"@en, "racecircuit"@nl, "rásraon"@ga, "πίστα αγώνων"@el, "راستہ جس پر دوڑ لگائی جاتی ہیں۔"@ur, "サーキットのコース"@ja ; + rdfs:subClassOf :SportFacility ; + owl:equivalentClass wikidata:Q1777138 ; + prov:wasDerivedFrom . + +:Racecourse + a owl:Class ; + rdfs:comment "A racecourse is an alternate term for a horse racing track, found in countries such as the United Kingdom, Australia, Hong Kong, and the United Arab Emirates."@en, "Ο ιππόδρομος,εναλλακτικός όρος για την πίστα διεξαγωγής αγώνων μεταξύ ίππων,συναντάται σε χώρες όπως η Αγγλία, Αυστραλία, Χονγκ Κονγκ και τα Ηνωμένα Αραβικά Εμιράτα."@el, "ریس کورس ہارس ریسنگ ٹریک کے لیے ایک متبادل اصطلاح ہے، جو برطانیہ، آسٹریلیا، ہانگ کانگ اور متحدہ عرب امارات جیسے ممالک میں پائی جاتی ہے۔"@ur ; + rdfs:label "Rennbahn"@de, "ippodromo"@it, "racecourse"@en, "renbaan"@nl, "ráschúrsa"@ga, "ιππόδρομος"@el, "بھاگنے والا رستہ"@ur, "競馬場"@ja ; + rdfs:subClassOf :RaceTrack ; + owl:equivalentClass wikidata:Q1777138 ; + prov:wasDerivedFrom . + +:RacingDriver + a owl:Class ; + rdfs:label "Rennfahrer"@de, "coureur"@nl, "racing driver"@en, "οδηγός αγώνων"@el, "مقابلہ میں کاریں چلانے والے"@ur ; + rdfs:subClassOf :MotorsportRacer ; + owl:equivalentClass wikidata:Q378622 ; + prov:wasDerivedFrom . + +:RadioControlledRacingLeague + a owl:Class ; + rdfs:comment "A group of sports teams or person that compete against each other in radio-controlled racing."@en, "کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ریڈیو کے زیر کنٹرول ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔"@ur ; + rdfs:label "RC-Renn Liga"@de, "ligue de courses radio-télécommandé"@fr, "radio bestuurbare race competitie"@nl, "radio-controlled racing league"@en, "ریڈیو کنٹرولڈ ریس مقابلہ"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:RadioHost + a owl:Class ; + rdfs:label "Radiomoderator"@de, "láithreoir raidió"@ga, "présentateur radio"@fr, "radio host"@en, "radiopresentator"@nl, "οικοδεσπότης ραδιοφώνου"@el, "ریڈیو میزبان"@ur ; + rdfs:subClassOf :Presenter ; + owl:equivalentClass wikidata:Q2722764 ; + prov:wasDerivedFrom . + +:RadioProgram + a owl:Class ; + rdfs:label "clár raidió"@ga, "programma radiofonico"@it, "programme de radiodiffusion"@fr, "radio programm"@de, "radioprogramma"@nl, "ραδιοφωνικό πρόγραμμα"@el, "ریڈیو پروگرام"@en, "ラジオ番組"@ja ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q1555508 ; + prov:wasDerivedFrom . + +:RadioStation + a owl:Class ; + rdfs:comment "A radio station has one line up. For instance the radio station BBC Radio 1. Not to be confused with the broadcasting network BBC, which has many radio stations."@en, "Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat."@de ; + rdfs:label "Radiosender"@de, "emisora de radio"@es, "radio station"@en, "radiozender"@nl, "station de radio"@fr, "stáisiún raidió"@ga, "ραδιοφωνικός σταθμός"@el, "ریڈیو سٹیشن"@ur, "ラジオ放送局"@ja ; + rdfs:subClassOf :Broadcaster ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:RailwayLine + a owl:Class ; + rdfs:comment "A railway line is a transport service by trains that pull passengers or freight provided by an organization. Not to be mistaken for railway track, which is the structure consisting of the rails. Wikipedia do not clearly differentiate between both, so there is one infobox describing tracks and lines."@en, "Eine Eisenbahnlinie im Verkehrswesen ist die regelmäßige Bedienung einer bestimmten Eisenbahnstrecke durch öffentliche Verkehrsmittel."@de, "O σιδηρόδρομος είναι μια υπηρεσία μεταφοράς επιβατών ή εμπορευμάτων με τρένα που παρέχονται από έναν οργανισμό. Δεν πρέπει να συγχέεται με τη σιδηροδρομική γραμμή, τη δομή που αποτελείται από τις ράγες. Στη Βικιπαίδεια δε γίνεται σαφής διαφοροποίηση μεταξύ των δύο, έτσι υπάρχει ένα κουτί πληροφοριών που περιγράφει ράγες και γραμμές"@el, "Une ligne de chemin de fer est un service de transport par train qui achemine des passagers ou du fret fourni par une organisation. A ne pas confondre avec le réseau ferré qui est la structure formée par les rails. Wikipedia ne fait pas vraiement la différence entre les deux, il n'y a donc qu'une boîte d'information en même temps pour les lignes et le réseau."@fr, "ریلوے لائن ٹرینوں کے ذریعہ ایک ٹرانسپورٹ سروس ہے جو مسافروں کو کھینچتی ہے یا کسی تنظیم کے ذریعہ فراہم کردہ سامان۔ ریلوے ٹریک کے لیے غلطی نہ کی جائے، جو کہ ریلوں پر مشتمل ڈھانچہ ہے۔ ویکیپیڈیا واضح طور پر دونوں کے درمیان فرق نہیں کرتا، اس لیے ٹریک اور لائنوں کو بیان کرنے والا ایک انفو باکس ہے."@ur ; + rdfs:label "Eisenbahnlinie"@de, "lígne de chemin de fer"@fr, "líne iarnróid"@ga, "railway line"@en, "spoorlijn"@nl, "σιδηρόδρομος"@el, "ریلوے لائن"@ur ; + rdfs:subClassOf :RouteOfTransportation ; + owl:equivalentClass wikidata:Q728937 ; + prov:wasDerivedFrom . + +:RailwayStation + a owl:Class ; + rdfs:label "Bahnhof"@de, "gare"@fr, "stazione ferroviaria"@it, "stáisiún traenach"@ga, "train station"@en, "treinstation"@nl, "σιδηροδρομικός σταθμός"@el, "ریلوےسٹیشن"@ur, "鉄道駅"@ja ; + rdfs:subClassOf :Station ; + owl:equivalentClass wikidata:Q55488 ; + prov:wasDerivedFrom . + +:RailwayTunnel + a owl:Class ; + rdfs:label "Eisenbahntunnel"@de, "railway tunnel"@en, "spoorwegtunnel"@nl, "tollán iarnróid"@ga, "σιδηροδρομική σήραγγα"@el, "ریلوے سرنگ"@ur ; + rdfs:subClassOf :RouteOfTransportation ; + owl:equivalentClass wikidata:Q1311958 ; + prov:wasDerivedFrom . + +:RallyDriver + a owl:Class ; + rdfs:comment "Ο οδηγός ράλι χρησιμοποιείται για να περιγράψει άνδρα που λαμβάνει μέρος σε αγώνες αυτοκινήτων ειδικής κατηγορίας"@el ; + rdfs:label "Rallyefahrer"@de, "rally driver"@en, "rallycoureur"@nl, "οδηγός ράλι"@el ; + rdfs:subClassOf :RacingDriver ; + owl:equivalentClass wikidata:Q10842936 ; + prov:wasDerivedFrom . + +:Rebbe + a owl:Class ; + rdfs:label "Rabbi"@fr, "Rebbe"@en, "errebea"@eu, "rebbe"@da, "ريبي"@ar, "रेबे"@hi ; + rdfs:subClassOf :Religious ; + prov:wasDerivedFrom . + +:Rebellion + a owl:Class ; + rdfs:label "Aufstand"@de, "opstand"@nl, "rebellion"@en, "révolte"@fr, "بغاوت"@ur, "反乱"@ja ; + rdfs:subClassOf :SocietalEvent ; + prov:wasDerivedFrom . + +:RecordLabel + a owl:Class ; + rdfs:label "Plattenlabel"@de, "label discographique"@fr, "lipéad ceoil"@ga, "platenlabel"@nl, "record label"@en, "δισκογραφική"@el, "کھاتا چٹھی"@ur ; + rdfs:subClassOf :Company ; + owl:equivalentClass wikidata:Q18127 ; + prov:wasDerivedFrom . + +:RecordOffice + a owl:Class ; + rdfs:label "Amtsarchiv"@de, "Archiefinstelling"@nl, "Record Office"@en, "کھاتے کا دفتر"@ur ; + rdfs:subClassOf :Non-ProfitOrganisation ; + prov:wasDerivedFrom . + +:Referee + a owl:Class ; + rdfs:comment "An official who watches a game or match closely to ensure that the rules are adhered to."@en, "ایک منصف جو کھیل یا میچ کو قریب سے دیکھتا ہے اس بات کو یقینی بنانے کے لیے کہ قواعد کی پابندی کی جائے۔"@ur ; + rdfs:label "arbitre"@fr, "arbitro"@it, "referee"@en, "réiteoir"@ga, "scheidsrechter"@nl, "schiedsrichter"@de, "árbitro"@es, "διαιτητής"@el, "کھیلوں کا منصف"@ur, "審判員"@ja ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Reference + a owl:Class ; + rdfs:comment "Reference to a work (book, movie, website) providing info about the subject"@en, "Référence à un travail (livre, film, site web), fournissant des informations sur le sujet"@fr, "Verwijzing naar een plaats in een boek of film"@nl, "موضوع کے بارے میں معلومات فراہم کرنے والے کام (کتاب، فلم، ویب سائٹ) کا حوالہ"@ur ; + rdfs:label "Reference"@en, "Referenz"@de, "Référence"@fr, "Verwijzing"@nl, "αναφορά"@el, "حوالہ"@ur, "参考文献"@ja ; + rdfs:subClassOf :Annotation ; + prov:wasDerivedFrom . + +:Regency + a owl:Class ; + rdfs:comment "bagian wilayah administratif dibawah provinsi"@in, "صوبے کے تحت انتظامی علاقے کا حصہ"@ur ; + rdfs:label "Regentschaft"@de, "kabupaten"@in, "regency"@en, "regentschap (regering)"@nl, "αντιβασιλεία"@el, "ریجنسی/نائب حکمرانی"@ur, "摂政"@ja ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:Region + a owl:Class ; + rdfs:label "Region"@de, "regio"@nl, "region"@en, "région"@fr, "réigiún"@ga, "περιοχή"@el, "علاقہ"@ur, "地域"@ja ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q3455524 ; + prov:wasDerivedFrom . + +:Reign + a owl:Class ; + rdfs:label "Regentschaft"@de, "regentschap"@nl, "reign"@en, "règne"@fr, "راج"@ur ; + rdfs:subClassOf :TimePeriod ; + prov:wasDerivedFrom . + +:Relationship + a owl:Class ; + rdfs:label "Relation"@fr, "Relationship"@en, "Отношение"@ru, "رشتہ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Religious + a owl:Class ; + rdfs:label "religieus"@nl, "religieux"@fr, "religious"@en, "religiös"@de, "θρησκευτικός"@el, "مذہبی"@ur ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q2566598 ; + prov:wasDerivedFrom . + +:ReligiousBuilding + a owl:Class ; + rdfs:label "cultusgebouw"@nl, "edificio religioso"@es, "edificio religioso"@it, "religious building"@en, "religiöses Gebäude"@de, "religiøs bygning"@da, "édifice religieux"@fr, "θρησκευτικό κτίριο"@el, "مذہبی عمارت"@ur, "宗教建築"@ja, "종교 건물"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q1370598 ; + prov:wasDerivedFrom . + +:ReligiousOrganisation + a owl:Class ; + rdfs:comment "Formal organisation or organised group of believers"@en, "Organisation formelle ou groupe organisé de croyants"@fr, "باضابطہ تنظیم یا مومنین کا منظم گروپ"@ur ; + rdfs:label "Religionsorganisation"@de, "kerkelijke organisatie"@nl, "organisation religieuse"@fr, "organización religiosa"@es, "religious organisation"@en, "مذہبی تنظیم"@ur ; + rdfs:subClassOf :Organisation ; + owl:disjointWith ; + prov:wasDerivedFrom . + +:Reptile + a owl:Class ; + rdfs:label "reiptíl"@ga, "reptiel"@nl, "reptil"@de, "reptile"@en, "reptile"@fr, "ερπετό"@el, "رینگنے والا"@ur, "爬虫類"@ja ; + rdfs:subClassOf :Animal ; + prov:wasDerivedFrom . + +:ResearchProject + a owl:Class ; + rdfs:comment "A research project is a scientific investigation, usually using scientific methods, to achieve defined objectives."@en, "Ένα ερευνητικό έργο είναι μια επιστημονική έρευνα, συνήθως με τη χρήση επιστημονικών μεθόδων, για την επίτευξη των καθορισμένων στόχων."@el, "ایک تحقیقی منصوبہ ایک سائنسی تحقیقات ہے، عام طور پر بیان کردہ مقاصد کو حاصل کرنے کے لیے سائنسی طریقوں کا استعمال کرتے ہوئے"@ur ; + rdfs:label "Forschungsprojekt"@de, "onderzoeksproject"@nl, "projet de recherche"@fr, "proyecto de investigación"@es, "research project"@en, "tionscadal taighde"@ga, "ερευνητικό έργο"@el, "تحقیقاتی منصوبہ"@ur ; + rdfs:subClassOf :Project ; + owl:equivalentClass wikidata:Q1298668 ; + prov:wasDerivedFrom . + +:RestArea + a owl:Class ; + rdfs:comment "A rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station"@en, "Une aire de repos fait partie d'une route, destinée à s'arrêter et à se reposer. Le plus souvent, il y a une station-service"@fr, "آرام گاہ ایک سڑک کا حصہ ہے، جس کا مقصد رکنا اور آرام کرنا ہے"@ur ; + rdfs:label "Rasthof"@de, "aire de repos"@fr, "rest area"@en, "rustplaats"@nl, "آرام گاہ"@ur ; + rdfs:subClassOf :Infrastructure ; + prov:wasDerivedFrom . + +:Restaurant + a owl:Class ; + rdfs:label "Restaurant"@de, "bialann"@ga, "restauracja"@pl, "restaurant"@en, "restaurant"@fr, "restaurant"@nl, "εστιατόριο"@el, "ریستوراں"@ur, "レストラン"@ja ; + rdfs:subClassOf :Building ; + owl:equivalentClass , wikidata:Q11707 ; + prov:wasDerivedFrom . + +:Resume + a owl:Class ; + rdfs:comment "A Resume describes a persons work experience and skill set."@en, "Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden."@nl, "Un curriculum vitae (CV) résume l'expérience d'une personne dans le travail ainsi que ses compétences."@fr, "ایک ریزیوم (تعليمی کوائف) کسی شخص کے کام کے تجربے اور مہارت کے سیٹ کو بیان کرتا ہے۔"@ur ; + rdfs:label "CV"@nl, "Lebenslauf"@de, "Resume"@en, "curriculum vitae"@fr, "Βιογραφικό σημείωμα"@el, "سی وی/تعليمی کوائف"@ur, "職務経歴書"@ja ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:River + a owl:Class ; + rdfs:comment "a large natural stream"@en, "ایک بڑی قدرتی ندی"@ur ; + rdfs:label "Fluss"@de, "abhainn"@ga, "rio"@pt, "river"@en, "rivier"@nl, "rivière"@fr, "ποτάμι"@el, "دریا"@ur, "ወንዝ"@am, "川"@ja, "강"@ko ; + rdfs:subClassOf :Stream ; + owl:equivalentClass , wikidata:Q4022 ; + prov:wasDerivedFrom . + +:Road + a owl:Class ; + rdfs:label "Straße"@de, "bóthar"@ga, "carretera"@ca, "carretera"@es, "droga"@pl, "road"@en, "route"@fr, "weg"@nl, "δρόμος"@el, "سڑک"@ur, "道路"@ja, "도로"@ko ; + rdfs:subClassOf :RouteOfTransportation ; + owl:equivalentClass wikidata:Q34442 ; + prov:wasDerivedFrom . + +:RoadJunction + a owl:Class ; + rdfs:comment "A road junction is a location where vehicular traffic going in different directions can proceed in a controlled manner designed to minimize accidents. In some cases, vehicles can change between different routes or directions of travel (http://en.wikipedia.org/wiki/Junction_%28road%29)."@en, "Eine Straßenkreuzung ist eine Stelle, an der sich zwei oder mehrere Straßen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung)."@de, "Un carrefour est un endroit où le trafic automobile allant dans différentes directions, peut se réaliser d'une manière contrôlée conçue pour minimiser les accidents. Dans certains cas, les véhicules peuvent changer de route ou la direction de leur parcours (http://en.wikipedia.org/wiki/Junction_%28road%29)."@fr, "روڈ جنکشن ایک ایسی جگہ ہے جہاں مختلف سمتوں میں جانے والی گاڑیوں کی ٹریفک حادثات کو کم کرنے کے لیے بنائے گئے کنٹرول کے انداز میں آگے بڑھ سکتی ہے۔ بعض صورتوں میں، گاڑیاں مختلف راستوں یا سفر کی سمتوں کے درمیان بدل سکتی ہیں۔ (http://en.wikipedia.org/wiki/Junction_%28road%29)."@ur ; + rdfs:label "Straßenkreuzung"@de, "acomhal bóithre"@ga, "carrefour"@fr, "road junction"@en, "wegkruising"@nl, "وہ جگہ جہاں دو یا دو سے زیادہ راستے ملتے ہیں"@ur ; + rdfs:subClassOf :RouteOfTransportation ; + prov:wasDerivedFrom . + +:RoadTunnel + a owl:Class ; + rdfs:label "Straßentunnel"@de, "road tunnel"@en, "tollán bóthair"@ga, "tunnel routier"@fr, "wegtunnel"@nl, "Οδική σήραγγα"@el, "سڑک کی سرنگ"@ur ; + rdfs:subClassOf :RouteOfTransportation ; + owl:equivalentClass wikidata:Q2354973 ; + prov:wasDerivedFrom . + +:Robot + a owl:Class ; + rdfs:label "Robot"@en, "Robot"@fr, "Robot"@nl, "Робота"@ru, "روبوٹ/مشین"@ur ; + rdfs:subClassOf :Device ; + prov:wasDerivedFrom . + +:Rocket + a owl:Class ; + rdfs:label "Rakete"@de, "fusée"@fr, "raket"@nl, "rocket"@en, "roicéad"@ga, "πύραυλος"@el, "میزائل"@ur, "ロケット"@ja, "로켓"@ko ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q41291 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:comment "Payload mass in a typical Low Earth orbit"@en ; + rdfs:domain :Rocket ; + rdfs:label "lower earth orbit payload (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Rocket ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + +:RocketEngine + a owl:Class ; + rdfs:label "Raketmotor"@de, "raketmotor"@nl, "rocket engine"@en, "راکٹ انجن"@ur ; + rdfs:subClassOf :Engine ; + prov:wasDerivedFrom . + +:RollerCoaster + a owl:Class ; + rdfs:label "Achterbahn"@de, "achtbaan"@nl, "montagne russe"@it, "rollchóstóir"@ga, "roller coaster"@en, "τρενάκι σε λούνα παρκ"@el, "رولر کوسٹر"@ur ; + rdfs:subClassOf :AmusementParkAttraction ; + prov:wasDerivedFrom . + +:RomanEmperor + a owl:Class ; + rdfs:label "Romeinse keizer"@nl, "empereur romain"@fr, "roman emperor"@en, "römischer Kaiser"@de, "ρωμαίος αυτοκράτορας"@el, "رومن شہنشاہ"@ur ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q842606 ; + prov:wasDerivedFrom . + +:RouteOfTransportation + a owl:Class ; + rdfs:comment "A route of transportation (thoroughfare) may refer to a public road, highway, path or trail or a route on water from one place to another for use by a variety of general traffic (http://en.wikipedia.org/wiki/Thoroughfare)."@en, "Unter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen Güter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann für die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg)."@de, "نقل و حمل کا ایک راستہ (مکمل راستہ) ایک عام سڑک ، شاہراہ ، راستہ یا راستے پر پانی سے ایک جگہ سے دوسری جگہ پر جانے کا حوالہ دے سکتا ہے"@ur ; + rdfs:label "Transportweg"@de, "Vía de transporte"@es, "route of transportation"@en, "نقل و حمل کا راستہ"@ur ; + rdfs:subClassOf :Infrastructure ; + prov:wasDerivedFrom . + +:RouteStop + a owl:Class ; + rdfs:comment "Betriebsstelle im öffentlichen Verkehr, an denen Fahrgäste ein- und aussteigen"@de, "designated place where vehicles stop for passengers to board or alight"@en, "une étape ou un arrêt sur une route"@fr ; + rdfs:label "Haltestelle"@de, "halte"@nl, "route stop"@en, "étape"@fr, "رکنے کی جگہ"@ur ; + rdfs:subClassOf :Station ; + prov:wasDerivedFrom . + +:Rower + a owl:Class ; + rdfs:label "Ruderer"@de, "canottiere"@it, "roeier"@nl, "rower"@en, "rámhaí"@ga, "κωπηλάτης"@el, "سوار"@ur, "漕艇選手"@ja ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13382576 ; + prov:wasDerivedFrom . + +:Royalty + a owl:Class ; + rdfs:label "Königtum"@de, "kraljevska oseba"@sl, "lid koningshuis"@nl, "realeza"@es, "royalty"@en, "royauté"@fr, "γαλαζοαίματος"@el, "شاہی"@ur, "王室"@ja, "왕족"@ko ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:RugbyClub + a owl:Class ; + rdfs:label "Rugby-Club"@de, "club de rugby"@fr, "club rugbaí"@ga, "rugby club"@en, "rugby club"@nl, "ομάδα ράγκμπι"@el, "رگبی کلب"@ur ; + rdfs:subClassOf :SportsClub ; + prov:wasDerivedFrom . + +:RugbyLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in rugby."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو رگبی میں ایک دوسرے سے مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Rugby-Liga"@de, "ligue de rugby"@fr, "rugby competitie"@nl, "rugby league"@en, "sraith rugbaí"@ga, "πρωτάθλημα rugby"@el, "رگبی مقابلہ/رگبی لیگ"@ur ; + rdfs:subClassOf :SportsLeague ; + owl:equivalentClass wikidata:Q10962 ; + prov:wasDerivedFrom . + +:RugbyPlayer + a owl:Class ; + rdfs:label "Rugbyspieler"@de, "imreoir rugbaí"@ga, "joueur de rugby"@fr, "rugby player"@en, "rugbyspeler"@nl, "παίκτης rugby"@el, "رگبی کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13415036 ; + prov:wasDerivedFrom . + +:Sailor + a owl:Class ; + rdfs:label "Marinela"@eu, "Navigatrice"@fr, "Sailor"@en, "Sømand"@da, "بحار"@ar, "ملاح"@ur, "नाविक"@hi ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Saint + a owl:Class ; + rdfs:label "Heilige"@de, "heilige"@nl, "naomh"@ga, "saint"@en, "saint"@fr, "Πληροφορίες Αγίου"@el, "ولی"@ur, "聖人"@ja, "성인"@ko ; + rdfs:subClassOf :Cleric ; + owl:equivalentClass wikidata:Q43115 ; + prov:wasDerivedFrom . + +:Sales + a owl:Class ; + rdfs:label "Vertrieb"@de, "díolacháin"@ga, "sales"@en, "vente"@fr, "verkoop"@nl, "εκπτώσεις"@el, "فروخت"@ur, "販売"@ja ; + rdfs:subClassOf :Activity ; + owl:equivalentClass wikidata:Q194189 ; + prov:wasDerivedFrom . + +:SambaSchool + a owl:Class ; + rdfs:label "Sambaschule"@de, "escola de samba"@pt, "escuela de samba"@es, "samba school"@en, "samba school"@nl, "école de samba"@fr, "σχολή σάμπα"@el, "برازیلی رقص سکول"@ur ; + rdfs:subClassOf :Organisation ; + prov:wasDerivedFrom . + +:Satellite + a owl:Class ; + rdfs:comment "An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7)."@en, "Ένα αστρονομικό αντικείμενο που βρίσκεται σε τροχιά γύρω από έναν πλανήτη ή αστέρι."@el, "ایک فلکیاتی شے جو کسی سیارے یا ستارے کے گرد چکر لگاتی ہے"@ur ; + rdfs:label "Satellite"@de, "Satellite"@en, "satailít"@ga, "satelliet"@nl, "satellite"@fr, "δορυφόρος"@el, "ثانوی سیاره"@ur ; + rdfs:subClassOf :CelestialBody ; + prov:wasDerivedFrom . + +:School + a owl:Class ; + rdfs:label "Schule"@de, "escola"@pt, "escuela"@es, "school"@en, "school"@nl, "scoil"@ga, "scuola"@it, "skole"@da, "szkoła"@pl, "école"@fr, "σχολείο"@el, "مدرسه"@ur, "学校"@ja, "학교"@ko ; + rdfs:subClassOf :EducationalInstitution ; + owl:equivalentClass , wikidata:Q3914 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "campus size (km2)"@en, "جامعہ کا ناپ (km2)"@ur ; + rdfs:range . + +:ScientificConcept + a owl:Class ; + rdfs:comment "Concepts scientifiques tels que la théorie de la relativité, la gravité quantique"@fr, "Scientific concepts, e.g. Theory of relativity, Quantum gravity"@en, "سائنسی تصورات، جیسے نظریہ اضافیت، کوانٹم کشش ثقل"@ur ; + rdfs:label "Scientific concept"@en, "concept scientifique"@fr, "wetenschappelijke theorie"@nl, "wissenschaftliche Theorie"@de, "سائنسی تصور"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:Scientist + a owl:Class ; + rdfs:label "Wissenschaftler"@de, "eolaí"@ga, "scientifique"@fr, "scientist"@en, "wetenschapper"@nl, "Επιστήμονας"@el, "سائنسدان"@ur, "বিজ্ঞানী"@bn, "科学者"@ja, "과학자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q901 ; + prov:wasDerivedFrom . + +:ScreenWriter + a owl:Class ; + rdfs:comment "Ο σεναριογράφος όχι μόνο γράφει την υπόθεση μιας σειράς άλλα είναι αυτός που επινοεί και τους πρωταγωνιστές του έργου."@el, "قلم کار نہ صرف سیریز کا پلاٹ لکھتا ہے بلکہ ڈرامے کے مرکزی کرداروں کو ایجاد کرنے والا بھی ہوتا ہے"@ur ; + rdfs:label "Drehbuchautor"@de, "scenarioschrijver"@nl, "sceneggiatore"@it, "screenwriter"@en, "scríbhneoir scáileáin"@ga, "scénariste"@fr, "σεναριογράφος"@el, "قلم کار"@ur ; + rdfs:subClassOf :Writer ; + owl:equivalentClass wikidata:Q28389 ; + prov:wasDerivedFrom . + +:Sculptor + a owl:Class ; + rdfs:label "Bildhauer"@de, "beeldhouwer"@nl, "dealbhóir"@ga, "sculpteur"@fr, "sculptor"@en, "γλύπτης"@el, "مجسمہ ساز"@ur, "彫刻家"@ja ; + rdfs:subClassOf :Artist ; + prov:wasDerivedFrom . + +:Sculpture + a owl:Class ; + rdfs:comment "Een beeldhouwwerk is een drie-dimensionaal kunstvoorwerp of plastiek, gemaakt van harde materialen zoals steen of metaal. Ook kunnen textiel of kunststoffen erin verwerkt zijn of het hoofdbestanddeel ervan uitmaken."@nl, "Sculpture is three-dimensional artwork created by shaping or combining hard materials, typically stone such as marble, metal, glass, or wood, or plastic materials such as clay, textiles, polymers and softer metals."@en, "Γλυπτική είναι τρισδιάστατο έργο τέχνης το οποίο δημιουργήθηκε από τη διαμόρφωση ή συνδυάζοντας σκληρά υλικά, τυπικώς πέτρα όπως μάρμαρο, μέταλλο, γυαλί, ή ξύλο, ή πλαστικά υλικά όπως άργιλος, υφάσματα, πολυμερή και μαλακότερα μέταλλα."@el, "مجسمہ تین جہتی فَن کا کام ہے جو سخت مواد کی تشکیل یا امتزاج سے بنایا گیا ہے، عام طور پر پتھر جیسے سنگ مرمر، دھات، شیشہ، یا لکڑی، یا پلاسٹک کے مواد جیسے مٹی، ٹیکسٹائل، پولیمر اور نرم دھات۔"@ur ; + rdfs:label "Sculpture"@en, "Skulptur"@de, "beeldhouwwerk"@nl, "sculpture"@fr, "scultura"@it, "Γλυπτική"@el, "مجسمہ"@ur, "彫刻"@ja ; + rdfs:subClassOf :Artwork ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Sea + a owl:Class ; + rdfs:comment "Masse d'eau salée qui constitue la majeure partie de l'hydrosphère de la planète."@fr, "نمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔"@ur ; + rdfs:label "Meer"@de, "farraige"@ga, "mar"@pt, "mer"@fr, "sea"@en, "zee"@nl, "θάλασσα"@el, "سمندر"@ur, "海"@ja ; + rdfs:subClassOf :BodyOfWater ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Senator + a owl:Class ; + rdfs:label "Senator"@de, "seanadóir"@ga, "senador"@es, "senator"@en, "senator"@nl, "sénateur"@fr, "γερουσιαστής"@el, "سینیٹ کا رُکن"@ur, "上院議員"@ja ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:SerialKiller + a owl:Class ; + rdfs:label "Serienmörder"@de, "serial killer"@en, "seriemoordenaar"@nl, "tueur en série"@fr, "κατά συρροήν δολοφόνος"@el, "سلسلہ وار قاتل"@ur ; + rdfs:subClassOf :Murderer ; + owl:equivalentClass wikidata:Q484188 ; + prov:wasDerivedFrom . + +:Settlement + a owl:Class ; + rdfs:label "Siedlung"@de, "bardas"@ga, "nederzetting"@nl, "settlement"@en, "zone peuplée"@fr, "οικισμός"@el, "بستی"@ur, "居住地"@ja ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q486972 ; + prov:wasDerivedFrom . + +:Ship + a owl:Class ; + rdfs:label "Schiff"@de, "barco"@es, "navire"@fr, "schip"@nl, "ship"@en, "statek"@pl, "árthach"@ga, "πλοίο"@el, "جہاز"@ur, "舩"@ja, "배"@ko ; + rdfs:subClassOf :MeanOfTransportation, ; + owl:equivalentClass wikidata:Q11446 ; + prov:wasDerivedFrom . + +:ShoppingMall + a owl:Class ; + rdfs:label "Einkaufszentrum"@de, "centre commercial"@fr, "ionad siopadóireachta"@ga, "shopping"@pt, "shopping mall"@en, "winkelcentrum"@nl, "εμπορικό κέντρο"@el, "خریداری کرنے کے لیے مختص جگہ"@ur, "ショッピングモール"@ja, "쇼핑몰"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass , wikidata:Q11315 ; + prov:wasDerivedFrom . + +:Shrine + a owl:Class ; + rdfs:label "heiligdom"@nl, "sanctuaire"@fr, "santuario"@it, "schrein"@de, "shrine"@en, "βωμός"@el, "مزار"@ur, "神社"@ja ; + rdfs:subClassOf :ReligiousBuilding ; + owl:equivalentClass wikidata:Q697295 ; + prov:wasDerivedFrom . + +:Singer + a owl:Class ; + rdfs:comment "Tout chanteur(euse) (incluant soliste et choriste, interprète, chanteur-instrumentaliste, etc). Tout artiste solo qui compose et/ou fait partie d'un groupe."@fr, "a person who sings."@en, "ένα άτομο που τραγουδά."@el, "ایک شخص جو گاتا ہے"@ur ; + rdfs:label "Singer"@en, "Sänger"@de, "amhránaí"@ga, "chanteur"@fr, "zanger"@nl, "Τραγουδιστής"@el, "گلوکار"@ur, "ድምጻዊ"@am, "歌手"@ja ; + rdfs:subClassOf :MusicalArtist ; + owl:equivalentClass wikidata:Q177220 ; + prov:wasDerivedFrom . + +:Single + a owl:Class ; + rdfs:comment "En musique, un single ou encore un disque 45 tours est un format de diffusion; c'est typiquement un enregistrement de quelques pistes dont le nombre est plus petit que pour un LP (un disque 33 tours) ou un CD."@fr, "In music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD."@en, "موسیقی میں، سنگل یا ریکارڈ سنگل ریلیز کی ایک قسم ہے، عام طور پر ایل پی یا سی ڈی سے کم ٹریک کی ریکارڈنگ"@ur ; + rdfs:label "Single"@de, "singil"@ga, "single"@el, "single"@en, "single"@fr, "single"@nl, "اکیلا"@ur, "シングル"@ja, "싱글"@ko ; + rdfs:subClassOf :MusicalWork ; + owl:equivalentClass wikidata:Q134556 ; + prov:wasDerivedFrom . + +:SingleList + a owl:Class ; + rdfs:comment "A list of singles"@en, "Liste de singles (disques 45 tours)"@fr, "اِنفرادی فہرست"@ur ; + rdfs:label "liste de singles"@fr, "single list"@en, "ایک فہرست"@ur ; + rdfs:subClassOf :List ; + prov:wasDerivedFrom . + +:SiteOfSpecialScientificInterest + a owl:Class ; + rdfs:comment "A Site of Special Scientific Interest (SSSI) is a conservation designation denoting a protected area in the United Kingdom. SSSIs are the basic building block of site-based nature conservation legislation and most other legal nature/geological conservation designations in Great Britain are based upon them, including National Nature Reserves, Ramsar Sites, Special Protection Areas, and Special Areas of Conservation."@en, "خصوصی سائنسی دلچسپی کی سائٹ (SSSI) ایک تحفظ کا عہدہ ہے جو برطانیہ میں ایک محفوظ علاقے کی نشاندہی کرتا ہے۔ SSSIs سائٹ پر مبنی فطرت کے تحفظ سے متعلق قانون سازی کا بنیادی تعمیراتی حصہ ہیں اور برطانیہ میں بیشتر دیگر قانونی نوعیت/ارضیاتی تحفظ کے عہدہ ان پر مبنی ہیں، بشمول نیشنل نیچر ریزرو، رامسر سائٹس، خصوصی تحفظ کے علاقے، اور تحفظ کے خصوصی علاقے"@ur ; + rdfs:label "Láithreán Sainspéis Eolaíochta"@ga, "Site of Special Scientific Interest"@en, "plaats met bijzonder wetenschappelijk belang"@nl, "site d'intérêt scientifique particulier"@fr, "wissenschaftliche Interessenvertretung für Denkmalschutz"@de, "Τοποθεσία Ειδικού Επιστημονικού Ενδιαφέροντος"@el, "خصوصی سائنسی دلچسپی کی سائٹ"@ur, "自然保護協会特別指定地区"@ja ; + rdfs:subClassOf :Place ; + owl:equivalentClass wikidata:Q422211 ; + prov:wasDerivedFrom . + +:Skater + a owl:Class ; + rdfs:label "Schlittschuhläufer"@de, "pattinatore"@it, "schaatser"@nl, "scátálaí"@ga, "skater"@en, "παγοδρόμος"@el, "اسکیٹ کرنے والا"@ur, "スケート選手"@ja ; + rdfs:subClassOf :WinterSportPlayer ; + owl:equivalentClass wikidata:Q847400 ; + prov:wasDerivedFrom . + +:SkiArea + a owl:Class ; + rdfs:label "Skigebiet"@de, "domaine skiable"@fr, "láthair sciála"@ga, "ski area"@en, "Περιοχή Χιονοδρομίας"@el, "اسکی کاعلاقہ"@ur, "スキー場"@ja ; + rdfs:subClassOf :SportFacility ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:SkiResort + a owl:Class ; + rdfs:comment "Το θέρετρο σκι χρησιμοποιείται για να περιγράψει έναν τόπο διακοπών με τις απαραίτητες εγκαταστάσεις διαμονής και εξάσκησης του χειμερινού αθλήματος της χιονοδρομίας"@el, "پھسلن کھیل میدان کا استعمال چھٹیوں کے مقام کو بیان کرنے کے لیے کیا جاتا ہے جس میں قیام اور اسکیئنگ کے موسم سرما کے کھیل کی مشق کے لیے ضروری سہولیات موجود ہیں"@ur ; + rdfs:label "Skigebiet"@de, "baile sciála"@ga, "ski resort"@en, "skioord"@nl, "station de ski"@fr, "θέρετρο σκι"@el, "پھسلن کھیل کا میدان"@ur ; + rdfs:subClassOf :SkiArea ; + owl:equivalentClass wikidata:Q130003 ; + prov:wasDerivedFrom . + +:Ski_jumper + a owl:Class ; + rdfs:label "Skispringer"@de, "ski jumper"@en, "skispringer"@nl, "ہوا میں چھلانگ لگانے والا"@ur ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:Skier + a owl:Class ; + rdfs:label "sciatore"@it, "sciálaí"@ga, "skier"@en, "skieur"@fr, "skifahrer"@de, "skiër"@nl, "σκιέρ"@el, "اسکی باز"@ur, "スキーヤー"@ja ; + rdfs:subClassOf :WinterSportPlayer ; + owl:equivalentClass wikidata:Q4270517 ; + prov:wasDerivedFrom . + +:Skos + a owl:Class ; + rdfs:label "Concept"@en, "تصور"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Skyscraper + a owl:Class ; + rdfs:label "Hochhaus"@de, "gratte-ciel"@fr, "ilstórach"@ga, "skyscraper"@en, "wolkenkrabber"@nl, "ουρανοξύστης"@el, "فلک بوس عمارت"@ur, "超高層建築物"@ja, "초고층 건물"@ko ; + rdfs:subClassOf :Building ; + owl:equivalentClass wikidata:Q11303 ; + prov:wasDerivedFrom . + +:SnookerChamp + a owl:Class ; + rdfs:comment "An athlete that plays snooker and won the world championship at least once"@en, "Ein Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hat"@de, "کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں"@ur ; + rdfs:label "Snookerweltmeister"@de, "curadh domhanda sa snúcar"@ga, "snooker world champion"@en, "wereldkampioen snooker"@nl, "سنوکر کا فاتح"@ur ; + rdfs:subClassOf :SnookerPlayer ; + prov:wasDerivedFrom . + +:SnookerPlayer + a owl:Class ; + rdfs:comment "An athlete that plays snooker, which is a billard derivate"@en, "Ein Sportler der Snooker spielt, eine bekannte Billardvariante"@de, "ایک کھلاڑی جو سنوکر کھیلتا ہے، جو بلارڈ ڈیریویٹ ہے۔"@ur ; + rdfs:label "Snookerspieler"@de, "biljarter"@nl, "imreoir snúcair"@ga, "snooker player"@en, "سنوکر کے کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:SnookerWorldRanking + a owl:Class ; + rdfs:comment "Die offizielle Weltrangliste im Snooker eines Jahres / einer Saison"@de, "The official world ranking in snooker for a certain year/season"@en, "ایک مخصوص سال/سیزن کے لیے سنوکر میں آفیشل عالمی درجہ بندی"@ur ; + rdfs:label "Snookerweltrangliste"@de, "snooker world ranking"@en, "wereldranglijst snooker"@nl, "سنوکر کی عالمی درجہ بندی"@ur ; + rdfs:subClassOf :SportCompetitionResult ; + prov:wasDerivedFrom . + +:SoapCharacter + a owl:Class ; + rdfs:comment "Character of soap - radio or television serial frequently characterized by melodrama, ensemble casts, and sentimentality."@en, "Personnage de feuilleton mélodramatique ou sentimental pour la radio ou la télévision."@fr ; + rdfs:label "Soapoper Charakter"@de, "carachtar i sobaldráma"@ga, "personnage de feuilleton"@fr, "soap character"@en, "soap karakter"@nl, "χαρακτήρας σαπουνόπερας"@el, "سلسلہ وار ڈرامے کا کردار"@ur ; + rdfs:subClassOf :FictionalCharacter ; + prov:wasDerivedFrom . + +:SoccerClub + a owl:Class ; + rdfs:label "Fußballverein"@de, "club de football"@fr, "club de futbol"@ca, "club sacair"@ga, "equipo de fútbol"@es, "fodboldklub"@da, "klub piłkarski"@pl, "soccer club"@en, "voetbalclub"@nl, "ομάδα ποδοσφαίρου"@el, "فٹ بال تنظیم"@ur, "የእግር ኳስ ቡድን"@am ; + rdfs:subClassOf :SportsClub ; + owl:equivalentClass wikidata:Q476028 ; + prov:wasDerivedFrom . + +:SoccerClubSeason + a owl:Class ; + rdfs:label "Fußballverein Saison"@de, "soccer club season"@en, "voetbalseizoen"@nl, "فٹ بال کلب کا موسم"@ur ; + rdfs:subClassOf :SportsTeamSeason ; + prov:wasDerivedFrom . + +:SoccerLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in soccer."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔"@ur ; + rdfs:label "Fußball Liga"@de, "ligue de football"@fr, "soccer league"@en, "sraith sacair"@ga, "voetbal competitie"@nl, "Ομοσπονδία Ποδοσφαίρου"@el, "فٹ بال کی انجمن"@ur, "サッカーリーグ"@ja ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:SoccerLeagueSeason + a owl:Class ; + rdfs:label "Fußball-Liga Saison"@de, "futbol ligi sezonu"@tr, "soccer league season"@en, "voetbalseizoen"@nl, "περίοδος κυπέλλου ποδοσφαίρου"@el, "انجمن فٹ بال موسم"@ur ; + rdfs:subClassOf :SportsTeamSeason ; + prov:wasDerivedFrom . + +:SoccerManager + a owl:Class ; + rdfs:label "Fußballmanager"@de, "bainisteoir sacair"@ga, "entraîneur de football"@fr, "gerente de fútbol"@es, "soccer manager"@en, "voetbalmanager"@nl, "προπονητής ποδοσφαίρου"@el, "فٹ بال منتظم"@ur, "サッカーマネージャー"@ja ; + rdfs:subClassOf :SportsManager ; + owl:equivalentClass wikidata:Q628099 ; + prov:wasDerivedFrom . + +:SoccerPlayer + a owl:Class ; + rdfs:label "Fußballspieler"@de, "calciatore"@it, "fodboldspiller"@da, "futbolista"@es, "imreoir sacair"@ga, "joueur de football"@fr, "soccer player"@en, "voetballer"@nl, "παίχτης ποδοσφαίρου"@el, "فٹبال کا کھلاڑی"@ur, "サッカー選手"@ja, "축구 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q937857 ; + prov:wasDerivedFrom . + +:SoccerTournament + a owl:Class ; + rdfs:label "Fußballturnier"@de, "campeonato de futebol"@pt, "comórtas sacair"@ga, "futbol turnuvası"@tr, "soccer tournoment"@en, "voetbal toernooi"@nl, "τουρνουά ποδοσφαίρου"@el, "فٹ بال باہمی مقابلہ"@ur, "サッカートーナメント"@ja ; + rdfs:subClassOf :Tournament ; + prov:wasDerivedFrom . + +:SocietalEvent + a owl:Class ; + rdfs:comment "an event that is clearly different from strictly personal events"@en, "ایک ایسا واقعہ جو سختی سے ذاتی واقعات سے واضح طور پر مختلف ہو"@ur ; + rdfs:label "gesellschatliches Ereignis"@de, "maatschappelijke gebeurtenis"@nl, "societal event"@en, "évènement collectif"@fr, "معاشرتی واقعہ"@ur ; + rdfs:subClassOf :Event ; + prov:wasDerivedFrom . + +:SoftballLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in softball."@en, "Ομάδες που ανταγωνίζονται στο αγώνισμα του σόφτμπολ."@el, "کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے"@ur ; + rdfs:label "Softball Liga"@de, "ligue de softball"@fr, "softball competitie"@nl, "softball league"@en, "sraith bogliathróide"@ga, "πρωτάθλημα σόφτμπολ"@el, "سافٹ بال انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Software + a owl:Class ; + rdfs:label "Software"@de, "bogearraí"@ga, "logiciel"@fr, "logiciário"@pt, "programska oprema"@sl, "software"@da, "software"@en, "software"@nl, "λογισμικό"@el, "تحریری پروگراموں کا مجموعہ"@ur, "ソフトウェア"@ja, "소프트웨어"@ko ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q7397 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:comment "size of a file or software"@en, "μέγεθος ενός ηλεκτρονικού αρχείου"@el ; + rdfs:domain :Software ; + rdfs:label "Dateigröße (MB)"@de, "size (MB)"@en, "taille de fichier (MB)"@fr, "μέγεθος αρχείου (MB)"@el ; + rdfs:range . + +:SolarEclipse + a owl:Class ; + rdfs:comment "Έκλειψη ηλίου ονομάζεται το φαινόμενο κατά το οποίο η Σελήνη παρεμβάλλεται ανάμεσα στον Ήλιο και τη Γη, με αποτέλεσμα ορισμένες περιοχές της Γης να δέχονται λιγότερο φως από ό,τι συνήθως."@el, "سورج گرہن ایک ایسا واقعہ ہے جس میں چاند سورج اور زمین کے درمیان مداخلت کرتا ہے، جس کی وجہ سے زمین کے کچھ علاقوں کو معمول سے کم روشنی ملتی ہے"@ur ; + rdfs:label "Sonnenfinsternis"@de, "eclissi solare"@it, "solar eclipse"@en, "urú na gréine"@ga, "zonsverduistering"@nl, "éclipse de soleil"@fr, "έκλειψη ηλίου"@el, "سورج گرہن"@ur ; + rdfs:subClassOf :NaturalEvent ; + owl:equivalentClass wikidata:Q3887 ; + prov:wasDerivedFrom . + +:Song + a owl:Class ; + rdfs:label "amhrán"@ga, "canzone"@it, "chanson"@fr, "lied"@de, "lied"@nl, "sang"@da, "song"@en, "τραγούδι"@el, "گانا"@ur, "ዘፈን"@am, "歌"@ja, "노래"@ko ; + rdfs:subClassOf :MusicalWork, ; + prov:wasDerivedFrom . + +:SongWriter + a owl:Class ; + rdfs:comment "a person who writes songs."@en, "een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft."@nl, "ایک شخص جو گانے لکھتا ہے۔"@ur ; + rdfs:label "Liedschreiber"@de, "auteur-compositeur"@fr, "sangskriver"@da, "songwriter"@en, "songwriter (tekstdichter)"@nl, "نغمہ نگار"@ur ; + rdfs:subClassOf :Writer ; + owl:equivalentClass wikidata:Q753110 ; + prov:wasDerivedFrom . + +:Sound + a owl:Class ; + rdfs:comment "An audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/Sound"@en, "Un document sonore à écouter; équivalent à http://purl.org/dc/dcmitype/Sound"@fr, "Μεταβολή στην πίεση του ατμοσφαιρικού αέρα που διεγείρει το αισθητήριο όργανο της ακοής μέσω ηχητικών κυμάτων"@el, "صوتی لہروں کے ذریعے سماعت کے حسی اعضاء سے محرک ہوا کے دباؤ میں تبدیلی"@ur ; + rdfs:label "Lied"@de, "audio"@fr, "fuaim"@ga, "geluid"@nl, "lyd"@da, "sound"@en, "ήχος"@el, "آواز"@ur, "音"@ja ; + rdfs:subClassOf :Document ; + prov:wasDerivedFrom . + +:SpaceMission + a owl:Class ; + rdfs:label "Weltraummission"@de, "misean spáís"@ga, "misión espacial"@es, "mission spatiale"@fr, "ruimtemissie"@nl, "space mission"@en, "διαστημική αποστολή"@el, "خلائی مہم"@ur, "우주 임무"@ko ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass wikidata:Q2133344 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "CMP EVA duration (ω)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Zurückgelegte Entfernung (km)"@de, "afgelegde afstand (km)"@nl, "distance traveled (km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar EVA time (ω)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Mondumlaufzeit (ω)"@de, "lunar orbit time (ω)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar sample mass (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar surface time (ω)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Masse (kg)"@de, "mass (kg)"@en, "μάζα (kg)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Missionsdauer (μ)"@de, "mission duration (μ)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "station EVA duration (ω)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "station visit duration (ω)"@en ; + rdfs:range . + +:SpaceShuttle + a owl:Class ; + rdfs:label "Raumfähre"@de, "navette spatiale"@fr, "ruimteveer"@nl, "space shuttle"@en, "spástointeáil"@ga, "διαστημικό λεωφορείο"@el, "خلائی جہاز"@ur, "우주 왕복선"@ko ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q48806 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "Entfernung (km)"@de, "distance (km)"@en, "distance (km)"@fr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "Gesamtzeit welche die Person im Weltraum verbracht hat (μ)"@de, "temps total passé dans l'espace par la personne (μ)"@fr, "total time person has spent in space (μ)"@en ; + rdfs:range . + +:SpaceStation + a owl:Class ; + rdfs:label "Raumstation"@de, "estación espacial"@es, "ruimtestation"@nl, "space station"@en, "station spatiale"@fr, "stáisiún spáis"@ga, "διαστημικός σταθμός"@el, "خلائی اڈہ"@ur, "우주 정거장"@ko ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q25956 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :SpaceStation ; + rdfs:label "Volumen (μ³)"@de, "volume (μ³)"@en, "volume (μ³)"@fr, "volume (μ³)"@nl, "όγκος (μ³)"@el, "запремина (μ³)"@sr ; + rdfs:range . + +:Spacecraft + a owl:Class ; + rdfs:label "Raumfahrzeug"@de, "ruimtevaartuig"@nl, "spacecraft"@en, "spásárthach"@ga, "vaisseau spatial"@fr, "διαστημόπλοιο"@el, "خلائی جہاز"@ur, "宇宙機"@ja, "우주선"@ko ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q40218 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Apoapsisdistanz (km)"@de, "apoapsis (km)"@en, "απόαψης (km)"@el, "апоапсис (km)"@sr ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo fuel (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo gas (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo water (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "docked time (μ)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Trockenfracht (kg)"@de, "droge last (kg)"@nl, "dry cargo (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "free flight time (μ)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Periapsisdistanz (km)"@de, "periapsis (km)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "total cargo (kg)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Gesamtmasse (kg)"@de, "total mass (kg)"@en ; + rdfs:range . + +:Species + a owl:Class ; + rdfs:comment "A category in the rating system"@en, "درجہ بندی کے نظام میں ایک زمرہ"@ur ; + rdfs:label "Spezie"@de, "arter"@da, "especies"@es, "espèces"@fr, "soort"@nl, "species"@en, "speiceas"@ga, "είδος"@el, "قسم"@ur, "種_(分類学)"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:SpeedSkater + a owl:Class ; + rdfs:comment "ایک آئس سکیٹر جو مسابقتی طور پر دوڑتا ہے۔ عام طور پر ایک اوول کورس کے ارد گرد"@ur ; + rdfs:label "Eisschnellläufer"@de, "langebaanschaatser"@nl, "speed skater"@en, "رفتار سکیٹر"@ur ; + rdfs:subClassOf :WinterSportPlayer ; + prov:wasDerivedFrom . + +:SpeedwayLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in motorcycle speedway racing."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو موٹرسائیکل سپیڈ وے ریسنگ میں ایک دوسرے سے مقابلہ کرتا ہے"@ur ; + rdfs:label "Speedway Liga"@de, "ligue de speedway"@fr, "speedway competitie"@nl, "speedway league"@en, "πρωτάθλημα αυτοκινητοδρόμου"@el, "تیز راہ کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:SpeedwayRider + a owl:Class ; + rdfs:label "Speedway Fahrer"@de, "speedway rider"@en, "speedway rijder"@nl, "تیز راہ سوار"@ur ; + rdfs:subClassOf :MotorcycleRider ; + prov:wasDerivedFrom . + +:SpeedwayTeam + a owl:Class ; + rdfs:label "Speedwayteam"@de, "foireann luasbhealaigh"@ga, "klub żużlowy"@pl, "speedway team"@en, "speedwayteam"@nl, "سپیڈ وے ٹیم"@ur ; + rdfs:subClassOf :SportsTeam ; + prov:wasDerivedFrom . + +:Sport + a owl:Class ; + rdfs:comment "A sport is commonly defined as an organized, competitive, and skillful physical activity."@en, """ایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔ +."""@ur ; + rdfs:label "Deporte"@es, "Sportart"@de, "esporte"@pt, "sport"@en, "sport"@fr, "sport"@nl, "spórt"@ga, "Αθλήματα"@el, "Вид спорта"@ru, "کھیل"@ur, "スポーツ"@ja, "스포츠"@ko ; + rdfs:subClassOf :Activity ; + owl:equivalentClass wikidata:Q349 ; + prov:wasDerivedFrom . + +:SportCompetitionResult + a owl:Class ; + rdfs:label "Ergebnisse eines Sportwettbewerbs"@de, "resultados de una competición deportiva"@es, "results of a sport competition"@en, "résultats d'une compétition sportive"@fr, "uitslag van een sport competitie"@nl, "αποτελέσματα αθλητικού διαγωνισμού"@el, "کھیلوں کے مقابلے کا نتیجہ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:SportFacility + a owl:Class ; + rdfs:label "Sportanlage"@de, "installation sportive"@fr, "sport facility"@en, "sportfaciliteit"@nl, "αθλητικές εγκαταστάσεις"@el, "کھیل کی سہولت"@ur ; + rdfs:subClassOf :ArchitecturalStructure ; + prov:wasDerivedFrom . + +:SportsClub + a owl:Class ; + rdfs:label "Sportverein"@de, "club de sport"@fr, "sportclub"@nl, "sports club"@en, "کھیلوں کی تنظیم"@ur ; + rdfs:subClassOf :Organisation ; + prov:wasDerivedFrom . + +:SportsEvent + a owl:Class ; + rdfs:comment "a event of competitive physical activity"@en, "مقابلتی جسمانی سرگرمی کا ایک واقعہ"@ur ; + rdfs:label "Sportereignis"@de, "evento esportivo"@pt, "sportevenement"@nl, "sports event"@en, "évènement sportif"@fr, "کھیلوں کی تقریب"@ur ; + rdfs:subClassOf :SocietalEvent ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:SportsLeague + a owl:Class ; + rdfs:comment "A group of sports teams or individual athletes that compete against each other in a specific sport."@en, "کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔"@ur ; + rdfs:label "Sportliga"@de, "liga deportiva"@es, "ligue sportive"@fr, "sport competitie"@nl, "sports league"@en, "Αθλητική Ομοσπονδία"@el, "کھیلوں کی انجمن"@ur, "スポーツリーグ"@ja, "스포츠 리그"@ko ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q623109 ; + prov:wasDerivedFrom . + +:SportsManager + a owl:Class ; + rdfs:comment "According to the french label sub Soccer, trainership could be meant. However, here a Sportsmanager is interpreted as a member of the board of a sporting club."@en, "Σύμφωνα με τη γαλλική ετικέτα Soccer,μπορεί να εννοείται ο προπονητής.Παρ'όλα αυτα,εδώ ένας αθλητικός μάνατζερ μεταφράζεται ως ένα μέλος συμβουλίου ενός αθλητικού κλαμπ."@el, "فرانسیسی لیبل سب ساکر کے مطابق، ٹرینر شپ کا مطلب ہو سکتا ہے۔ تاہم، یہاں ایک اسپورٹس مینیجر کو اسپورٹنگ کلب کے بورڈ کے رکن سے تعبیر کیا جاتا ہے"@ur ; + rdfs:label "Sportmanager"@de, "director deportivo"@es, "sportbestuurder"@nl, "sports manager"@en, "αθλητικός μάνατζερ"@el, "کھیلوں کا منتظم"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:SportsSeason + a owl:Class ; + rdfs:label "Sportsaison"@de, "sports season"@en, "sportseizoen"@nl, "περίοδος αθλημάτων"@el, "کھیلوں کا موسم"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:SportsTeam + a owl:Class ; + rdfs:label "Sportmannschaft"@de, "sports team"@en, "sportteam"@nl, "équipe sportive"@fr, "ομαδικά αθλήματα"@el, "کھیل کی جماعت"@ur, "スポーツチーム"@ja ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass , wikidata:Q12973014 ; + prov:wasDerivedFrom . + +:SportsTeamMember + a owl:Class ; + rdfs:comment "A member of an athletic team."@en, "lid van een athletisch team"@nl, "Μέλος αθλητικής ομάδας."@el, "ایتھلیٹک ٹیم کا رکن"@ur ; + rdfs:label "Sport Team Mitglied"@de, "Sports team member"@en, "membre d'équipe sportive"@fr, "sport teamlid"@nl, "μέλος αθλητικής ομάδας"@el, "کھیلوں کی جماعت کا رکن"@ur ; + rdfs:subClassOf :OrganisationMember ; + prov:wasDerivedFrom . + +:SportsTeamSeason + a owl:Class ; + rdfs:comment "A season for a particular sports team (as opposed to the season for the entire league that the team is in)"@en, "μία περίοδος για μία αθλητική ομάδα"@el, "ایک خاص سپورٹس ٹیم کے لیے ایک موسم(جیسا کہ پوری لیگ کے موسم کے برعکس جس میں ٹیم ہے۔"@ur ; + rdfs:label "Sport Team Saison"@de, "sport seizoen"@nl, "sports team season"@en, "περίοδος αθλητικής ομάδας"@el, "کھیلوں کی جماعت کا موسم"@ur ; + rdfs:subClassOf :SportsSeason ; + prov:wasDerivedFrom . + +:Spreadsheet + a owl:Class ; + rdfs:comment "Programme informatique qui utilise des statistiques ou des informations"@fr, "مرتب و شمار یا معلومات کو کام میں لانےوالاایک کمپیوٹر پروگرام"@ur ; + rdfs:label "Spreadsheet"@en, "tableur"@fr, "Электронная таблица"@ru, "سپریڈ شیٹ"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Spy + a owl:Class ; + rdfs:label "Spy"@en, "espioi"@eu, "espionner"@fr, "spion"@da, "جاسوس"@ar, "جاسوس"@ur, "जासूस"@hi ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Square + a owl:Class ; + rdfs:label "Platz"@de, "cearnóg"@ga, "place"@fr, "plein"@nl, "square"@en, "چوکور"@ur, "正方形"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q174782 ; + prov:wasDerivedFrom . + +:SquashPlayer + a owl:Class ; + rdfs:label "Squashspieler"@de, "giocatore di squash"@it, "joueur de squash"@fr, "squash player"@en, "squasher"@nl, "스쿼시 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q16278103 ; + prov:wasDerivedFrom . + +:Stadium + a owl:Class ; + rdfs:label "Stadion"@de, "stade"@fr, "stadion"@nl, "stadium"@en, "staidiam"@ga, "στάδιο"@el, "معروف کھیلوں کے لیے مَخصُوص جگہ"@ur, "スタジアム"@ja, "경기장"@ko ; + rdfs:subClassOf :Venue, ; + prov:wasDerivedFrom . + +:Standard + a owl:Class ; + rdfs:comment "a common specification"@en, "une spécification commune"@fr, "ایک عام تفصیل"@ur ; + rdfs:label "standaard"@nl, "standard"@en, "standard"@fr, "معیاری"@ur, "規格"@ja ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:Star + a owl:Class ; + rdfs:label "Stern"@de, "réalta"@ga, "star"@en, "stella"@it, "ster"@nl, "étoile"@fr, "αστέρι"@el, "ستارہ"@ur, "恒星"@ja, "항성"@ko ; + rdfs:subClassOf :CelestialBody ; + prov:wasDerivedFrom . + +:StarCluster + a owl:Class ; + rdfs:label "Star сluster"@en, "Звездное скопление"@ru, "ستارہ غول"@ur ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:State + a owl:Class ; + rdfs:label "Staat"@de, "staat"@nl, "state"@en, "état"@fr, "πολιτεία"@el, "ریاست"@ur, "ስቴት"@am, "州"@ja ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q7275 ; + prov:wasDerivedFrom . + +:StatedResolution + a owl:Class ; + rdfs:comment "A Resolution describes a formal statement adopted by a meeting or convention."@en, "Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering."@nl, "Une résolution décrit une déclaration officielle adoptée par une réunion ou une convention."@fr, "ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے"@ur ; + rdfs:label "Aangenomen Besluit"@nl, "Angenommen Beschluß"@de, "Résolution adoptée"@fr, "Stated Resolution"@en, "ریاستی قرارداد"@ur ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:Station + a owl:Class ; + rdfs:comment "Public transport station (eg. railway station, metro station, bus station)."@en, "Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция)."@ru, "پبلک ٹرانسپورٹ اسٹیشن (مثلاً ریلوے اسٹیشن، میٹرو اسٹیشن، بس اسٹیشن)"@ur ; + rdfs:label "Bahnhof"@de, "estación"@es, "estação"@pt, "gare"@fr, "station"@en, "station"@nl, "stáisiún"@ga, "Σταθμός"@el, "станция"@ru, "اڈا"@ur, "駅"@ja ; + rdfs:subClassOf :Infrastructure ; + owl:equivalentClass wikidata:Q719456 ; + prov:wasDerivedFrom . + +:Statistic + a owl:Class ; + rdfs:label "staitistic"@ga, "statistic"@en, "statistique"@fr, "statistisch"@de, "statistisch"@nl, "στατιστική"@el, "شماریات"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass wikidata:Q1949963 ; + prov:wasDerivedFrom . + +:StillImage + a owl:Class ; + rdfs:comment "ایک بصری دستاویز جس کا مقصد متحرک ہونا نہیں ہے۔"@en ; + rdfs:label "Standbild"@de, "image fixe"@fr, "still image"@en, "stilstaand beeld"@nl, "ساکن تصویر"@ur ; + rdfs:subClassOf :Image ; + prov:wasDerivedFrom . + +:StormSurge + a owl:Class ; + rdfs:comment "64-72 ناٹس (بیفورٹ اسکیل پر 11) اور بارش اور گرج چمک کے ساتھ ایک پرتشدد موسمی صورتحال"@ur, "Een stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water"@nl ; + rdfs:label "Sturmflut"@de, "storm surge"@en, "stormvloed"@nl, "طوفانی لہر"@ur ; + rdfs:subClassOf :NaturalEvent ; + prov:wasDerivedFrom . + +:Stream + a owl:Class ; + rdfs:comment "a flowing body of water with a current, confined within a bed and stream banks"@en, "پانی کا بہتا ہوا کرنٹ ، ایک بستر اور ندی کے کناروں میں محدود ہے۔"@ur ; + rdfs:label "Bach"@de, "curso d’água"@pt, "ruisseau"@fr, "ruscello"@it, "sruthán"@ga, "stream"@en, "stroom"@nl, "ρέμα"@el, "ندی"@ur, "河川"@ja ; + rdfs:subClassOf :BodyOfWater ; + owl:equivalentClass wikidata:Q47521 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "discharge (m³/s)"@en, "uitstoot (m³/s)"@nl, "εκροή (m³/s)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "discharge average (m³/s)"@en, "አማካኝ የፍሳሽ መጠን (m³/s)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "maximum discharge (m³/s)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "minimum discharge (m³/s)"@en ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "Wasserscheide (km2)"@de, "cuenca hidrográfica (km2)"@es, "waterscheiding (km2)"@nl, "watershed (km2)"@en, "λεκάνη_απορροής (km2)"@el ; + rdfs:range . + +:Street + a owl:Class ; + rdfs:comment "A Street is different from a Road in as far as the infrastructure aspect is much less important here. A Street is a social and architectural ensemble much more than the connection between two geographic points."@en ; + rdfs:label "Straße"@de, "rue"@nl, "sráid"@ga, "straat"@fr, "street"@en, "Οδός"@el, "ストリート"@ja ; + rdfs:subClassOf :PopulatedPlace ; + owl:equivalentClass wikidata:Q79007 ; + prov:wasDerivedFrom . + +:SubMunicipality + a owl:Class ; + rdfs:comment "An administrative body governing a territorial unity on the lowest level, administering part of a municipality"@en, "ایک انتظامی ادارہ جو ایک علاقائی اتحاد کو نچلی سطح پر چلاتا ہے، بلدیہ کے حصے کا انتظام کرتا ہے"@ur ; + rdfs:label "Teilgemeinde"@de, "borough"@en, "deelgemeente"@nl, "parroquia"@gl, "ذیلی بلدیہ"@ur ; + rdfs:subClassOf :GovernmentalAdministrativeRegion ; + prov:wasDerivedFrom . + +:SumoWrestler + a owl:Class ; + rdfs:label "Sumo-Ringer"@de, "lutteur de sumo"@fr, "sumo wrestler"@en, "sumoworstelaar"@nl, "سومو پہلوان"@ur ; + rdfs:subClassOf :Wrestler ; + prov:wasDerivedFrom . + +:SupremeCourtOfTheUnitedStatesCase + a owl:Class ; + rdfs:label "Fall Oberster Gerichtshof der Vereinigten"@de, "Supreme Court of the United States case"@en, "cas juridique de la Cour suprême des États-Unis"@fr, "ریاستہائے متحدہ کی سپریم کورٹ کیس"@ur ; + rdfs:subClassOf :LegalCase ; + prov:wasDerivedFrom . + +:Surfer + a owl:Class ; + rdfs:label "Surfer"@de, "surfer"@en, "surfer"@nl, "surfálaí"@ga, "σέρφερ"@el, "موج تختہ پر سوار ہونے والا"@ur, "サーファー"@ja ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13561328 ; + prov:wasDerivedFrom . + +:Surname + a owl:Class ; + rdfs:comment "خاندانی نام"@ur ; + rdfs:label "Nachname"@de, "achternaam"@nl, "nazwisko"@pl, "nom de famille"@fr, "sloinne"@ga, "surname"@en, "επώνυμο"@el, "عرفیت"@ur, "家"@ja, "성씨"@ko ; + rdfs:subClassOf :Name ; + prov:wasDerivedFrom . + +:Swarm + a owl:Class ; + rdfs:label "Swarm"@en, "schwarm"@de, "stormo"@it, "zwerm"@nl, "Σμήνος"@el, "غول"@ur, "群れ"@ja ; + rdfs:subClassOf :CelestialBody ; + prov:wasDerivedFrom . + +:Swimmer + a owl:Class ; + rdfs:comment "a trained athlete who participates in swimming meets"@en, "ένας εκπαιδευμένος αθλητής που συμμετέχει σε συναντήσεις κολύμβησης"@el, "ایک تربیت یافتہ کھلاڑی جو تیراکی کے مقابلوں میں حصہ لیتا ہے"@ur ; + rdfs:label "Kολυμβητής"@el, "Schwimmer"@de, "nadador"@es, "nadador"@pt, "nageur"@fr, "nuotatore"@it, "snámhaí"@ga, "swimmer"@en, "zwemmer"@nl, "تیراک"@ur, "競泳選手"@ja, "수영 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q10843402 ; + prov:wasDerivedFrom . + +:Synagogue + a owl:Class ; + rdfs:comment "A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer."@en, "Une synagogue est un lieu de culte juif."@fr, "یہودیوں کی عبادت گاہ، ایک یہودی یا سامری نماز کا گھر ہے۔"@ur ; + rdfs:label "Synagoge"@de, "sinagoga"@es, "sionagóg"@ga, "synagoga"@pl, "synagoge"@nl, "synagogue"@en, "synagogue"@fr, "συναγωγή"@el, "یہودیوں کی عبادت گاہ"@ur, "シナゴーグ"@ja ; + rdfs:subClassOf :ReligiousBuilding ; + owl:equivalentClass wikidata:Q34627 ; + prov:wasDerivedFrom . + +:SystemOfLaw + a owl:Class ; + rdfs:comment "a system of legislation, either national or international"@en ; + rdfs:label "Rechtssystem"@de, "System of law"@en, "ordenamiento jurídico"@es, "rechtssysteem"@nl, "régime de droit"@fr, "σύστημα δικαίου"@el ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:TableTennisPlayer + a owl:Class ; + rdfs:comment "Athlete who plays table tennis"@en, "Athlète qui joue du tennis de table"@fr, "O αθλητής που παίζει πινγκ-πονγκ"@el, "کھلاڑی جو ٹیبل ٹینس کھیلتا ہے"@ur ; + rdfs:label "Tischtennisspieler"@de, "imreoir leadóg bhoird"@ga, "joueur de ping-pong"@fr, "table tennis player"@en, "tafeltennisser"@nl, "παίκτης πινγκ-πονγκ"@el, "ٹیبل ٹینس کا کھلاڑی"@ur, "卓球選手"@ja, "탁구 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13382519 ; + prov:wasDerivedFrom . + +:Tank + a owl:Class ; + rdfs:label "Tank"@en, "Танк"@ru, "حوض"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:Tax + a owl:Class ; + rdfs:label "Steuer"@de, "belasting"@nl, "cáin"@ga, "impuesto"@es, "tax"@en, "taxe"@fr, "φόρος"@el, "محصول"@ur, "租税"@ja ; + rdfs:subClassOf :TopicalConcept ; + owl:equivalentClass wikidata:Q8161 ; + prov:wasDerivedFrom . + +:Taxon + a owl:Class ; + rdfs:comment "a category within a classification system for Species"@en, "categorie binnen een classificatiesysteem voor plant- en diersoorten"@nl, "catégorie dans un système de classification d'espèces"@fr, "پرجاتیوں کے لیے درجہ بندی کے نظام کے اندر ایک زمرہ"@ur ; + rdfs:label "groupe taxonomique"@fr, "taxon"@nl, "taxonomic group"@en, "taxonomische Gruppe"@de, "ταξονομική ομάδα"@el, "نسل یا خاندان"@ur, "タクソン"@ja ; + rdfs:subClassOf :TopicalConcept ; + owl:equivalentClass wikidata:Q16521 ; + prov:wasDerivedFrom . + +:TeamMember + a owl:Class ; + rdfs:comment "A member of an athletic team."@en, "Ένα μέλος μιας αθλητικής ομάδας."@el, "ایتھلیٹک ٹیم کا رکن"@ur ; + rdfs:label "Team member"@en, "Teammitglied"@de, "coéquipier"@fr, "teamlid"@nl, "Μέλος ομάδας"@el, "ٹیم کے رکن"@ur, "チームメンバー"@ja ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:TeamSport + a owl:Class ; + rdfs:comment "A team sport is commonly defined as a sport that is being played by competing teams"@en, "Un sport d'équipe est défini communément comme un sport pratiqué par des équipes en compétition"@fr, "ایک ٹیم کے کھیل کو عام طور پر ایک کھیل کے طور پر بیان کیا جاتا ہے جو مسابقتی ٹیموں کے ذریعہ کھیلا جاتا ہے"@ur ; + rdfs:label "sport d'équipe"@fr, "team sport"@en, "teamsport"@nl, "جماعتی کھیل"@ur, "チームスポーツ"@ja ; + rdfs:subClassOf :Sport ; + owl:equivalentClass wikidata:Q216048 ; + prov:wasDerivedFrom . + +:TelevisionDirector + a owl:Class ; + rdfs:comment "a person who directs the activities involved in making a television program."@en, "ایک شخص جو ٹیلی ویژن پروگرام بنانے میں شامل سرگرمیوں کی ہدایت کرتا ہے"@ur ; + rdfs:label "TV-Regisseur"@de, "TVディレクター"@ja, "Television director"@en, "réalisateur de télévision"@fr, "tv-regisseur"@nl, "ٹی وی کا ہدایت کار"@ur ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:TelevisionEpisode + a owl:Class ; + rdfs:comment "A television episode is a part of serial television program."@en, "ٹیلی ویژن ایپی سوڈ سیریل ٹیلی ویژن پروگرام کا ایک حصہ ہے"@ur ; + rdfs:label "Fernsehfolge"@de, "capítulo de serie de televisión"@es, "eagrán de chlár teilifíse"@ga, "televisie seizoen"@nl, "television episode"@en, "épisode télévisé"@fr, "επεισόδιο τηλεόρασης"@el, "ٹی وی کی قسط"@ur, "テレビ放送回"@ja, "텔레비전 에피소드"@ko ; + rdfs:subClassOf :Work ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:TelevisionHost + a owl:Class ; + rdfs:label "Fernsehmoderator"@de, "animateur de télévision"@fr, "láithreoir teilifíse"@ga, "presentatore televisivo"@it, "televisie presentator"@nl, "television host"@en, "παρουσιαστής τηλεοπτικής εκπομπής"@el, "ٹی وی مزبان"@ur, "テレビ番組司会者"@ja ; + rdfs:subClassOf :Presenter ; + owl:equivalentClass wikidata:Q947873 ; + prov:wasDerivedFrom . + +:TelevisionSeason + a owl:Class ; + rdfs:label "Fernsehstaffel"@de, "televisie seizoen"@nl, "television season"@en, "τηλεοπτική σεζόν"@el, "ٹی وی ڈرامہ"@ur, "텔레비전 시즌"@ko ; + rdfs:subClassOf :Work ; + prov:wasDerivedFrom . + +:TelevisionShow + a owl:Class ; + rdfs:label "Fernsehsendung"@de, "clár teilifíse"@ga, "serie de televisión"@es, "televisie show"@nl, "television show"@en, "televizijska oddaja"@sl, "émission de télévision"@fr, "τηλεοπτική σειρά"@el, "معلومات تلفاز"@ar, "ٹی وی شو"@ur, "テレビ番組"@ja ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q15416 ; + prov:wasDerivedFrom . + +:TelevisionStation + a owl:Class ; + rdfs:comment "A television station has usually one line up. For instance the television station WABC-TV (or ABC 7, Channel 7). Not to be confused with the broadcasting network ABC, which has many television stations."@en, "Ein Fernsehsender hat normalerweise ein Programm, zum Beispiel der Sender Erstes Deutsches Fernsehen (Das Erste). Nicht zu verwechseln mit der Rundfunkanstalt ARD, welche mehrere Fernsehsender hat."@de, "Ένας τηλεοπτικός σταθμός έχει μια παράταξη.Για παράδειγμα ο τηλεοπτικός σταθμός WABC-TV (or ABC 7, Channel 7).Δεν πρέπει να συγχέεται με το τηλεοπτικό δίκτυο ABC,που έχει πολλούς τηλεοπτικούς σταθμούς."@el, "ایک ٹیلی ویژن اسٹیشن عام طور پر ایک لائن اپ ہوتا ہے۔ مثال کے طور پر ٹیلی ویژن اسٹیشن WABC-TV (یا ABC 7، چینل 7)۔ براڈکاسٹنگ نیٹ ورک ABC کے ساتھ الجھن میں نہ پڑیں، جس میں بہت سے ٹیلی ویژن اسٹیشن ہیں"@ur ; + rdfs:label "Fernsehsender"@de, "canal de televisión"@es, "canale televisivo"@it, "chaînes de télévision"@fr, "stáisiún teilifíse"@ga, "televisie zender"@nl, "television station"@en, "τηλεοπτικός σταθμός"@el, "ٹیلی ویژن مرکز"@ur, "テレビジョン放送局"@ja ; + rdfs:subClassOf :Broadcaster ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:Temple + a owl:Class ; + rdfs:label "teampall"@ga, "tempel"@de, "tempel"@nl, "tempio"@it, "temple"@en, "temple"@fr, "ναός"@el, "مندر"@ur, "寺"@ja ; + rdfs:subClassOf :ReligiousBuilding ; + prov:wasDerivedFrom . + +:TennisLeague + a owl:Class ; + rdfs:comment "A group of sports teams or person that compete against each other in tennis."@en, "کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ٹینس میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں"@ur ; + rdfs:label "Tennisliga"@de, "ligue de tennis"@fr, "sraith leadóige"@ga, "tennis competitie"@nl, "tennis league"@en, "Ομοσπονδία Αντισφαίρισης"@el, "ٹینس کی انجمن"@ur, "テニスリーグ"@ja ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:TennisPlayer + a owl:Class ; + rdfs:label "Tennisspieler"@de, "imreoir leadóige"@ga, "jogador de tennis"@pt, "joueur de tennis"@fr, "tenista"@es, "tennis player"@en, "tennisser"@nl, "παίχτης τένις"@el, "ٹینس کا کھلاڑی"@ur, "テニス選手"@ja ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q10833314 ; + prov:wasDerivedFrom . + +:TennisTournament + a owl:Class ; + rdfs:label "Tennisturnier"@de, "comórtas leadóige"@ga, "tennis toernooi"@nl, "tennis tournament"@en, "torneo di tennis"@it, "tournoi de tennis"@fr, "Τουρνουά Τένις"@el, "ٹینس کا باہمی مقابلہ"@ur, "テニストーナメント"@ja ; + rdfs:subClassOf :Tournament ; + owl:equivalentClass wikidata:Q13219666 ; + prov:wasDerivedFrom . + +:Tenure + a owl:Class ; + rdfs:label "Amtszeit"@de, "dienstverband"@nl, "durée du mandat"@fr, "tenure"@en, "دور"@ur ; + rdfs:subClassOf :TimePeriod ; + prov:wasDerivedFrom . + +:TermOfOffice + a owl:Class ; + rdfs:label "Amtsdauer"@de, "ambtstermijn"@nl, "mandat"@fr, "term of office"@en, "دفتر کی مدت"@ur ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q524572 ; + prov:wasDerivedFrom . + +:Territory + a owl:Class ; + rdfs:comment "A territory may refer to a country subdivision, a non-sovereign geographic region."@en, "Un territoire peut désigner une subdivision de pays, une région géographique non souveraine."@fr, "ایک ماتحت علاقہ کسی ملک کی ذیلی تقسیم، ایک غیر خودمختار جغرافیائی خطہ کا حوالہ دے سکتا ہے۔"@ur ; + rdfs:label "Territoire"@fr, "Territorium"@de, "territorium"@nl, "territory"@en, "περιοχή"@el, "ماتحت علاقہ"@ur, "国土"@ja ; + rdfs:subClassOf :PopulatedPlace ; + prov:wasDerivedFrom . + +:Theatre + a owl:Class ; + rdfs:comment "A theater or theatre (also a playhouse) is a structure where theatrical works or plays are performed or other performances such as musical concerts may be produced."@en, "ایک تھیٹر یا تھیٹر (ایک پلے ہاؤس بھی) ایک ڈھانچہ ہے جہاں تھیٹر کے کام یا ڈرامے پیش کیے جاتے ہیں یا دیگر پرفارمنس جیسے میوزیکل کنسرٹ تیار کیے جا سکتے ہیں"@ur ; + rdfs:label "Theater"@de, "amharclann"@ga, "schouwburg"@nl, "theatre"@en, "théâtre"@fr, "θέατρο"@el, "تماشا گاہ"@ur, "劇場"@ja ; + rdfs:subClassOf :Venue ; + owl:equivalentClass wikidata:Q24354 ; + prov:wasDerivedFrom . + +:TheatreDirector + a owl:Class ; + rdfs:comment "A director in the theatre field who oversees and orchestrates the mounting of a theatre production."@en, "تھیٹر کے میدان میں ایک ڈائریکٹر جو تھیٹر پروڈکشن کے بڑھتے ہوئے کام کی نگرانی اور آرکیسٹریٹ کرتا ہے"@ur ; + rdfs:label "Theaterdirektor"@de, "Theatre director"@en, "directeur de théâtre"@fr, "theaterdirecteur"@nl, "تھیٹر ہدایت کار"@ur ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q3387717 ; + prov:wasDerivedFrom . + +:TheologicalConcept + a owl:Class ; + rdfs:comment "Theological concepts, e.g. The apocalypse, Trinty, Stoicism"@en, "مذہبی تصورات، جیسے آسمانی کِتاب تثلیث رواقیت"@ur ; + rdfs:label "Theological concept"@en, "Theologisch Konzept"@de, "concept théologique"@fr, "theologisch concept"@nl, "مذہبی تصور"@ur ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:TimePeriod + a owl:Class ; + rdfs:label "Zeitraum"@de, "periodo temporal"@es, "période temporelle"@fr, "tidsperiode"@da, "tijdvak"@nl, "time period"@en, "tréimhse"@ga, "χρονική περίοδος"@el, "وقت کی مدت"@ur ; + rdfs:subClassOf dul:TimeInterval, owl:Thing ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:TopLevelDomain + a owl:Class ; + rdfs:label "domaine de premier niveau"@fr, "top level domain"@de, "top level domain"@en, "اوپر سطح کی ڈومین"@ur ; + rdfs:subClassOf :Identifier ; + owl:equivalentClass wikidata:Q14296 ; + prov:wasDerivedFrom . + +:TopicalConcept + a owl:Class ; + rdfs:label "Concept thématique"@fr, "coincheap i mbéal an phobail"@ga, "thematisches Konzept"@de, "topical concept"@en, "موضوع کا تصور"@ur ; + rdfs:subClassOf owl:Thing ; + owl:equivalentClass dul:Concept ; + prov:wasDerivedFrom . + +:Tournament + a owl:Class ; + rdfs:label "Turnier"@de, "comórtas"@ga, "toernooi"@nl, "torneo"@it, "tournament"@en, "tournoi"@fr, "τουρνουά"@el, "باہمی مقابلہ"@ur ; + rdfs:subClassOf :SportsEvent ; + owl:equivalentClass wikidata:Q500834 ; + prov:wasDerivedFrom . + +:Tower + a owl:Class ; + rdfs:comment "A Tower is a kind of structure (not necessarily a building) that is higher than the rest"@en, "مینار ایک قسم کا ڈھانچہ ہے (ضروری نہیں کہ کوئی عمارت) جو باقی سے اونچی ہو"@ur ; + rdfs:label "Turm"@de, "toren"@nl, "tour"@fr, "tower"@en, "túr"@ga, "πύργος"@el, "مینار"@ur, "塔"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:disjointWith :Person ; + owl:equivalentClass wikidata:Q12518 ; + prov:wasDerivedFrom . + +:Town + a owl:Class ; + rdfs:comment "a settlement ranging from a few hundred to several thousand (occasionally hundreds of thousands). The precise meaning varies between countries and is not always a matter of legal definition. Usually, a town is thought of as larger than a village but smaller than a city, though there are exceptions to this rule."@en, "چند سو سے لے کر کئی ہزار (کبھی کبھار سیکڑوں ہزاروں) تک کی تصفیہ۔ درست معنی ممالک کے درمیان مختلف ہوتے ہیں اور یہ ہمیشہ قانونی تعریف کا معاملہ نہیں ہوتا ہے۔ عام طور پر، ایک قصبہ کو گاؤں سے بڑا لیکن شہر سے چھوٹا سمجھا جاتا ہے، حالانکہ اس اصول میں مستثنیات ہیں"@ur ; + rdfs:label "Stadt"@de, "baile"@ga, "miasteczko"@pl, "stad"@nl, "town"@en, "ville"@fr, "πόλη"@el, "قصبہ"@ur, "नगर"@hi, "町"@ja ; + rdfs:subClassOf :Settlement ; + owl:equivalentClass wikidata:Q3957 ; + prov:wasDerivedFrom . + +:TrackList + a owl:Class ; + rdfs:comment "A list of music tracks, like on a CD"@en, "Een lijst van nummers als op een CD album"@nl, "Une liste de pistes audio comme sur un CD"@fr, "میوزک ٹریکس کی فہرست، جیسے سی ڈی پر"@ur ; + rdfs:label "Titelliste"@de, "lijst van nummers"@nl, "liste de pistes"@fr, "track list"@en, "λίστα κομματιών"@el, "موسیقی کے ریکارڈوں کی فہرست"@ur, "የዘፈኖች ዝርዝር"@am ; + rdfs:subClassOf :List ; + prov:wasDerivedFrom . + +:TradeUnion + a owl:Class ; + rdfs:comment "A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions."@en, "مزدوروں کا اتحاد مزدوروں کی ایک تنظیم ہے جو کام کے بہتر حالات جیسے مشترکہ اہداف کو حاصل کرنے کے لیے اکٹھے ہوئے ہیں"@ur ; + rdfs:label "Gewerkschaft"@de, "ceardchumann"@ga, "syndicat professionnel"@fr, "trade union"@en, "vakbond"@nl, "Κουτί πληροφοριών ένωσης"@el, "مزدوروں کا اتحاد"@ur ; + rdfs:subClassOf :Organisation ; + owl:equivalentClass wikidata:Q178790 ; + prov:wasDerivedFrom . + +:Train + a owl:Class ; + rdfs:label "Zug"@de, "tog"@da, "traein"@ga, "train"@en, "train"@fr, "trein"@nl, "tren"@es, "treno"@it, "τρένο"@el, "ریل گاڑی"@ur, "列車"@ja ; + rdfs:subClassOf :MeanOfTransportation ; + owl:equivalentClass wikidata:Q870 ; + prov:wasDerivedFrom . + +:TrainCarriage + a owl:Class ; + rdfs:label "train carriage"@en, "treinwagon"@nl, "ٹرین کی بوگی"@ur ; + rdfs:subClassOf :MeanOfTransportation ; + prov:wasDerivedFrom . + +:Tram + a owl:Class ; + rdfs:label "Straßenbahn"@de, "streetcar"@en, "tram"@nl, "tramway"@fr, "ٹرام گاڑی"@ur, "路面電車"@ja ; + rdfs:subClassOf :MeanOfTransportation ; + prov:wasDerivedFrom . + +:TramStation + a owl:Class ; + rdfs:label "Straßenbahnhaltestelle"@de, "station de tramway"@fr, "tram station"@en, "tramhalte"@nl, "ٹرام گاڑی کا اڈا"@ur ; + rdfs:subClassOf :Station ; + prov:wasDerivedFrom . + +:Treadmill + a owl:Class ; + rdfs:comment "A mill driven by the tractive power of horses, donkeys or even people"@en, "گھوڑوں، گدھوں یا یہاں تک کہ لوگوں کی کشش طاقت سے چلنے والی چکی"@ur ; + rdfs:label "Rosmolen"@nl, "Treadmill"@en, "Tretmühle"@de, "Μύλος"@el, "ڈھینکلی"@ur, "トレッドミル"@ja ; + rdfs:subClassOf :Mill ; + owl:equivalentClass wikidata:Q683267 ; + prov:wasDerivedFrom . + +:Treaty + a owl:Class ; + rdfs:label "Vertrag"@de, "traité"@fr, "treaty"@en, "verdrag"@nl, "معاہدہ"@ur, "条約"@ja ; + rdfs:subClassOf :WrittenWork ; + prov:wasDerivedFrom . + +:Tunnel + a owl:Class ; + rdfs:comment "A tunnel may be for foot or vehicular road traffic, for rail traffic, or for a canal. Some tunnels are aqueducts to supply water for consumption or for hydroelectric stations or are sewers (http://en.wikipedia.org/wiki/Tunnel)."@en, "Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel)."@de, "Un tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). Sont apparentés aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et émissaires destinés soit à l'amenée, soit à l'évacuation des eaux des grands centres et certaines conduites établies en liaison avec les barrages et usines hydro-électriques. (http://fr.wikipedia.org/wiki/Tunnel)."@fr, "Ένα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι."@el, "ایک سرنگ پیدل یا گاڑیوں کی سڑک کے لیے، ریل ٹریفک کے لیے، یا نہر کے لیے ہو سکتی ہے۔ کچھ سرنگیں پانی کی کھپت یا ہائیڈرو الیکٹرک اسٹیشنوں کے لیے پانی کی فراہمی کے لیے آبی راستے ہیں یا گٹر ہیں"@ur ; + rdfs:label "Tunnel"@de, "tollán"@ga, "tunnel"@en, "tunnel"@fr, "tunnel"@nl, "τούνελ"@el, "سرنگ"@ur, "トンネル"@ja, "터널"@ko ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q44377 ; + prov:wasDerivedFrom . + +:Type + a owl:Class ; + rdfs:comment "a category within a classification system"@en, "categorie binnen een classificatiesysteem"@nl, "درجہ بندی کے نظام میں ایک زمرہ"@ur ; + rdfs:label "Typ"@de, "cineál"@ga, "régime de classification"@fr, "type"@en, "type"@nl, "τύπος"@el, "قسم"@ur, "型"@ja ; + rdfs:subClassOf :TopicalConcept ; + prov:wasDerivedFrom . + +:UndergroundJournal + a owl:Class ; + rdfs:comment "An underground journal is, although over time there have always been publications forbidden by law, a phenomenon typical of countries occupied by the Germans during the Second World War. The writing in the underground press aims at stiffening a spirit of resistance against Nazi occupation. The distribution of underground journals had to be very secretive and was, therefore, very much dependant on illegal distribution circuits and the hazards of persecution by the occupant."@en, "Ondergrondse bladen zijn, hoewel een verschijnsel van alle tijden, een verschijnsel dat sterk wordt geassocieerd met het verzet tegen de Duitse bezetter in de Tweede Wereldoorlog. De artikelen in deze bladen waren erop gericht de verzetsgeest levend te houden of aan te wakkeren. De verspreiding van illegale tijdschriften was sterk afhankelijk van illegale distributiekanalen en van het falen of succes van de Duitse pogingen om deze kanalen op te rollen."@nl, "ایک زیر زمین جریدہ ہے، اگرچہ وقت گزرنے کے ساتھ ساتھ ہمیشہ قانون کے ذریعہ اشاعتیں ممنوع رہی ہیں، دوسری عالمی جنگ کے دوران جرمنوں کے زیر قبضہ ممالک کا ایک رجحان۔ زیر زمین پریس میں تحریر کا مقصد نازی قبضے کے خلاف مزاحمت کے جذبے کو مضبوط کرنا ہے۔ زیر زمین جرائد کی تقسیم بہت خفیہ ہونی چاہیے تھی اور اس لیے اس کا انحصار غیر قانونی ڈسٹری بیوشن سرکٹس اور قابضین کی طرف سے ظلم و ستم کے خطرات پر تھا"@ur ; + rdfs:label "Underground Zeitschrift"@de, "underground journal"@en, "verzetsblad"@nl, "زیر زمین جریدہ"@ur ; + rdfs:subClassOf :PeriodicalLiterature ; + prov:wasDerivedFrom . + +:UnitOfWork + a owl:Class ; + rdfs:comment "Cette classe est destinée à transmettre la notion de quantité de travail à faire. Elle est différente de l'activité en ce qu'elle a une fin définie et qu'elle est mesurée."@fr, "This class is meant to convey the notion of an amount work to be done. It is different from Activity in that it has a definite end and is being measured."@en, "اس کلاس کا مقصد کام کی مقدار کو سمجھانا ہے۔ یہ سرگرمی سے مختلف ہے کہ اس کا ایک حتمی اختتام ہے اور اسے ناپا جا رہا ہے۔"@ur ; + rdfs:label "Arbeitseinheit"@de, "aonad oibre"@ga, "unit of work"@en, "unité de travail"@fr, "werkeenheid"@nl, "کام کی اکائی"@ur ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith :Person ; + prov:wasDerivedFrom . + +:University + a owl:Class ; + rdfs:label "Universität"@de, "ollscoil"@ga, "universidad"@es, "universidade"@pt, "universiteit"@nl, "university"@en, "université"@fr, "uniwersytet"@pl, "πανεπιστήμιο"@el, "جامع درس گاہ"@ur, "大学"@ja, "대학"@ko ; + rdfs:subClassOf :EducationalInstitution, ; + owl:equivalentClass wikidata:Q3918 ; + prov:wasDerivedFrom . + +:Unknown + a owl:Class ; + rdfs:label "Bilinmeyen"@tr, "Inconnu"@fr, "Onbekend"@nl, "Unknown"@en, "anaithnid"@ga, "unbekannt"@de, "άγνωστος"@el, "نامعلوم"@ur, "無知"@ja ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:VaccinationStatistics + a owl:Class ; + rdfs:comment "COVID-19 ویکسینیشن کی عالمی پیشرفت سے متعلق اعدادوشمار‎"@ur, "Statistics related to the COVID-19 vaccination world progress‎"@en, "Statistiques relatives à la progression mondiale de la vaccination contre le COVID-19‎"@fr ; + rdfs:label "Vaccination Statistics"@en, "statistiques de vaccination"@fr, "ویکسینیشن کے اعدادوشمار"@ur ; + rdfs:subClassOf :Drug ; + prov:wasDerivedFrom . + +:Vaccine + a owl:Class ; + rdfs:comment "Drugs that are a vaccine‎"@en, "Medikamente welche Impfstoffe sind"@de, "وہ دوائیں جو ایک ویکسین ہیں‎"@ur ; + rdfs:label "Impfstoff"@de, "vaccin"@fr, "vaccin"@nl, "vaccine"@en, "ویکسین"@ur ; + rdfs:subClassOf :Drug ; + prov:wasDerivedFrom . + +:Valley + a owl:Class ; + rdfs:comment "a depression with predominant extent in one direction"@en, "پہاڑیوں یا پہاڑوں کے درمیان زمین کا ایک نچلا علاقہ، عام طور پر اس میں سے دریا یا ندی بہتی ہے"@ur ; + rdfs:label "gleann"@ga, "tal"@de, "vale"@pt, "valle"@it, "vallei"@nl, "valley"@en, "vallée"@fr, "Κοιλάδα"@el, "وادی"@ur, "谷"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q39816 ; + prov:wasDerivedFrom . + +:Vein + a owl:Class ; + rdfs:label "Vene"@de, "ader"@nl, "féith"@ga, "veia"@pt, "vein"@en, "veine"@fr, "φλέβα"@el, "رگ"@ur, "静脈"@ja ; + rdfs:subClassOf :AnatomicalStructure ; + owl:equivalentClass wikidata:Q9609 ; + prov:wasDerivedFrom . + +:Venue + a owl:Class ; + rdfs:label "Veranstaltungsort"@de, "ionad"@ga, "lieu"@fr, "venue"@en, "τόπος συνάντησης"@el, "پنڈال"@ur, "경기장"@ko ; + rdfs:subClassOf :Building ; + prov:wasDerivedFrom . + +:Vicar + a owl:Class ; + rdfs:label "Pfarrer"@de, "biocáire"@ga, "pasteur"@fr, "predikant"@nl, "vicar"@en, "ιεροκήρυκας"@el, "حلقہ کا پادری"@ur ; + rdfs:subClassOf :Cleric ; + prov:wasDerivedFrom . + +:VicePresident + a owl:Class ; + rdfs:label "Vizepräsident"@de, "leasuachtarán"@ga, "vice president"@en, "vice president"@nl, "vice président"@fr, "αντιπρόεδρος"@el, "نائب صدر"@ur ; + rdfs:subClassOf :Politician ; + owl:equivalentClass wikidata:Q42178 ; + prov:wasDerivedFrom . + +:VicePrimeMinister + a owl:Class ; + rdfs:label "vice premier ministre"@fr, "vice prime minister"@en, "vicepremier"@nl, "αντιπρωθυπουργός"@el, "نائب وزیر اعظم"@ur ; + rdfs:subClassOf :Politician ; + prov:wasDerivedFrom . + +:VideoGame + a owl:Class ; + rdfs:comment "A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device."@en, "بصری کھیل ایک الیکٹرانک گیم ہے جس میں ویڈیو ڈیوائس پر بصری تاثرات پیدا کرنے کے لیے صارف کے انٹرفیس کے ساتھ تعامل شامل ہوتا ہے"@ur ; + rdfs:label "Videospiel"@de, "computerspil"@da, "físchluiche"@ga, "jeux vidéo"@fr, "video game"@en, "videojogo"@pt, "videojuego"@es, "videospel"@nl, "βιντεοπαιχνίδι"@el, "بصری کھیل"@ur, "テレビゲーム"@ja, "비디오 게임"@ko ; + rdfs:subClassOf :Software ; + owl:equivalentClass wikidata:Q7889 ; + prov:wasDerivedFrom . + +:VideogamesLeague + a owl:Class ; + rdfs:comment "A group of sports teams or person that compete against each other in videogames."@en, "Ένα σύνολο ομάδων ή ατόμων που ανταγωνίζονται σε ηλεκτρονικά παιχνίδια."@el, "کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو بصری کھیلوں میں ایک دوسرے سے مقابلہ کرتا ہے"@ur ; + rdfs:label "Videospiele-Liga"@de, "ligue de jeux vidéo"@fr, "sraith físchluichí"@ga, "videogames league"@en, "πρωτάθλημα βιντεοπαιχνιδιών"@el, "بصری کھیلوں کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:Village + a owl:Class ; + rdfs:comment "Núcleo pequeno de poboación en que se divide unha parroquia, con poucos veciños e de carácter rural."@gl, "a clustered human settlement or community, usually smaller a town"@en, "ایک انسانی بستی یا برادری کا جھنڈ ، عام طور پر ایک چھوٹا قصبہ"@ur ; + rdfs:label "desa"@in, "dorf"@de, "dorp"@nl, "lugar"@gl, "sráidbhaile"@ga, "village"@en, "village"@fr, "wieś"@pl, "χωριό"@el, "گاؤں"@ur, "गाँव"@hi, "村"@ja ; + rdfs:subClassOf :Settlement ; + owl:equivalentClass wikidata:Q532 ; + prov:wasDerivedFrom . + +:Vodka + a owl:Class ; + rdfs:label "Wodka"@de, "vodka"@da, "vodka"@en, "vodka"@fr, "wodka"@nl, "تیز روسی شراب"@ur ; + rdfs:subClassOf :Beverage ; + prov:wasDerivedFrom . + +:VoiceActor + a owl:Class ; + rdfs:label "Synchronsprecher"@de, "acteur de doublage"@fr, "stemacteur"@nl, "voice actor"@en, "آوازکا اداکار"@ur, "声優"@ja, "성우"@ko ; + rdfs:subClassOf :Actor ; + prov:wasDerivedFrom . + +:Volcano + a owl:Class ; + rdfs:comment "A volcano is currently subclass of naturalplace, but it might also be considered a mountain."@en, "Το ηφαίστειο είναι υποκατηγορία φυσικών καταστάσεων, αλλά μπορεί επίσης να θεωρηθεί και βουνό."@el, "آتش فشاں فی الحال قدرتی جگہ کا ذیلی طبقہ ہے، لیکن اسے پہاڑ بھی سمجھا جا سکتا ہے"@ur ; + rdfs:label "Vulkan"@de, "bolcán"@ga, "volcan"@fr, "volcano"@en, "vulcão"@pt, "vulkaan"@nl, "ηφαίστειο"@el, "آتش فشاں"@ur, "火山"@ja ; + rdfs:subClassOf :NaturalPlace ; + owl:equivalentClass wikidata:Q8072 ; + prov:wasDerivedFrom . + +:VolleyballCoach + a owl:Class ; + rdfs:label "Volleyballtrainer"@de, "allenatore di pallavolo"@it, "traenálaí eitpheile"@ga, "volleybalcoach"@nl, "volleyball coach"@en, "προπονητής βόλλεϋ"@el, "والی بال کی تربیت کرنے والا"@ur ; + rdfs:subClassOf :Coach ; + prov:wasDerivedFrom . + +:VolleyballLeague + a owl:Class ; + rdfs:comment "A group of sports teams that compete against each other in volleyball."@en, "کھیلوں کی ٹیموں کا ایک گروپ جو والی بال میں ایک دوسرے سے مقابلہ کرتے ہیں"@ur ; + rdfs:label "Volleyball-Liga"@de, "ligue de volleyball"@fr, "volleybal competitie"@nl, "volleyball league"@en, "Ομοσπονδία Πετοσφαίρισης"@el, "والی بال کی انجمن"@ur ; + rdfs:subClassOf :SportsLeague ; + prov:wasDerivedFrom . + +:VolleyballPlayer + a owl:Class ; + rdfs:label "Volleyballspieler"@de, "joueur de volleyball"@fr, "siatkarz"@pl, "volleyball player"@en, "volleyballer"@nl, "παίχτης βόλεϊ"@el, "والی بال کاکھلاڑی"@ur, "배구 선수"@ko ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q15117302 ; + prov:wasDerivedFrom . + +:WaterPoloPlayer + a owl:Class ; + rdfs:label "Wasserpolo Spieler"@de, "giocatore di pallanuoto"@it, "joueur de water polo"@fr, "water polo Player"@en, "waterpoloër"@nl, "آبی پولوکا کھلاڑی"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:WaterRide + a owl:Class ; + rdfs:label "Wasserbahn"@de, "marcaíocht uisce"@ga, "water ride"@en, "waterbaan"@nl, "پانی کی سواری"@ur ; + rdfs:subClassOf :AmusementParkAttraction ; + owl:equivalentClass wikidata:Q2870166 ; + prov:wasDerivedFrom . + +:WaterTower + a owl:Class ; + rdfs:comment "a construction designed to store larger quantities of water at a place of some elevation in order to keep pressure on the water provision system"@en, "une construction destinée à entreposer l'eau, et placée en général sur un sommet géographique pour permettre de la distribuer sous pression"@fr, "μια κατασκευή σχεδιασμένη για αποθήκευση μεγάλων ποσοτήτων νερού σε μέρος με κάποια ανύψωση, ώστε να διατηρήσει πίεση στο σύστημα παροχής νερού"@el, "پانی کی فراہمی کے نظام پر دباؤ برقرار رکھنے کے لیے کچھ بلندی کی جگہ پر پانی کی بڑی مقدار کو ذخیرہ کرنے کے لیے ڈیزائن کیا گیا ایک تعمیر"@ur ; + rdfs:label "Château d'eau"@fr, "Serbatoio idrico a torre"@it, "Wasserturm"@de, "Water tower"@en, "Watertoren"@nl, "πύργος νερού"@el, "بُرج آب"@ur ; + rdfs:subClassOf :Tower ; + owl:equivalentClass wikidata:Q274153 ; + prov:wasDerivedFrom . + +:Watermill + a owl:Class ; + rdfs:comment "A watermill is a structure that uses a water wheel or turbine to drive a mechanical process such as flour, lumber or textile production, or metal shaping (rolling, grinding or wire drawing)"@en, "واٹر مل ایک ایسا ڈھانچہ ہے جو پانی کے پہیے یا ٹربائن کا استعمال مکینیکل عمل کو چلانے کے لیے کرتا ہے جیسے آٹا، لکڑی یا ٹیکسٹائل کی پیداوار، یا دھات کی تشکیل (رولنگ، پیسنا یا تار ڈرائنگ)"@ur ; + rdfs:label "Moulin à eau"@fr, "Wassermühle"@de, "Watermill"@en, "Watermolen"@nl, "muileann uisce"@ga, "mulino ad acqua"@it, "Νερόμυλος"@el, "پن چکی"@ur, "水車小屋"@ja ; + rdfs:subClassOf :Mill ; + owl:equivalentClass wikidata:Q185187 ; + prov:wasDerivedFrom . + +:WaterwayTunnel + a owl:Class ; + rdfs:label "Kanaltunnel"@de, "kanaaltunnel"@nl, "tollán uiscebhealaigh"@ga, "tunnel de voie navigable"@fr, "waterway tunnel"@en, "آبی گزرگاہ کی سرنگ"@ur ; + rdfs:subClassOf :RouteOfTransportation ; + prov:wasDerivedFrom . + +:Weapon + a owl:Class ; + rdfs:label "Waffe"@de, "arm"@ga, "arme"@fr, "våben"@da, "wapen"@nl, "weapon"@en, "όπλο"@el, "ہتھیار"@ur, "武器"@ja, "무기"@ko ; + rdfs:subClassOf :Device, ; + owl:equivalentClass wikidata:Q728 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Weapon ; + rdfs:label "Durchmesser (mm)"@de, "diameter (mm)"@en, "diameter (mm)"@nl, "diamètre (mm)"@fr, "διάμετρος (mm)"@el ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Weapon ; + rdfs:label "Höhe (mm)"@de, "altura (mm)"@pt, "hauteur (mm)"@fr, "height (mm)"@en, "hoogte (mm)"@nl, "højde (mm)"@da, "višina (mm)"@sl, "ύψος (mm)"@el, "身長 (mm)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Weapon ; + rdfs:label "Länge (mm)"@de, "lengte (mm)"@nl, "length (mm)"@en, "longueur (mm)"@fr, "μήκος (mm)"@el, "ርዝመት (mm)"@am ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Weapon ; + rdfs:label "Gewicht (kg)"@de, "gewicht (kg)"@nl, "peso (kg)"@pt, "poids (kg)"@fr, "vægt (kg)"@da, "weight (kg)"@en, "βάρος (kg)"@el, "тежина (kg)"@sr, "体重 (kg)"@ja ; + rdfs:range . + + + a owl:DatatypeProperty ; + rdfs:domain :Weapon ; + rdfs:label "Breite (mm)"@de, "ancho (mm)"@es, "breedte (mm)"@nl, "width (mm)"@en, "πλάτος (mm)"@el, "ширина (mm)"@sr ; + rdfs:range . + +:Website + a owl:Class ; + rdfs:label "Webseite"@de, "site web"@fr, "sitio web"@gl, "suíomh idirlín"@ga, "website"@en, "website"@nl, "Ιστότοπος"@el, "ویب صفحات کا مجموعہ"@ur, "ウェブサイト"@ja, "웹사이트"@ko ; + rdfs:subClassOf :Work ; + owl:equivalentClass ; + prov:wasDerivedFrom . + +:WikimediaTemplate + a owl:Class ; + rdfs:comment "!اس کلاس کو استعمال نہ کریں! یہ صرف اندرونی استعمال کے لیے ہے"@ur, "DO NOT USE THIS CLASS! This is for internal use only!"@en, "NE PAS UTILISER CETTE CLASSE! Usage interne réservé uniquement!"@fr ; + rdfs:label "Wikimedia template"@en, "Wikimedia-Vorlage"@de, "modèle de Wikimedia"@fr, "ویکی میڈیا کا سانچہ"@ur ; + rdfs:subClassOf :Unknown ; + owl:equivalentClass wikidata:Q11266439 ; + prov:wasDerivedFrom . + +:WindMotor + a owl:Class ; + rdfs:comment "A wind-driven turbine that adapts itself to wind direction and to wind-force. Is considered to be a class in its own, despite the wind as common factor with Windmill."@en, "ہوا سے چلنے والی ٹربائن جو خود کو ہوا کی سمت اور ہوا کی طاقت کے مطابق ڈھال لیتی ہے۔ ونڈ مل کے ساتھ عام فیکٹر کے طور پر ہوا کے باوجود، اپنی ذات میں ایک طبقہ سمجھا جاتا ہے"@ur ; + rdfs:label "Roosmolen"@nl, "Wind motor"@en, "Windkraft"@de, "éolienne"@fr, "پَوَن چکّی کی طرح کی کّل"@ur ; + rdfs:subClassOf :Mill ; + owl:equivalentClass wikidata:Q15854792 ; + prov:wasDerivedFrom . + +:Windmill + a owl:Class ; + rdfs:comment "A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails"@en, "Le moulin à vent est un dispositif qui transforme l’énergie éolienne (énergie cinétique du vent) en mouvement rotatif au moyen d’ailes ajustables."@fr, "ہوا کی چکی ایک مشین ہے جو ہوا کی توانائی کو سیل نامی وینز کے ذریعے گردشی توانائی میں تبدیل کرتی ہے"@ur ; + rdfs:label "Molinos de viento"@es, "Windmill"@en, "Windmolen"@nl, "Windmühle"@de, "moulin à vent"@fr, "muileann gaoithe"@ga, "mulino a vento"@it, "vindmølle"@da, "Ανεμόμυλος"@el, "ہوا کی چکی"@ur, "風車"@ja ; + rdfs:subClassOf :Mill ; + owl:equivalentClass wikidata:Q38720 ; + prov:wasDerivedFrom . + +:Wine + a owl:Class ; + rdfs:label "Wein"@de, "fíon"@ga, "vin"@da, "vin"@fr, "vino"@es, "vino"@it, "wijn"@nl, "wine"@en, "κρασί"@el, "شراب"@ur, "ワイン"@ja ; + rdfs:subClassOf :Beverage ; + owl:equivalentClass wikidata:Q282 ; + prov:wasDerivedFrom . + +:WineRegion + a owl:Class ; + rdfs:label "Weinregion"@de, "région viticole"@fr, "wijnstreek"@nl, "wine region"@en, "شراب کا علاقہ"@ur, "ワイン産地"@ja ; + rdfs:subClassOf :Place ; + prov:wasDerivedFrom . + +:Winery + a owl:Class ; + rdfs:label "Weinkellerei"@de, "casa vinicola"@it, "fíonlann"@ga, "wijnmakerij"@nl, "winery"@en, "établissement vinicole"@fr, "οινοποιείο"@el, "شراب خانہ"@ur, "ワイナリー"@ja ; + rdfs:subClassOf :Company ; + owl:equivalentClass wikidata:Q156362 ; + prov:wasDerivedFrom . + +:WinterSportPlayer + a owl:Class ; + rdfs:label "Joueur de sport d'hiver"@fr, "Wintersportspieler"@de, "winter sport Player"@en, "wintersporter"@nl, "سرمائی کھیل کھیلنے والا"@ur ; + rdfs:subClassOf :Athlete ; + prov:wasDerivedFrom . + +:Woman + a owl:Class ; + rdfs:label "Frauen"@de, "donna"@it, "femme"@fr, "kobieta"@pl, "kvinde"@da, "vrouw"@nl, "woman"@en, "женщина"@ru, "عورت"@ur, "女性"@ja, "여자"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q467 ; + prov:wasDerivedFrom . + +:WomensTennisAssociationTournament + a owl:Class ; + rdfs:label "Torneo di Women's Tennis Association"@it, "Tournoi de la Women's Tennis Association"@fr, "WTA Turnier"@de, "WTA-toernooi"@nl, "Women's Tennis Association tournament"@en, "خواتین کی انجمن کا باہمی مقابلہ"@ur ; + rdfs:subClassOf :Tournament ; + prov:wasDerivedFrom . + +:Work + a owl:Class ; + rdfs:comment "Elément sur lequel on a passé du temps pour le réaliser. L'acteur peut être humain (homme) ou pas (machine, insectes, nature, ...)"@fr, "Item on which time has been spent for its realisation. Actor can be a human on not (machine, insects, nature...)"@en, "وہ شے جس پر اس کی تکمیل کے لیے وقت صرف کیا گیا ہو۔ اداکار انسان نہیں ہو سکتا (مشین، کیڑے، فطرت"@ur ; + rdfs:label "Werk"@de, "arbejde"@da, "obair"@ga, "obra"@pt, "werk"@nl, "work"@en, "œuvre"@fr, "δημιουργία"@el, "کام"@ur, "仕事"@ja ; + rdfs:subClassOf owl:Thing ; + owl:disjointWith ; + owl:equivalentClass , wikidata:Q386724 ; + prov:wasDerivedFrom . + + + a owl:DatatypeProperty ; + rdfs:domain :Work ; + rdfs:label "Laufzeit (m)"@de, "durée (m)"@fr, "duur (m)"@nl, "runtime (m)"@en, "διάρκεια (m)"@el ; + rdfs:range . + +:WorkSequence + a owl:Class ; + rdfs:comment "sequence of works previous/next"@en, "séquence d'oeuvres précédent/suivant"@fr, "پچھلے/اگلے کاموں کی ترتیب"@ur ; + rdfs:label "sequence of works"@en, "séquence d'oeuvres"@fr, "کام کی ترتیب"@ur ; + rdfs:subClassOf :List ; + prov:wasDerivedFrom . + +:WorldHeritageSite + a owl:Class ; + rdfs:comment "A UNESCO World Heritage Site is a site (such as a forest, mountain, lake, desert, monument, building, complex, or city) that is on the list that is maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 state parties which are elected by their General Assembly for a four-year term. A World Heritage Site is a place of either cultural or physical significance."@en, "یونیسکو کی عالمی ثقافتی ورثہ سائٹ ایک ایسی جگہ ہے (جیسے جنگل، پہاڑ، جھیل، صحرا، یادگار، عمارت، کمپلیکس، یا شہر) جو اس فہرست میں شامل ہے جسے یونیسکو کی عالمی ثقافتی ورثہ کمیٹی کے زیر انتظام بین الاقوامی عالمی ثقافتی ورثہ پروگرام کے ذریعے برقرار رکھا جاتا ہے۔ 21 ریاستی پارٹیوں پر مشتمل ہے جنہیں ان کی جنرل اسمبلی چار سال کی مدت کے لیے منتخب کرتی ہے۔ عالمی ثقافتی ورثہ کی جگہ ثقافتی یا جسمانی اہمیت کی حامل جگہ ہے"@ur ; + rdfs:label "Láithreán Oidhreachta Domhanda"@ga, "Weltkulturerbe"@de, "World Heritage Site"@en, "site du patrimoine mondial"@fr, "werelderfgoed"@nl, "Μνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)"@el, "عالمی ثقافتی ورثہ"@ur, "世界遺産"@ja, "세계유산"@ko ; + rdfs:subClassOf :Place ; + owl:equivalentClass wikidata:Q9259 ; + prov:wasDerivedFrom . + +:Wrestler + a owl:Class ; + rdfs:label "Ringer"@de, "coraí"@ga, "lutteur"@fr, "worstelaar"@nl, "wrestler"@en, "παλαιστής"@el, "پہلوان"@ur, "レスラー"@ja ; + rdfs:subClassOf :Athlete ; + owl:equivalentClass wikidata:Q13474373 ; + prov:wasDerivedFrom . + +:WrestlingEvent + a owl:Class ; + rdfs:label "Wrestling-Veranstaltung"@de, "match de catch"@fr, "worstelevenement"@nl, "wrestling event"@en, "αγώνας πάλης"@el, "کشتی کی تقریب"@ur ; + rdfs:subClassOf :SportsEvent ; + prov:wasDerivedFrom . + +:Writer + a owl:Class ; + rdfs:label "auteur"@nl, "escritor"@es, "forfatter"@da, "pisarz"@pl, "rakstnieks"@lv, "schriftsteller"@de, "scríbhneoir"@ga, "writer"@en, "écrivain"@fr, "συγγραφέας"@el, "مصنف"@ur, "著作家"@ja, "작가"@ko ; + rdfs:subClassOf :Person ; + owl:equivalentClass wikidata:Q36180 ; + prov:wasDerivedFrom . + +:WrittenWork + a owl:Class ; + rdfs:comment "Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. Bücher, Zeitungen, Artikel)."@de, "Un travail écrit est tout texte écrit destiné à être lu (ex. : livres, journaux, articles, document)"@fr, "Written work is any text written to read it (e.g.: books, newspaper, articles)"@en, "تحریری کام کسی بھی متن کو پڑھنے کے لیے لکھا جاتا ہے (مثال کے طور پر: کتابیں ، اخبار ، مضامین)"@ur ; + rdfs:label "geschreven werk"@nl, "geschriebenes Erzeugnis"@de, "obair scríofa"@ga, "obra escrita"@es, "skriftligt værk"@da, "travail écrit"@fr, "written work"@en, "تحریری کام"@ur ; + rdfs:subClassOf :Work ; + owl:equivalentClass wikidata:Q234460 ; + prov:wasDerivedFrom . + +:Year + a owl:Class ; + rdfs:label "Jahr"@de, "année"@fr, "ano"@pt, "año"@es, "bliain"@ga, "jaar"@nl, "rok"@pl, "year"@en, "år"@da, "έτος"@el, "سال"@ur, "年"@ja ; + rdfs:subClassOf :TimePeriod ; + owl:equivalentClass wikidata:Q577 ; + prov:wasDerivedFrom . + +:YearInSpaceflight + a owl:Class ; + rdfs:label "Zeitraum Raumflug"@de, "année de vols spatiaux"@fr, "año del vuelo espacial"@es, "vliegjaren"@nl, "year in spaceflight"@en, "خلائی پرواز میں سال"@ur ; + rdfs:subClassOf :TimePeriod ; + prov:wasDerivedFrom . + +:Youtuber + a owl:Class ; + rdfs:comment "a person who uploads, produces, or appears in videos on the video-sharing website YouTube.."@en, "وہ شخص جو ویڈیو شیئرنگ ویب سائٹ یوٹیوب پر ویڈیوز اپ لوڈ کرتا ہے، تیار کرتا ہے یا ان میں ظاہر ہوتا ہے"@ur ; + rdfs:label "Youtuber"@de, "Youtuber"@en, "youtuber"@da, "youtuberra"@eu, "youtubeuse"@fr, "اليوتيوب"@ar, "یوٹیب پر وڈیو لگانے والا"@ur, "यूट्यूबर"@hi ; + rdfs:subClassOf :Person ; + prov:wasDerivedFrom . + +:Zoo + a owl:Class ; + rdfs:label "Zoo"@de, "dierentuin"@nl, "zoo"@da, "zoo"@en, "zoo"@fr, "zú"@ga, "ζωολογικός κήπος"@el, "چڑیا گھر"@ur, "動物園"@ja ; + rdfs:subClassOf :ArchitecturalStructure ; + owl:equivalentClass wikidata:Q43501 ; + prov:wasDerivedFrom . + +:aSide + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Single ; + rdfs:label "Single"@de, "a side"@en, "cara A"@ca, "strona A"@pl, "taobh a"@ga, "εξώφυλλο"@el, "страна"@sr, "ایک طرف"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:abbeychurchBlessing + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cleric ; + rdfs:label "Abteikirche weihe"@de, "abbey church blessing"@en, "опатијски црквени благослов"@sr, "ابی چرچ کی برکت"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:abbeychurchBlessingCharge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cleric ; + rdfs:label "abbey church blessing charge"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:abbreviation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Abkürzung"@de, "abbreviation"@en, "abréviation"@fr, "afkorting"@nl, "giorrúchán"@ga, "skrót"@pl, "συντομογραφία"@el, "кратенка"@mk, "скраћеница"@sr, "مخفف"@ur, "ምዕጻረ ቃል"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P743 ; + prov:wasDerivedFrom . + +:ableToGrind + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mill ; + rdfs:label "able to grind"@en, "maalvaardig"@nl, "mahlenfähig"@de, "پیسنے کے قابل"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:absoluteMagnitude + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "absolute Helligkeit"@de, "absolute magnitude"@en, "dearbhmhéid"@ga, "magnitude absolue"@fr, "wielkość absolutna"@pl, "απόλυτο μέγεθος"@el, "апсолутна магнитуда"@sr ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P1457 ; + prov:wasDerivedFrom . + +:abstentions + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of abstentions from the vote"@en, "an líon daoine a staon ó vótáil"@ga, "ووٹ سے پرہیز کرنے والوں کی تعداد"@ur ; + rdfs:domain :StatedResolution ; + rdfs:label "Aantal onthoudingen"@nl, "Anzahl der Enthaltungen nach der Abstimmung"@de, "abstentions"@en, "staonadh"@ga, "Αριθμός αποχών μετά από ψηφοφορία"@el, "پرہیز"@ur ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:abstract + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en, "Προορίζεται για την DBpedia."@el ; + rdfs:label "abstract"@de, "has abstract"@en, "έχει περίληψη"@el, "апстракт"@sr, "خلاصہ"@ur ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:academicAdvisor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Scientist ; + rdfs:label "academic advisor"@en, "conseiller académique"@fr, "promotor"@nl, "ακαδημαϊκοί_σύμβουλοι"@el, "академски саветник"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:academicDiscipline + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "An academic discipline, or field of study, is a branch of knowledge that is taught and researched at the college or university level. Disciplines are defined (in part), and recognized by the academic journals in which research is published, and the learned societies and academic departments or faculties to which their practitioners belong."@en, "ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے"@ur ; + rdfs:domain :AcademicJournal ; + rdfs:label "academic discipline"@en, "wissenschaftliche Disziplin"@de, "академска дисциплина"@sr, "تعلیمی نظم و ضبط"@ur ; + rdfs:subPropertyOf dul:isAbout ; + prov:wasDerivedFrom . + +:academyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "موشن تصویر پروڈکشن اور کارکردگی میں کامیابیوں کے لئے اکیڈمی آف موشن تصویر آرٹس اور سائنسز کے ذریعہ ایک سالانہ اعزاز"@ur ; + rdfs:domain :Artist ; + rdfs:label "Academy Award"@de, "Academy Award"@en, "Duais an Acadaimh"@ga, "Nagroda Akademii Filmowej"@pl, "Βραβείο ακαδημίας"@el, "оскар"@sr, "اکیڈمی ایوارڈ"@ur ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:acceleration + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:comment "variation de la vitesse"@fr ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Beschleunigung (s)"@de, "acceleració (s)"@ca, "acceleratie (s)"@nl, "acceleration (s)"@en, "accélération (s)"@fr, "luasghéarú (s)"@ga, "przyspieszenie (s)"@pl, "επιτάχυνση (s)"@el, "убрзање (s)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:access + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Zugriff"@de, "access"@en, "accès"@fr, "toegang"@nl, "πρόσβαση"@el, "приступ"@sr, "رسائی"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:accessDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Zugriffsdatum"@de, "access date"@en, "date d'accès"@fr, "toegangsdatum"@nl, "ημερομηνία πρόσβασης"@el, "датум приступа"@sr, "رسائی کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:achievement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Leistung"@de, "achievement"@en, "haut fait, accomplissement"@fr, "logro"@es, "prestatie"@nl, "κατόρθωμα"@el, "достигнуће"@sr ; + prov:wasDerivedFrom . + +:acquirementDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "Anschaffungszeitpunkt"@de, "date of acquirement"@en, "ημερομηνία απόκτησης"@el, "حصول کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:actScore + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "most recent average ACT scores"@en, "ποιό πρόσφατες μέσες βαθμολογίες ACT"@el ; + rdfs:domain :School ; + rdfs:label "ACT score"@en, "ACT σκορ"@el, "ACT резултат"@sr, "اے سی تی سکور"@ur ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:actingHeadteacher + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "acting headteacher"@en, "διευθυντής σχολείου"@el, "вд шефа наставе"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:activeCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "وبائی مرض میں فعال کیسوں کی تعداد"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Active Cases"@en, "فعال کیسز"@ur ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:activeYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Also called \"floruit\". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear"@en, "Appelé aussi \"floruit\". Utillisez ceci si les années d'activité sont dans un même domaine non fractionnable. Sinon utilisez activeYearsStartYear et activeYearsEndYear"@fr ; + rdfs:domain :Person ; + rdfs:label "active years"@en, "aktive Jahre"@de, "années d'activité"@fr, "активне године"@sr, "فعال سال"@ur ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:activeYearsEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "actieve jaren einddatum"@nl, "active years end date"@en, "ενεργή ημερομηνία λήξης χρόνου"@el, "датум завршетка активних година"@sr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:activeYearsEndDateMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "active years end date manager"@en, "فعال سال کی آخری تاریخ Mgr"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:activeYearsEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "actieve jaren eind jaar"@nl, "active years end year"@en, "ενεργά χρόνια τέλος του χρόνου"@el, "последња година активних година"@sr, "فعال سال آخر سال"@ur, "引退年"@ja ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:activeYearsEndYearMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "active years end year manager"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:activeYearsStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "actieve jaren startdatum"@nl, "active years start date"@en, "date de début d'activité"@fr, "ενεργά χρόνια ημερομηνία έναρξης"@el, "датум почетка активних година"@sr, "فعال سال کی شروعات کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:activeYearsStartDateMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "active years start date manager"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:activeYearsStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "actieve jaren start jaar"@nl, "active years start year"@en, "ενεργός χρόνος έτος λειτουργίας"@el, "почетна година активних година"@sr ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:activeYearsStartYearMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "active years start year manager"@en, "فعال سال شروع سال Mgr"@ur ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:activity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Aktivität"@de, "activity"@en, "activité"@fr, "δραστηριότητα"@el, "активност"@sr, "سرگرمی"@ur ; + owl:equivalentProperty wikidata:P106 ; + prov:wasDerivedFrom . + +:address + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Address of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government"@en ; + rdfs:domain :Place ; + rdfs:label "Adresse"@de, "address"@en, "adres"@nl, "adresse"@fr, "διεύθυνση"@el, "адрес"@ru, "адреса"@sr ; + rdfs:range rdf:langString ; + owl:equivalentProperty , wikidata:P969, ; + prov:wasDerivedFrom . + +:addressInRoad + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A building, organisation or other thing that is located in the road."@en, "Ένα κτήριο, οργανισμός ή κάτι άλλο που βρίσκεται στον δρόμο."@el ; + rdfs:domain :Road ; + rdfs:label "Adresse in Straße"@de, "address in road"@en, "διεύθυνση στον δρόμο"@el, "Адреса на путу"@sr, "سڑک میں واقع ہے"@ur ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:adjacentSettlement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "adjacent settlement of a switzerland settlement"@en, "Суседно насеље у Швајцарској"@sr, "ملحقہ بستی"@ur ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:administrativeCenter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "Verwaltungszentrum"@de, "administrative center"@en, "centre administratif"@fr, "административни центар"@sr ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:administrativeCollectivity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Verwaltungsgemeinschaft"@de, "administratieve gemeenschap"@nl, "administrative collectivity"@en, "collectivité administrative"@fr, "διοικητική συλλογικότητα"@el, "административна заједница"@sr, "انتظامی اجتماعیت"@ur ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:administrativeDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Verwaltungsbezirk"@de, "administrative district"@en, "provincie"@nl, "δήμος"@el, "управни округ"@sr, "انتظامی ضلع"@ur ; + rdfs:range :PopulatedPlace ; + prov:wasDerivedFrom . + +:administrativeHeadCity + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "city where stand the administrative power"@en, "ville où siège le pouvoir administratif"@fr ; + rdfs:domain :PopulatedPlace ; + rdfs:label "ciudad a la cabeza"@es, "head city"@en, "ville dirigeante"@fr, "административни центар (град)"@sr ; + rdfs:range :City ; + prov:wasDerivedFrom . + +:administrativeStatus + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "administrative status"@en, "administrativer Status"@de, "административни статус"@sr, "انتظامی درجہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:administrator + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Verwalter"@de, "administrateur"@fr, "administrator"@en, "διαχειριστής"@el, "управник"@sr, "منتظم"@ur ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:afdbId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "AFDB ID"@de, "AFDB ID"@sr, "afdb id"@el, "afdb id"@en, "código no afdb"@pt ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:affair + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "affair"@en, "афера"@sr, "معاملہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:affiliate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "affiliate"@en, "الحاق"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:affiliation + a rdf:Property, owl:ObjectProperty ; + rdfs:label "affiliation"@en, "lidmaatschap"@nl, "ιστολόγιο"@el, "припадност"@sr ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:afiAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "AFI Award"@en, "AFI награда"@sr, "βραβείο AFI"@el, "اے ایف آئی انعام"@ur ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:age + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Agent ; + rdfs:label "Alter"@de, "age"@en, "age"@fr, "leeftijd"@nl, "ηλικία"@el, "старост"@sr, "عمر"@ur ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:ageRange + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Age range of students admitted in a School, MilitaryUnit, etc"@en ; + rdfs:label "Altersgruppe"@de, "age range"@en, "εύρος ηλικίας"@el, "опсег година"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:agency + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Agentur"@de, "agency"@en, "делатност"@sr, "ایجنسی"@ur ; + prov:wasDerivedFrom . + +:agencyStationCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Agency station code (used on tickets/reservations, etc.)."@en, "Κωδικός πρακτορείου (χρησιμοποιείται σε εισιτήρια/κρατήσεις,κτλ.)."@el, "ایجنسی اسٹیشن کوڈ (ٹکٹ/مخصوص کرنے کا عمل وغیرہ پر استعمال کیا جاتا ہے)۔"@ur ; + rdfs:domain :Station ; + rdfs:label "Stationsabkürzung"@de, "agency station code"@en, "stationscode"@nl, "κωδικός πρακτορείου"@el, "код станице"@sr, "ایجنسی اسٹیشن کوڈ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:agglomeration + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "agglomeration"@en, "агломерација"@sr ; + rdfs:range :Agglomeration ; + prov:wasDerivedFrom . + +:agglomerationArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Ballungsraum"@de, "agglomeration area"@en, "област агломерације"@sr, "جمع کا علاقہ"@ur ; + rdfs:range :Area ; + prov:wasDerivedFrom . + +:agglomerationDemographics + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "agglomeration demographics"@en, "демографија агломерације"@sr, "جمع آبادیات"@ur ; + rdfs:range :Demographics ; + prov:wasDerivedFrom . + +:agglomerationPopulation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "agglomeration population"@en, "популација агломерације"@sr ; + rdfs:range :Population ; + prov:wasDerivedFrom . + +:agglomerationPopulationTotal + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "agglomeration population total"@en, "укупна популација агломерације"@sr, "مجموعی آبادی کل"@ur ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:agglomerationPopulationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "agglomerationPopulationYear"@en, "година популације агломерације"@sr, "مجموعی آبادی کا سال"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:aggregation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Aggregatie"@nl, "Aggregation"@en, "Agrégat"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:airDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RadioStation ; + rdfs:label "airdate"@en, "ημερομηνία αέρα"@el, "датум емитовања"@sr, "رہائی کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:aircraftAttack + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Flugzeugangriff"@de, "aircraft attack"@en, "επίθεση αεροσκάφους"@el, "напад из ваздуха"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftBomber + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft bomber"@en, "βομβαρδιστικό αεροσκάφος"@el, "авион бомбардер"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftElectronic + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft electronic"@en, "ηλεκτρονικό αεροσκάφος"@el ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftFighter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft fighter"@en, "μαχητικό αεροσκάφος"@el, "борбени авион"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Hubschrauber"@de, "aircraft helicopter"@en, "ελικοφόρο αεροσκάφος"@el, "хеликоптер"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterAttack + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Hubschrauberangriff"@de, "aircraft helicopter attack"@en, "επίθεση ελικοφόρων αεροσκαφών"@el, "ваздушни напад хеликоптером"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterCargo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft helicopter cargo"@en, "φορτίο ελικοφόρου αεροσκάφους"@el, "теретни хеликоптер"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterMultirole + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Mehrzweck-Hubschrauber"@de, "aircraft helicopter multirole"@en, "ελικοφόρο αεροσκάφος πολλαπλών ρόλων"@el, "вишенаменски хеликоптер"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterObservation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft helicopter observation"@en, "παρατήρηση ελικοφόρου αεροσκάφους"@el, "осматрање хеликоптером"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterTransport + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft helicopter transport"@en, "μεταφορές που πραγματοποιούνται με ελικοφόρο αεροσκάφος"@el, "транспортни хеликоптер"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftHelicopterUtility + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft helicopter utility"@en ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftInterceptor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft interceptor"@en, "αναχαίτιση αεροσκάφους"@el, "авион пресретач"@sr ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftPatrol + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft patrol"@en, "περιπολία αεροσκάφους"@el ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftRecon + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft recon"@en ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftTrainer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft trainer"@en ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftTransport + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "aircraft transport"@en, "αερομεταφορές"@el ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:aircraftType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Flugzeugtyp"@de, "aircraft type"@en, "tipo de avión"@es, "τύπος αεροσκάφους"@el, "тип летелице"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:aircraftUser + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Flugzeugnutzer"@de, "aircraft user"@en, "usuario del avión"@es, "χρήστης αεροσκάφους"@el ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:airportUsing + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "Different usage of an airport"@en, "Unterschiedliche Nutzung eines Flughafens"@de, "οι χρήσεις ενός αεροδρομίου"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:aitaCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "AITA код"@sr, "aita code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:albedo + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "reflection coefficient"@en, "συντελεστής ανάκλασης"@el ; + rdfs:domain :Planet ; + rdfs:label "albedo"@el, "albedo"@en, "албедо"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:album + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Album"@de, "album"@en, "album"@fr, "album"@nl, "από το άλμπουμ"@el, "албум"@sr ; + rdfs:range :Album ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:albumRuntime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Album ; + rdfs:label "Album Länge (s)"@de, "album duration (s)"@en, "трајање албума (s)"@sr, "የአልበም ርዝመት (s)"@am ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :runtime ; + prov:wasDerivedFrom . + +:alias + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "alias"@en, "alias"@fr, "alias"@nl, "ψευδώνυμο"@el, "алијас"@sr, "псевдоним"@ru, "別名"@ja ; + rdfs:range rdf:langString ; + owl:equivalentProperty , wikidata:P742 ; + prov:wasDerivedFrom . + +:allcinemaId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "allcinema id"@el, "allcinema id"@en, "allcinema id"@ja, "allcinema id"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:allegiance + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The country or other power the person served. Multiple countries may be indicated together with the corresponding dates. This field should not be used to indicate a particular service branch, which is better indicated by the branch field."@en ; + rdfs:domain :Person ; + rdfs:label "allegiance"@en, "υποταγή"@el, "верност"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:alliance + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Airline ; + rdfs:label "Allianz"@de, "alliance"@en, "alliance"@fr, "συμμαχία"@el, "савез"@sr ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:almaMater + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "schools that they attended"@en, "écoles fréquentées"@fr ; + rdfs:domain :Person ; + rdfs:label "alma mater"@en, "école"@fr, "σπουδές"@el, "альма-матер"@ru, "студије"@sr ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P69 ; + prov:wasDerivedFrom . + +:alongside + a rdf:Property, owl:ObjectProperty ; + rdfs:label "alongside"@en, "δίπλα"@el, "уз"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:alphabet + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A set of characters used to represent the phonemic structure of a language"@en, "የቋንቋውን የአጻጻፍ መዋቅር"@am ; + rdfs:domain :Language ; + rdfs:label "alphabet"@en, "ፊደል"@am ; + prov:wasDerivedFrom . + +:alpsGroup + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps group to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps group"@en, "gruppo alpino"@it, "ομάδα των άλπεων"@el, "алпска група"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsMainPart + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps main part to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps main part"@en, "grande parte alpina"@it, "κύριο μέρος των άλπεων"@el, "главни део Алпа"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsMajorSector + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps major sector to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps major sector"@en, "grande settore alpino"@it, "σημαντικότερος τομέας των άλπεων"@el, "главни Алпски сектор"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsSection + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps section to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps section"@en, "sezione alpina"@it, "τμήμα των άλπεων"@el, "Алпска секција"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsSoiusaCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps SOIUSA code"@en, "codice SOIUSA"@it, "κώδικας SOIUSA των άλπεων"@el, "алпски SOIUSA код"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:alpsSubgroup + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps subgroup to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps subgroup"@en, "sottogruppo alpino"@it, "υποομάδα των άλπεων"@el, "Алпска подгрупа"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsSubsection + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps subsection to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps subsection"@en, "Alps υποδιαίρεση των άλπεων"@el, "sottosezione alpina"@it, "Алпска подсекција"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alpsSupergroup + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the Alps supergroup to which the mountain belongs, according to the SOIUSA classification"@en ; + rdfs:domain :Mountain ; + rdfs:label "Alps supergroup"@en, "Alps υπερομάδα"@el, "supergruppo alpino"@it, "Алпска супергрупа"@sr ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:alternativeName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Alternative naming of anything not being a Person (for which case foaf:nick should be used)."@en, "Autre manière de nommer quelque chose qui n'est pas une personne (pour cette dernière, utilisez foaf:nick)."@fr ; + rdfs:label "alternative name"@en, "alternativer Name"@de, "autre nom"@fr, "naamsvariant"@nl, "алтернативни назив"@sr ; + rdfs:range rdf:langString ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:alternativeText + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Alternative textuelle de l'image ; remplace l'image pour les lecteurs d'écrans ; description succincte de l'image (un maximum de 120 caractères est recommandé)."@fr, "Replacement text if the image cannot be displayed; used for screen readers; describes the image (max 120 chars recommended)."@en ; + rdfs:label "alternative text"@en, "texte alternatif"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:alternativeTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Autre titre attribué à une oeuvre"@fr, "The alternative title attributed to a work"@en ; + rdfs:domain :Work ; + rdfs:label "alternatieve titel"@nl, "alternative title"@en, "alternativer Titel"@de, "autre titre"@fr, "алтернативни наслов"@sr ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:altitude + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Höhe"@de, "altitud"@es, "altitude"@en, "altitude"@fr, "hoogte"@nl, "υψόμετρο"@el, "апсолутна висина"@sr, "標高"@ja ; + rdfs:range :Altitude ; + prov:wasDerivedFrom . + +:alumni + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Alumni"@de, "alumni"@en, "anciens élèves"@fr, "απόφοιτοι πανεπιστημίου"@el, "алумни"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:amateurDefeat + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur defeat"@en, "аматерских пораза"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurFight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur fight"@en, "аматерских борби"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurKo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur ko"@en, "број аматерских нокаута"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurNoContest + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur no contest"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "amateur team"@en, "аматерски тим"@sr ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:amateurTie + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur tie"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "Amateurtitel"@de, "amateur title"@en, "аматерска титула"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:amateurVictory + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "amateur victory"@en, "aматерских победа"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:amateurYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "amateur year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:americanComedyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Comedian ; + rdfs:label "American Comedy Award"@en, "αμερικάνικο βραβείο κωμωδίας"@el, "америчка награда за комедију"@sr ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:amgid + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "AMG ID"@sr, "amgId"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1562 ; + prov:wasDerivedFrom . + +:amsterdamCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Municipality ; + rdfs:label "Amsterdam Code"@en, "Amsterdamse code"@nl, "Амстердам код"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:analogChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "Analogkanal"@de, "analog channel"@en, "αναλογικό κανάλι"@el, "аналогни канал"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:animal + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Tier"@de, "animal"@en, "animal"@fr, "beest"@nl, "ζώο"@el, "животиња"@sr, "動物"@ja ; + rdfs:range :Animal ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:animator + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Cartoon ; + rdfs:label "animator"@en, "ανιμέιτορ"@el, "аниматор"@sr ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:anniversary + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Jubiläum"@de, "anniversaire"@fr, "anniversary"@en, "επέτειος"@el, "годишњица"@sr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:announcedFrom + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "announcedFrom"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:annualTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Jahrestemperatur (K)"@de, "annual temperature (K)"@en, "jaartemperatuur (K)"@nl, "température annuelle (K)"@fr, "ετήσια θερμοκρασία (K)"@el, "годишња температура (K)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:anthem + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Chant officiel (hymne) d'un lieu habité, d'une équipe sportive, d'une école ou autre"@fr, "Official song (anthem) of a PopulatedPlace, SportsTeam, School or other"@en ; + rdfs:label "Hymne"@de, "anthem"@en, "hino"@pt, "hymne"@fr, "volkslied"@nl, "ύμνος"@el, "гимн"@ru, "химна"@sr, "ብሔራዊ መዝሙር"@am ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P85 ; + prov:wasDerivedFrom . + +:aoCloassification + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "AO"@de, "AO"@en, "AO"@fr, "AO"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:apcPresident + a rdf:Property, owl:ObjectProperty ; + rdfs:label "apc president"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:apoapsis + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "Apoapsisdistanz (μ)"@de, "apoapsis (μ)"@en, "απόαψης (μ)"@el, "апоапсис (μ)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:apofocus + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "apofocus"@en, "apofocus"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:apparentMagnitude + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "apparent magnitude"@en, "scheinbare Helligkeit"@de, "φαινόμενο μέγεθος"@el, "видимая звёздная величина"@ru, "привидна звездана величина"@sr ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P1215 ; + prov:wasDerivedFrom . + +:appearance + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Erscheinungsbild"@de, "appearance"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:appearancesInLeague + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "appearances in league"@en, "εμφανίσεις στο πρωτάθλημα"@el, "број наступа у лиги"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:appearancesInNationalTeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "appearances in national team"@en, "εμφανίσεις στην εθνική ομάδα"@el, "број наступа у националном тиму"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:appointer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "appointer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:apprehended + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Criminal ; + rdfs:label "apprehended"@en, "gefasst"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:approach + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "approach"@en, "approche"@fr, "نقطہ نظر"@ur ; + prov:wasDerivedFrom . + +:approvedByLowerParliament + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of approval by lower parliament (House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.)."@en ; + rdfs:domain :Law ; + rdfs:label "date of approval by lower parliament"@en, "datum aangenomen door Tweede Kamer, Lagerhuis, Bondsdag enz."@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:approvedByUpperParliament + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of approval by upper parliament (House of Lords, Sénat, Eerste Kamer etc.)."@en ; + rdfs:domain :Law ; + rdfs:label "date of approval by upper parliament"@en, "datum aangenomen door Eerste Kamer, Hogerhuis, Senaat enz."@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:approximateCalories + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Approximate calories per serving."@en, "Kατά προσέγγιση θερμίδες ανά μερίδα."@el ; + rdfs:domain :Food ; + rdfs:label "approximate calories (J)"@en, "ungefähre Kalorien (J)"@de, "κατά προσέγγιση θερμίδες (J)"@el, "приближно калорија (J)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:apskritis + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "apskritis"@en, "литвански округ"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:archipelago + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "Archipel"@de, "archipel"@nl, "archipelago"@en, "αρχιπέλαγος"@el, "архипелаг"@sr ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:architect + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Architekt"@de, "ailtire"@ga, "architect"@en, "architect"@nl, "architecte"@fr, "architekt"@pl, "architetto"@it, "αρχιτέκτονας"@el, "архитекта"@sr, "архитектор"@ru ; + rdfs:range :Architect ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P84 ; + prov:wasDerivedFrom . + +:architectualBureau + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Architekturbüro"@de, "architectual bureau"@en, "αρχιτεκτονική κατασκευή"@el, "عمارتی دفتر"@ur ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:architecturalMovement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Architect ; + rdfs:label "Architekturbewegung"@de, "architectural movement"@en, "архитектонски покрет"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:architecturalStyle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "architectural style"@en, "bouwstijl"@nl, "style architectural"@fr, "αρχιτεκτονικό στυλ"@el, "архитектонски стил"@sr, "архитектурный стиль"@ru ; + rdfs:subPropertyOf dul:isDescribedBy ; + owl:equivalentProperty wikidata:P149 ; + prov:wasDerivedFrom . + +:area + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The area of the thing in square meters."@en ; + rdfs:label "Fläche (m2)"@de, "area (m2)"@en, "oppervlakte (m2)"@nl, "superficie (m2)"@fr, "área (m2)"@pt, "έκταση (m2)"@el, "област (m2)"@sr, "رقبہ (m2)"@ur ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Area code for telephone numbers. Use this not phonePrefix"@en ; + rdfs:domain :Place ; + rdfs:label "Vorwahl"@de, "area code"@en, "indicatif régional"@fr, "netnummer"@nl, "κωδικός_περιοχής"@el, "местный телефонный код"@ru, "позивни број"@sr, "दूरभाष कोड"@hi, "የስልክ ክልል ኮድ"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P473 ; + prov:wasDerivedFrom . + +:areaDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:areaLand + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area land (m2)"@en, "oppervlakte land (m2)"@nl, "έκταση_στεριάς_περιοχής (m2)"@el, "површина земљишта (m2)"@sr, "زمین کا علاقہ (m2)"@ur ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaMetro + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "area metro (m2)"@en, "περιοχή μετρό (m2)"@el, "метрополска област (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaOfCatchment + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Lake ; + rdfs:label "Einzugsgebiet (m2)"@de, "area of catchment (m2)"@en, "λίμνη (m2)"@el, "подручје слива (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaOfCatchmentQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area of catchment quote"@en, "آب گیری اقتباس کا علاقہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:areaOfSearch + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SiteOfSpecialScientificInterest ; + rdfs:label "Suchgebiet"@de, "area of search"@en, "Περιοχή Αναζήτησης"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:areaQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:areaRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area rank"@en, "површина ранг"@sr, "علاقے کا درجہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:areaRural + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "area rural (m2)"@en, "αγροτική περιοχή (m2)"@el, "рурална област (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaTotal + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Fläche (m2)"@de, "area total (m2)"@en, "oppervlakte (m2)"@nl, "superficie (m2)"@fr, "έκταση περιοχής (m2)"@el, "укупна површина (m2)"@sr, "ጠቅላላ የመሬት ስፋት (m2)"@am ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2046 ; + prov:wasDerivedFrom . + +:areaTotalRanking + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "total area ranking"@en, "συνολική περιοχή"@el, "укупна површина ранг"@sr, "کل علاقے کی درجہ بندی"@ur ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:areaUrban + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Stadtgebiet (m2)"@de, "area urban (m2)"@en, "αστική περιοχή (m2)"@el, "урбана површина (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:areaWater + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area water (m2)"@en, "oppervlakte water (m2)"@nl, "έκταση_υδάτων_περιοχής (m2)"@el, "водена површина (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:argueDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SupremeCourtOfTheUnitedStatesCase ; + rdfs:label "argue date"@en, "δημοφιλής ημερομηνία"@el, "بحث کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:arielAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "ARIEL награда"@sr, "Ariel Award"@el, "Ariel Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:arm + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Protein ; + rdfs:label "arm"@en, "ώμος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:army + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "An army is the ground force of the nation"@en, "Une armée est la force terrestre de la nation"@fr, "Ένας στρατός αποτελεί τις επίγειες ένοπλες δυνάμεις ενός έθνους"@el ; + rdfs:domain :MilitaryPerson ; + rdfs:label "Armee"@de, "army"@en, "armée"@fr, "leger"@nl, "στρατός"@el, "فوج"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:arrestDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "arrest date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:arrondissement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "arrondissement"@en, "arrondissement"@fr, "arrondissement"@nl, "διαμέρισμα"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:artPatron + a rdf:Property, owl:ObjectProperty ; + rdfs:comment """An influential, wealthy person who supported an artist, craftsman, a scholar or a noble. + +. See also"""@en, "Celui qui encourage par ses libéralités les sciences, les lettres et les arts."@fr ; + rdfs:domain :Agent ; + rdfs:label "mécène"@fr, "patron (art)"@en, "فن کاسرپرست"@ur ; + rdfs:range :Artist ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:artery + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Arterie"@de, "ader"@nl, "artery"@en, "αρτηρία"@el ; + rdfs:range :Artery ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:artificialSnowArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "artificial snow area"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:artist + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Celui qui interprète ou qui a créé l'oeuvre musicale."@fr, "The performer or creator of the musical work."@en, "موسیقی کے کام کا اداکار یا تخلیق کار۔"@ur ; + rdfs:domain :MusicalWork ; + rdfs:label "Interpret"@de, "artiest"@nl, "interprète"@fr, "intérprete"@es, "performer"@en, "wykonawca"@pl, "καλλιτέχνης"@el, "فنکار"@ur, "አርቲስት"@am ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P175 ; + prov:wasDerivedFrom . + +:artistFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Artist function: vocal, group, instrumentalist, compositor..."@en, "Fonction de l'artiste : chanteur, groupe, instrumentiste, compositeur..."@fr ; + rdfs:domain :Artist ; + rdfs:label "artist function"@en, "fonction artistique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:artisticFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "artistic function"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:asWikiText + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Contains a WikiText representation of this thing"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ascent + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Ascent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent"@en ; + rdfs:label "Aufstieg"@de, "ascent"@en, "ανάβαση"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:asiaChampionship + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "asia championship"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:aspectRatio + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "(ٹیلی وژن) تناسب نظر / عکس کی چوڑائی کا بلندی سے تناسب"@ur ; + rdfs:domain :Software ; + rdfs:label "Aspect Ratio"@en, "Seitenverhältnis"@de, "λόγος"@el, "پہلو کا تناسب"@ur ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:assembly + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Montage"@de, "assembly"@en, "συνέλευση"@el ; + prov:wasDerivedFrom . + +:assetUnderManagement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "asset under management ($)"@en, "κεφάλαιο υπό διαχείριση ($)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:assets + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Assets and liabilities are part of a companis balance sheet. In financial accounting, assets are economic resources. Anything tangible or intangible that is capable of being owned or controlled to produce value and that is held to have positive economic value is considered an asset."@en, "Περιουσιακά στοιχεία και υποχρεώσεις αποτελούν μέρος του ισολογισμού μιας εταιρείας.Σε χρηματοοικονομική λογιστική,τα περιουσιακά στοιχεία είναι οι οικονομικοί πόροι. Οτιδήποτε ενσώματο ή άυλο, που είναι ικανό να ανήκει ή να ελέγχεται για να παράγει αξία και που κατέχεται για να έχει θετική οικονομική αξία θεωρείται ένα περιουσιακό στοιχείο."@el, "اثاثے اور واجبات کمپنی کی بیلنس شیٹ کا حصہ ہیں۔ مالیاتی اکاؤنٹنگ میں، اثاثے اقتصادی وسائل ہیں۔ کوئی بھی ٹھوس یا غیر محسوس چیز جو قدر پیدا کرنے کے لیے ملکیت یا کنٹرول کرنے کے قابل ہو اور جس کی مثبت اقتصادی قدر ہو اسے اثاثہ سمجھا جاتا ہے۔"@ur ; + rdfs:domain :Company ; + rdfs:label "Aktiva ($)"@de, "assets ($)"@en, "περιουσιακά στοιχεία ($)"@el, "اثاثے ($)"@ur ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:assistantPrincipal + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "assistant principal"@en, "κύριος βοηθός"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:associate + a rdf:Property, owl:ObjectProperty ; + rdfs:label "associate"@en, "συνεργάτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:associateEditor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Newspaper ; + rdfs:label "associate editor"@en, "συνεργαζόμενος συντάκτης"@el, "رفیقه مدیر"@ur ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:associateStar + a rdf:Property, owl:ObjectProperty ; + rdfs:label "associateStar"@en, "çevreleyen"@tr, "συγγενικός αστέρας"@el ; + rdfs:range :Constellation ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:associatedAct + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "associated act"@en, "συνδεδεμένη πράξη"@el ; + rdfs:range :Artist ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:associatedBand + a rdf:Property, owl:ObjectProperty ; + rdfs:label "associated band"@en, "συνεργαζόμενο συγκρότημα"@el, "منسلک سازینه"@ur ; + rdfs:range :Band ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:associatedMusicalArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:label "associated musical artist"@en, "συνεργάτης-μουσικός καλλιτέχνης"@el ; + rdfs:range :MusicalArtist ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:associatedRocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "associated rocket"@en, "συνδεόμενος πύραυλος"@el ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:associationOfLocalGovernment + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "association of local government"@en, "vereniging van lokale overheden"@nl, "συνεργασία της τοπικής αυτοδιοίκησης"@el, "مقامی حکومت کی انجمن"@ur ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:astrazenca + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "AstraZeneca plc est une multinationale pharmaceutique et biotechnologique anglo-suédoise dont le siège social est situé au Cambridge Biomedical Campus à Cambridge, en Angleterre."@fr, "AstraZeneca plc is a British-Swedish multinational pharmaceutical and biotechnology company with its headquarters at the Cambridge Biomedical Campus in Cambridge, England."@en, "阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业"@zh ; + rdfs:label "Astrazenca"@en, "Astrazenca"@fr, "阿斯利康制药"@zh ; + rdfs:range xsd:string ; + owl:equivalentProperty :vaccine ; + prov:wasDerivedFrom . + +:astrazencaCumul + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业"@en ; + rdfs:label "AstrazencaCumulativeDoses"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty :astrazenca ; + prov:wasDerivedFrom . + +:astrologicalSign + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Sternzeichen"@de, "astrological sign"@en, "signo astrológico"@pt, "αστρολογικό ζώδιο"@el, "نشان نجوم"@ur ; + rdfs:subPropertyOf dul:isDescribedBy ; + prov:wasDerivedFrom . + +:atPage + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Page # where the referenced resource is to be found in the source document"@en ; + rdfs:domain :Reference ; + rdfs:label "Seitenzahl"@de, "page number"@en, "pagina van verwijzing"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:atRowNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Numéro de ligne où la ressource référencée doit se trouver dans le fichier source"@fr, "Row number where the referenced resource is to be found in the source file"@en ; + rdfs:domain :Reference ; + rdfs:label "Zeilennummer"@de, "numéro de ligne"@fr, "regelnummer van verwijzing"@nl, "row number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:atcCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "ATC code"@en, "ATC code"@fr, "κώδικας ATC"@el, "اے ٹی سی کوڈ"@ur ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:atcPrefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "ATC prefix"@en, "ATC πρόθεμα"@el, "préfix ATC"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:atcSuffix + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "ATC suffix"@en, "ATC κατάληξη"@el, "suffix ATC"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:athletics + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :University ; + rdfs:label "Leichtathletik"@de, "athletics"@en, "αθλητισμός"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:athleticsDiscipline + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Leichtathletikdisziplin"@de, "athletics discipline"@en, "discipline athlétique"@fr ; + rdfs:range :Athletics ; + prov:wasDerivedFrom . + +:atomicNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Is eard is uimhir adamhach (Z) adaimh ann ná líon na bprótón i núicléas an adaimh sin"@ga, "die Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl."@de, "het atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan."@nl, "liczba określająca, ile protonów znajduje się w jądrze danego atomu"@pl, "the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12"@en, "کسی عنصر کے ایٹموں کی اوسط کمیت کا تناسب (ایک دیے گئے نمونے یا ماخذ سے) کاربن 12 کے ایٹم کے بڑے پیمانے پر"@ur ; + rdfs:domain :ChemicalElement ; + rdfs:label "Ordnungszahl"@de, "atomic number"@en, "atoomnummer"@nl, "liczba atomowa"@pl, "uimhir adamhach"@ga, "جوہری عدد"@ur ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty wikidata:P1086 ; + prov:wasDerivedFrom . + +:attorneyGeneral + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Public attorney"@en, "de procureur-generaal"@nl ; + rdfs:domain :LegalCase ; + rdfs:label "Generalstaatsanwalt"@de, "attorney general"@en, "procureur-generaal"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:aunt + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Woman ; + rdfs:label "Tante"@de, "aunt"@en, "tante"@nl, "θεία"@el, "عمة"@ar, "叔母"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:australiaOpenDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "australia open double"@en, "آسٹریلیا اوپن ڈبل"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:australiaOpenMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "australia open mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:australiaOpenSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "australia open single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:author + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "auteur"@fr, "auteur"@nl, "author"@en, "autor"@ca, "autor"@de, "autor"@pl, "údar"@ga, "συγγραφέας"@el, "автор"@ru, "مصنف"@ur, "作者"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P50, , ; + prov:wasDerivedFrom . + +:authority + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Behörde"@de, "authority"@en, "autoriteit"@nl, "αρχή"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:authorityMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "authority mandate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:authorityTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RomaniaSettlement ; + rdfs:label "authority title of a romanian settlement"@en, "رومانیہ کی تصفیہ کا اقتدار کا موضوع"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:automobileModel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Automobilmodell"@de, "automobile model"@en, "μοντέλο αυτοκινήτου"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:automobilePlatform + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Automobile ; + rdfs:label "Automobilplattform"@de, "automobile platform"@en, "πλατφόρμα αυτοκινήτων"@el ; + rdfs:range :Automobile ; + rdfs:subPropertyOf dul:hasComponent ; + prov:wasDerivedFrom . + +:autonomy + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Autonomie"@de, "autonomy"@en, "αυτονομία"@el ; + prov:wasDerivedFrom . + +:availableSmartCard + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Chipkarte für automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann."@de, "Smartcard for fare payment system for public transit systems that are or will be available at the station."@en, "Έξυπνη κάρτα για το σύστημα πληρωμής των ναύλων για τα δημόσια συστήματα μεταφορών που είναι ή θα είναι διαθέσιμα στο σταθμό."@el ; + rdfs:domain :Station ; + rdfs:label "available smart card"@en, "benutzbare Chipkarte"@de, "διαθέσιμη έξυπνη κάρτα"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:average + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Durchschnitt"@de, "average"@en, "μέσος όρος"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:averageAnnualGeneration + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:comment "اوسط سالانہ مجموعی بجلی کی پیداوار"@ur ; + rdfs:domain :PowerStation ; + rdfs:label "average annual gross power generation (J)"@en, "اوسط سالانہ پیداوار (J)"@ur ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:averageClassSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "average class size"@en, "durchschnittliche Klassengröße"@de, "μέσο μέγεθος τάξης"@el ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:averageDepth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Source of the value can be declare by ."@en ; + rdfs:domain :Place ; + rdfs:label "average depth (μ)"@en, "durchschnittliche Tiefe (μ)"@de, "profondeur moyenne (μ)"@fr, "μέσο βάθος (μ)"@el ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :depth ; + prov:wasDerivedFrom . + +:averageDepthQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Source of the value."@en ; + rdfs:domain :Place ; + rdfs:label "average depth quote"@en, "اوسط گہرائی اقتباس"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:averageSpeed + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The average speed of a thing."@en, "Vitesse moyenne du déplacement d'un objet."@fr, "Η μέση ταχύτητα ενός πράγματος."@el ; + rdfs:label "Durchschnittsgeschwindigkeit (kmh)"@de, "average speed (kmh)"@en, "vitesse moyenne (kmh)"@fr, "μέση ταχύτητα (kmh)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:avgRevSizePerMonth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value"@en, "utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value"@fr ; + rdfs:domain ; + rdfs:label "Average size of the revision per month"@en, "Taille moyenne des révisions par mois"@fr ; + rdfs:range xsd:anyURI ; + prov:wasDerivedFrom . + +:avgRevSizePerYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value"@en, "utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value"@fr ; + rdfs:domain ; + rdfs:label "Average size of the revision per year"@en, "Taille moyenne des révisions par année"@fr ; + rdfs:range xsd:anyURI ; + prov:wasDerivedFrom . + +:avifaunaPopulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "avifauna population"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:award + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Award won by a Person, Musical or other Work, RaceHorse, Building, etc"@en ; + rdfs:label "Auszeichnung"@de, "award"@en, "onderscheiding"@nl, "récompense"@fr, "διακρίσεις"@el, "انعام"@ur, "ሽልማት"@am, "受賞"@ja ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , , wikidata:P166 ; + prov:wasDerivedFrom . + +:awardName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Award a person has received (literal). Compare to award (ObjectProperty)"@en ; + rdfs:domain :Person ; + rdfs:label "awardName"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:awayColourHexCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)."@en ; + rdfs:label "Farben Hex Code des Auswärtstrikots oder Teile dieses"@de, "colour hex code of away jersey or its parts"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :colourHexCode ; + prov:wasDerivedFrom . + +:bSide + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Single ; + rdfs:label "B-Seite"@de, "b side"@en, "cara b"@ca, "strona b"@pl, "taobh b"@ga ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1432 ; + prov:wasDerivedFrom . + +:background + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Hintergrund"@de, "background"@en, "φόντο"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:backhand + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Rückhand"@de, "backhand"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:badGuy + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Bösewicht"@de, "bad guy"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:baftaAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "BAFTA Award"@de, "BAFTA Award"@en, "βραβείο BAFTA"@el ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:band + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Protein ; + rdfs:label "band"@en, "bande"@fr, "μπάντα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bandMember + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A member of the band."@en, "Un membre du groupe de musique."@fr, "Ένα μέλος της μπάντας."@el ; + rdfs:domain :Band ; + rdfs:label "Bandmitglied"@de, "band member"@en, "bandlid"@nl, "membre de groupe de musique"@fr, "μέλος μπάντας"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:barPassRate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "bar pass rate"@en, "ποσοστό επιτυχίας"@el ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:barangays + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "barangays"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:basedOn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "based on"@en, "basierend auf"@de, "basé sur"@fr, "bunaithe ar"@ga, "na podstawie"@pl, "op basis van"@nl, "βασισμένο σε"@el ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P144 ; + prov:wasDerivedFrom . + +:basinCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "country that have drainage to/from or border the body of water"@en, "ከውኃው አካል ጋር የሚደርስ የውሃ ፍሳሽ ወይም ድንበር ያለው ሀገር"@am ; + rdfs:domain :Place ; + rdfs:label "basin country"@en, "ተፋሰስ ሀገር"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:battery + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Points out the battery used with/in a thing."@en ; + rdfs:label "Batterie"@de, "bateria"@pt, "batería"@es, "batteria"@it, "batterij"@nl, "battery"@en, "pile"@fr ; + rdfs:range :Battery ; + prov:wasDerivedFrom . + +:battingSide + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Schlagarm"@de, "batting side"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:battle + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Schlacht"@de, "bataille"@fr, "battle"@en, "veldslag"@nl, "ጦርነት"@am ; + rdfs:range :MilitaryConflict ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P607 ; + prov:wasDerivedFrom . + +:battleHonours + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "battle honours"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bbr + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "For NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile (linked at http://www.basketball-reference.com/players/)."@en ; + rdfs:domain :GridironFootballPlayer ; + rdfs:label "BBR"@de, "BBR"@en, "BBR"@fr, "BBR"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:beatifiedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "beatified by"@en, "béatifié par"@fr, "zalig verklaard door"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:beatifiedDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Saint ; + rdfs:label "beatified date"@en, "date de béatification"@fr, "zalig verklaard datum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:beatifiedPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "beatified place"@en, "lieu béatifié"@fr, "zalig verklaard plaats"@nl ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:bedCount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Hospital ; + rdfs:label "Anzahl Betten"@de, "aantal bedden"@nl, "bed count"@en, "αριθμός κρεβατιών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:believers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChristianDoctrine ; + rdfs:label "Believers"@en, "Gläubige"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:beltwayCity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Road ; + rdfs:label "beltway city"@en ; + rdfs:range :City ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:bestFinish + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "best ranking finish"@en, "beste Platzierung im Ranglistenturnier"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bestLap + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "best lap"@en, "beste Runde"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bestRankDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "best rank double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bestRankSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "best rank single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bestWsopRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "best wsop rank"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:bestYearWsop + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "best year wsop"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:bgafdId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "bgafd id"@el, "bgafd id"@en, "código no bgafd"@pt ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bibsysId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "BIBSYS is a supplier of library and information systems for all Norwegian university Libraries, the National Library of Norway, college libraries, and a number of research libraries and institutions."@en ; + rdfs:label "BIBSYS Id"@en, "identifiant BIBSYS"@fr ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P1015 ; + prov:wasDerivedFrom . + +:bicycleInformation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Information concernant les facilités de la gare pour les vélos."@fr, "Information on station's bicycle facilities."@en ; + rdfs:domain :Station ; + rdfs:label "Fahrradinformationen"@de, "bicycle information"@en, "information vélos"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bigPoolRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "big pool record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:biggestCity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "biggest city"@en, "größte Stadt"@de ; + rdfs:range :PopulatedPlace ; + prov:wasDerivedFrom . + +:billed + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Wrestler ; + rdfs:label "billed"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:binomial + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "sert à nommer les espèces avec un nom composé de deux mots."@fr, "used to name species with a name consisting of two words."@en ; + rdfs:domain :Species ; + rdfs:label "Doppelbenennung"@de, "binomial"@en, "binomial"@fr, "διωνυμικός"@el, "学名"@ja ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:binomialAuthority + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "binomial authority"@en, "(学名命名者)"@ja ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:bioavailability + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "\"The rate and extent to which the active ingredient or active moiety is absorbed from a drug product and becomes available at the site of action. For drug products that are not intended to be absorbed into the bloodstream, bioavailability may be assessed by measurements intended to reflect the rate and extent to which the active ingredient or active moiety becomes available at the site of action (21CFR320.1).\""@en ; + rdfs:domain :Drug ; + rdfs:label "Bioavailability"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:bioclimate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Bioklima"@de, "bioclimate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:biome + a rdf:Property, owl:ObjectProperty ; + rdfs:label "biome"@en, "生物群系"@ja ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:bird + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Birds are uniformly vertebrate animals, the vast majority of which can fly with their wings."@en, "Les oiseaux sont uniformément des animaux vertébrés, dont la grande majorité peut voler avec leurs ailes."@fr, "Τα πτηνά είναι ζώα ομοιόθερμα σπονδυλωτά, που στη συντριπτική πλειονότητα τους μπορούν να πετούν με τις πτέρυγες ή φτερούγες τους."@el ; + rdfs:domain :Place ; + rdfs:label "Vogel"@de, "bird"@en, "oiseau"@fr, "ptak"@pl, "éan"@ga, "πτηνά"@el ; + rdfs:range :Species ; + prov:wasDerivedFrom . + +:birthDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Animal ; + rdfs:label "Geburtsdatum"@de, "birth date"@en, "data de naixement"@ca, "data urodzenia"@pl, "date de naissance"@fr, "dáta breithe"@ga, "geboortedatum"@nl, "ημερομηνία_γέννησης"@el, "জন্মদিন"@bn, "የልደት ቀን"@am, "生年月日"@ja ; + rdfs:range xsd:date ; + owl:equivalentProperty , wikidata:P569, ; + prov:wasDerivedFrom . + +:birthName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Geburtsname"@de, "birth name"@en, "geboortenaam"@nl, "imię i nazwisko przy urodzeniu"@pl, "nom de naixement"@ca, "όνομα_γέννησης"@el ; + rdfs:range rdf:langString ; + owl:equivalentProperty wikidata:P1477 ; + prov:wasDerivedFrom . + +:birthPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "where the person was born"@en ; + rdfs:domain :Animal ; + rdfs:label "Geburtsort"@de, "birth place"@en, "geboorteplaats"@nl, "lieu de naissance"@fr, "lloc de naixement"@ca, "miejsce urodzenia"@pl, "áit bhreithe"@ga, "τόπος_γέννησης"@el, "የትውልድ_ቦታ"@am, "出生地"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty , wikidata:P19 ; + prov:wasDerivedFrom . + +:birthSign + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Sternzeichen"@de, "birth sign"@en ; + prov:wasDerivedFrom . + +:birthYear + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Person ; + rdfs:label "Geburtsjahr"@de, "birth year"@en, "geboortejaar"@nl, "έτος γέννησης"@el, "生年"@ja ; + rdfs:range xsd:gYear ; + owl:equivalentProperty wikidata:P569, ; + prov:wasDerivedFrom . + +:bishopric + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A bishopric (diocese or episcopal see) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy"@en ; + rdfs:domain :ReligiousBuilding ; + rdfs:label "bishopric"@en, "архиерейско наместничество"@bg ; + prov:wasDerivedFrom . + +:blackLongDistancePisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "long distance piste number"@en, "numéro de piste noire longue distance"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:blackSkiPisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "black ski piste number"@en, "numéro de piste de ski noire"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:blazon + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Coat of arms (heraldic image) or emblem"@en ; + rdfs:label "Wappen"@de, "blason"@fr, "blazon"@en, "емблема"@bg ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:blazonCaption + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Blazon ; + rdfs:label "Blazon caption"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:blazonLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "blazon link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:blazonRatio + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "blazon ratio"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:block + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :VolleyballPlayer ; + rdfs:label "Block"@de, "block"@en, "blok"@tr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:blockAlloy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "block alloy"@en, "κράμα μετάλλου"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:bloodGroup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Blutgruppe"@de, "blood group"@en, "groupe sanguin"@fr, "ομάδα αίματος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bloodType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Blutgruppe"@de, "bloedgroep"@nl, "blood type"@en, "groupe sanguin"@fr, "tipo sanguíneo"@pt, "ομάδα αίματος"@el, "血液型"@ja ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:blueLongDistancePisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "blue long distance piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:blueSkiPisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "blue ski piste number"@en, "numéro de piste de ski bleue"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:bnfId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Authority data of people listed in the general catalogue of the National Library of France"@en ; + rdfs:label "BNF Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P268 ; + prov:wasDerivedFrom . + +:board + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "bestuur"@nl, "board"@en, "επιβιβάζομαι"@el, "取締役会"@ja ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:bodyDiscovered + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Leiche entdeckt"@de, "body discovered"@en, "ανακάλυψη σώματος"@el, "遺体発見"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:bodyStyle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Automobile ; + rdfs:label "body style"@en, "τύπος σώματος"@el ; + rdfs:subPropertyOf dul:isDescribedBy ; + prov:wasDerivedFrom . + +:boiler + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Locomotive ; + rdfs:label "Kessel"@de, "boiler"@en, "chaudière"@fr, "δοχείο βράσης"@el ; + rdfs:subPropertyOf dul:hasComponent ; + prov:wasDerivedFrom . + +:boilerPressure + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Locomotive ; + rdfs:label "Kesseldruck"@de, "boiler pressure"@en, "pression de la chaudière"@fr, "πίεση δοχείου βράσης"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:boilingPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Siedepunkt (K)"@de, "boiling point (K)"@en, "kookpunt (K)"@nl, "point d'ébullition (K)"@fr, "σημείο βρασμού (K)"@el, "沸点 (K)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:book + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "name"@en, "nom"@fr, "название"@ru ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:booster + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "booster"@en, "προωθητής"@el ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:border + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Grenze"@de, "border"@en, "σύνορα"@el ; + rdfs:range :Area ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:borough + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Bezirk"@de, "borough"@en, "stadsdeel"@nl, "δήμος"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:bourgmestre + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "bourgmestre"@en, "bourgmestre"@fr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:bowlRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CollegeCoach ; + rdfs:label "bowl record"@en, "ρεκόρ μπόουλινγκ"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bowlingSide + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Werfarm"@de, "bowling side"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:boxerStyle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Boxer ; + rdfs:label "Boxstil"@de, "boxing style"@en ; + rdfs:range :Sport ; + prov:wasDerivedFrom . + +:bpnId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Dutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands."@en ; + rdfs:label "BPN Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:brainInfoNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Brain ; + rdfs:label "brain info number"@en, "αριθμός νοητικής πληροφόρησης"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:brainInfoType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Brain ; + rdfs:label "brain info type"@en, "τύπος νοητικής πληροφόρησης"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:branchFrom + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "branch from"@en, "vient de"@fr, "παράρτημα από"@el ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:branchTo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "branch to"@en, "va vers"@fr, "υποκατάστημα"@el ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:brand + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrestlingEvent ; + rdfs:label "brand"@en, "μάρκα"@el ; + rdfs:range :TelevisionShow ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:breeder + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Animal ; + rdfs:label "Züchter"@de, "breeder"@en, "κτηνοτρόφος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:bridgeCarries + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Type of vehicles the bridge carries."@en ; + rdfs:domain :Bridge ; + rdfs:label "bridge carries"@en, "γέφυρα μεταφοράς"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:brinCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The code used by the Dutch Ministry of Education to identify a school (as an organisation)"@en ; + rdfs:domain :EducationalInstitution ; + rdfs:label "BRIN code"@en, "Brin code"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:britishComedyAwards + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Comedian ; + rdfs:label "British Comedy Awards"@de, "British Comedy Awards"@en, "Βρετανικά Βραβεία Κωμωδίας"@el ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:britishOpen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "britishOpen"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:britishWins + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "british wins"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:broadcastArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "Empfangsgebiet"@de, "broadcast area"@en, "couverture de diffusion"@fr, "περιοχή αναμετάδοσης"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:broadcastNetwork + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Die Sendergruppe zu dem der Rundfunkveranstalter gehört."@de, "The parent broadcast network to which the broadcaster belongs."@en ; + rdfs:domain :Broadcaster ; + rdfs:label "Sendergruppe"@de, "broadcast network"@en, "chaîne de télévision généraliste"@fr, "τηλεοπτικό κανάλι"@el, "الشبكة"@ar ; + rdfs:range :BroadcastNetwork ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:broadcastRepeater + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A repeater is an electronic device that receives a signal and retransmits it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances (http://en.wikipedia.org/wiki/Repeater)."@en, "Un répéteur est un équipement électronique qui reçoit un signal et le retransmet avec un niveau supérieur et/ou à une puissance plus grande, ou après un obstacle de sorte à ce que le signal puisse couvrir des distances plus grandes (https://fr.wikipedia.org/wiki/Répéteur)."@fr ; + rdfs:domain :Broadcaster ; + rdfs:label "broadcast repeater"@en, "répéteur de diffusion"@fr, "επαναληπτική αναμετάδοση"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:broadcastStationClass + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "broadcast station class"@en, "αναμετάδοση ραδιοφωνικού σταθμού"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:broadcastTranslator + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "broadcast translator"@en, "αναμετάδοση μεταφραστή"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bronzeMedalDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Bronzemedaille Doppel"@de, "bronze medal double"@en, "double médaille de bronze"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bronzeMedalMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Bronzemedaille gemischt"@de, "bronze medal mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bronzeMedalSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Bronzemedaille Einzel"@de, "bronze medal single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:bronzeMedalist + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsEvent ; + rdfs:label "Bronzemedaillengewinner"@de, "bronze medalist"@en, "bronzen medaille drager"@nl, "medalha de bronze"@pt, "médaille de bronze"@fr, "χάλκινο μετάλλιο"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf :Medalist, dul:hasParticipant ; + prov:wasDerivedFrom . + +:brother + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Man ; + rdfs:label "Bruder"@de, "broer"@nl, "brother"@en, "frère"@fr, "αδελφός"@el, "شقيق"@ar, "兄"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:budget + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Etat ($)"@de, "budget ($)"@da, "budget ($)"@en, "budget ($)"@nl, "προϋπολογισμός ($)"@el ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2769 ; + prov:wasDerivedFrom . + +:budgetYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Haushaltsjahr"@de, "budget year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:builder + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Baumeister"@de, "bouwer"@nl, "builder"@en, "οικοδόμος"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P176 ; + prov:wasDerivedFrom . + +:building + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "Gebäude"@de, "building"@en, "gebouw"@nl, "κτίριο"@el ; + rdfs:range :Building ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:buildingEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Building end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred"@en, "Date de fin de construction d'une structure architecturale, d'un lac artificiel, etc. Pour les structures plus anciennes cela peut être simplement une année ou un siècle, pour les structures plus récentes il est préférable de donner la date exacte"@fr ; + rdfs:label "building end date"@en, "date de fin de construction"@fr, "Ημερομηνία λήξης κατασκευής"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:buildingEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "bouw eindjaar"@nl, "building end year"@en, "έτος λήξης κατασκευής"@el ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:buildingStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Building start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred"@en, "Date de début de construction d'une structure architecturale, d'un lac artificiel, etc. Pour des structures plus anciennes cela peut être simplement l'année ou le siècle, pour les structures plus récentes il est préférable de donner la date exacte"@fr ; + rdfs:label "building start date"@en, "date de début de construction"@fr, "Ημερομηνία έναρξης κατασκευής"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:buildingStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "année du début de construction"@fr, "bouw start jaar"@nl, "building start year"@en, "έτος έναρξης κατασκευής"@el ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:buildingType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden"@nl, "Type is too general. We should be able to distinguish types of music from types of architecture"@en, "Ο τύπος είναι πολύ γενικό.Θα πρέπει να είναι σε θέση να διακρίνουν τα είδη της μουσικής από τους τύπους της αρχιτεκτονικής"@el ; + rdfs:domain :Building ; + rdfs:label "buildingType"@en, "soort gebouw"@nl, "Τύπος κτιρίου"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:bustSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "biust (μ)"@pl, "bust size (μ)"@en, "Μέγεθος προτομής (μ)"@el, "размер бюст (μ)"@bg, "バスト (μ)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:bustWaistHipSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Use this property if all 3 sizes are given together (DBpedia cannot currently extract 3 Lengths out of a field). Otherwise use separate fields bustSize, waistSize, hipSize"@en ; + rdfs:domain :Person ; + rdfs:label "bust-waist-hip Size"@en, "размер бюст-талия-ханш"@bg ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cableCar + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Drahtseilbahn"@de, "cable car"@en, "طَنابی گاڑی"@ur ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:calculationNeeds + a rdf:Property, owl:ObjectProperty ; + rdfs:label "its calculation needs"@en, "вычисление требует"@ru, "حساب کی ضرورت"@ur ; + prov:wasDerivedFrom . + +:callSign + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A call sign is not the name of a broadcaster! In broadcasting and radio communications, a call sign (also known as a call name or call letters, or abbreviated as a call) is a unique designation for a transmitting station."@en, "Indicativo de chamada (também chamado de call-sign, call letters ou simplesmente call) é uma designação única de uma estação de transmissão de rádio. Também é conhecido, de forma errônea, como prefixo."@pt, "تعارفی نشان (جسے کال کا نام یا کال لیٹر بھی کہا جاتا ہے، یا مختصراً کال کے طور پر جانا جاتا ہے) ٹرانسمیٹنگ اسٹیشن کے لیے ایک منفرد عہدہ ہے۔"@ur ; + rdfs:label "call sign"@en, "indicativo de chamada"@pt, "تعارفی نشان"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:callsignMeaning + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The out written call sign."@en, "باہر لکھا ہوا کال سائن۔"@ur ; + rdfs:domain :Broadcaster ; + rdfs:label "call sign meaning"@en, "تعارفی علامت کا مطلب"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:campus + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Campus means any urban complex that offers residential, teaching and research facilities to the students of a university."@en, "Tout complexe urbain qui offre des installations résidentielles, d'enseignement et de recherche aux étudiants d'une université."@fr, "Πανεπιστημιούπολη εννοείται κάθε πολεοδομικό συγκρότημα που προσφέρει οικιστικές, διδακτικές και ερευνητικές διευκολύνσεις στους φοιτητές ενός πανεπιστημίου."@el, "جامع کا علقه کا مطلب ہے کوئی بھی شہری جامع کا علقه جو جامع کے طلباء کو رہائشی، تدریسی اور تحقیقی سہولیات فراہم کرتا ہے۔"@ur ; + rdfs:domain :University ; + rdfs:label "Campus"@de, "campus"@en, "campus"@fr, "πανεπιστημιούπολη"@el, "جامع کا علقه"@ur ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:campusSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "campus size (m2)"@en, "جامعہ کا ناپ (m2)"@ur ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:campusType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "campus type"@en, "جامعہ کی قسم"@ur ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:canBaggageChecked + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Whether bags can be checked."@en ; + rdfs:domain :Station ; + rdfs:label "Gepäckkontrolle möglich"@de, "can baggage checked"@en, "سامان کی جانچ پڑتال کر سکتے ہیں"@ur ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:cannonNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "cannon number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:canonizedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "canonisé par"@fr, "canonized by"@en, "heilig verklaard door"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:canonizedDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Saint ; + rdfs:label "canonized date"@en, "date de canonisation"@fr, "heiligverklaring datum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:canonizedPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "canonized place"@en, "heiligverklaring plaats"@nl, "lieu de canonisation"@fr ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:canton + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Kanton"@de, "canton"@en, "canton"@fr, "kanton"@nl ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capacity + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc"@en ; + rdfs:label "Kapazität"@de, "capacity"@en, "capacité"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:capacityFactor + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PowerStation ; + rdfs:label "capacity factor"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:capital + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Hauptstadt"@de, "capital"@en, "capital"@es, "capital"@pt, "capitale"@fr, "hoofdstad"@nl, "πρωτεύουσα"@el, "राजधानी"@hi, "ዋና ከተማ"@am ; + rdfs:range :City ; + rdfs:subPropertyOf :administrativeHeadCity, dul:isLocationOf ; + owl:equivalentProperty wikidata:P36 ; + prov:wasDerivedFrom . + +:capitalCoordinates + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Hauptstadt Koordinaten"@de, "capital coordinates"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:capitalCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "Hauptstadt Land"@de, "capital country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capitalDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "capital district"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capitalElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "capital elevation (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:capitalMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "capital mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capitalPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "capital place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capitalPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "capital position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:capitalRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "Hauptstadtregion"@de, "capital region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:captureDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "capture date"@en, "date de capture"@fr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:carNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "car number"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:carbohydrate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Amount of carbohydrates per servingSize of a Food"@en ; + rdfs:domain :Food ; + rdfs:label "carbohydrate (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:carcinogen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Karzinogen"@de, "carcinogen"@en, "kankerverwekkend"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:careerPoints + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "career points"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:careerPrizeMoney + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "career prize money ($)"@en, "prijzengeld loopbaan ($)"@nl ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:careerStation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "this property links to a step in the career of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a club."@en ; + rdfs:domain :Person ; + rdfs:label "Karrierestation"@de, "career station"@en, "carrièrestap"@nl ; + rdfs:range :CareerStation ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:cargoFuel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo fuel (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:cargoGas + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo gas (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:cargoWater + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "cargo water (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:casNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule (eg Protein)"@en ; + rdfs:label "CAS number"@en, "CAS番号"@ja, "numéro CAS"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:casSupplemental + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "CAS supplemental"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:case + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Fall"@de, "case"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:casualties + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of casualties of a MilitaryConflict or natural disaster such as an Earthquake"@en ; + rdfs:domain ; + rdfs:label "Verluste"@de, "casualties"@en, "pertes"@fr, "verliezen"@nl ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:catch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "catch"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:category + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kategorie"@cs, "Kategorie"@de, "categorie"@nl, "category"@en, "catégorie"@fr, "κατηγορία"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:caterer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "caterer"@en, "horeca"@nl ; + rdfs:range :Caterer ; + prov:wasDerivedFrom . + +:catholicPercentage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "catholic percentage"@en, "pourcentage catholique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:causalties + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryConflict ; + rdfs:label "causalties"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:causeOfDeath + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Todesursache"@de, "causa de mort"@ca, "cause of death"@en, "przyczyna śmierci"@pl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P509 ; + prov:wasDerivedFrom . + +:causedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Event ; + rdfs:label "casus"@fr, "caused by"@en, "προκαλείται από"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:ccaState + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "cca state"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ceeb + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "ceeb"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:ceiling + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Distance maximale jusqu'à la surface de la terre, exprimé en kilomètres"@fr, "Maximum distance to the earth surface, to be expressed in kilometers"@en ; + rdfs:domain :Aircraft ; + rdfs:label "ceiling"@en, "dienstplafond"@nl, "plafond"@fr ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:cemetery + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ReligiousBuilding ; + rdfs:label "Friedhof"@de, "cemetery"@en, "cimetière"@fr, "kerkhof"@nl ; + rdfs:range :Cemetery ; + prov:wasDerivedFrom . + +:censusYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Zensusjahr"@de, "année de recensement"@fr, "año de censo"@es, "census year"@en, "έτος απογραφής"@el ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:center + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :NorwaySettlement ; + rdfs:label "centre norvégien"@fr, "norwegian center"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:centuryBreaks + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Anzahl Breaks mit 100 Punkten oder mehr, wird nicht übersetzt"@de, "number of breaks with 100 points and more"@en ; + rdfs:domain :SnookerPlayer ; + rdfs:label "Century Breaks"@de, "century breaks"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:ceo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Geschäftsführer"@de, "chief executive officer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P169 ; + prov:wasDerivedFrom . + +:ceremonialCounty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Ceremonial County"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:certification + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Single ; + rdfs:label "certification"@en, "certification"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:certificationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Single ; + rdfs:label "certification date"@en, "datum certificatie"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:cesarAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Cesar Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chEBI + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontology"@en, "Identifiant unique de la drogue dans l'ontologie des Chemical Entities of Biological Interest (ChEBI)"@fr ; + rdfs:domain :Drug ; + rdfs:label "ChEBI"@en, "ChEBI"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:chEMBL + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties."@en ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "ChEMBL"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:chain + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Chaîne (commerciale) à laquelle cette instance est associée."@fr, "The (business) chain this instance is associated with."@en ; + rdfs:label "Kette"@de, "chaîne"@en, "αλυσίδα"@el ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:chairLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:label "chair label"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:chairman + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Vorsitzender"@de, "chairman"@en, "πρόεδρος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chairmanTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "chairman title"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:chairperson + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Vorsitzender"@de, "chairperson"@en, "voorzitter"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:champion + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition"@en, "νικητής ενός διαγωνισμού"@el ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón"@es, "Meister"@de, "champion"@en, "champion"@fr, "winnaar"@nl, "πρωταθλητής"@el ; + rdfs:range :Athlete ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInDouble + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en doble"@es, "champion en double"@fr, "champion in double"@en, "kampioen dubbel"@nl ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :champion, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInDoubleFemale + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the female double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en doble mujeres"@es, "champion en double femmes"@fr, "champion in double female"@en ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :championInDouble, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInDoubleMale + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the male double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en doble hombres"@es, "champion en double hommes"@fr, "champion in double male"@en ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :championInDouble, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInMixedDouble + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the mixed double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en doble mixto"@es, "champion en double mixte"@fr, "champion in mixed double"@en, "kampioen gemengd dubbelspel"@nl ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :championInDouble, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInSingle + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the single session, to distinguish from the double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en simple"@es, "champion en simple"@fr, "champion in single"@en, "kampioen enkelspel"@nl ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :champion, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInSingleFemale + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the single female session, to distinguish from the double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en simple mujeres"@es, "champion en simple femmes"@fr, "champion in single female"@en ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :championInSingle, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championInSingleMale + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "winner of a competition in the single male session, to distinguish from the double session (as in tennis)"@en ; + rdfs:domain :SportsEvent ; + rdfs:label "Campeón en simple hombres"@es, "champion en simple homme"@fr, "champion in single male"@en ; + rdfs:range :Athlete ; + rdfs:subPropertyOf :championInSingle, dul:hasParticipant ; + prov:wasDerivedFrom . + +:championships + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Agent ; + rdfs:label "championships"@en, "gewonnene Title"@de ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:chancellor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kanzler"@de, "chancellor"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:channel + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kanal"@de, "canal"@fr, "channel"@en, "kanaal"@nl, "κανάλι"@el ; + rdfs:range :Broadcaster ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chaplain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Kaplan"@de, "chaplain"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:characterInPlay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name of a character in play."@en ; + rdfs:domain :Play ; + rdfs:label "character in play"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:chef + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Restaurant ; + rdfs:label "Koch"@de, "chef"@el, "chef"@en, "chef cuisinier"@fr, "sous-chef"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chemSpiderId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "identifier in a free chemical database, owned by the Royal Society of Chemistry"@en ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "ChemSpider Id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:chemicalFormula + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "chemical formula"@en, "formule chimique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:chief + a rdf:Property, owl:ObjectProperty ; + rdfs:label "chef"@fr, "chief"@en ; + rdfs:range :Chief ; + rdfs:subPropertyOf :Leader ; + prov:wasDerivedFrom . + +:chiefEditor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "Chefredakteur"@de, "chief editor"@en, "hoofdredacteur"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chiefPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:label "chief place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:child + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Kind"@de, "child"@en, "enfant"@fr, "kind"@nl, "παιδί"@el, "طفل"@ar, "ልጅ"@am, "子供"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P40 ; + prov:wasDerivedFrom . + +:childOrganisation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "child organisation"@en, "dochterorganisatie"@nl ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:choreographer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FigureSkater ; + rdfs:label "Choreograph"@de, "choreograaf"@nl, "choreographer"@en, "choréographe"@fr, "χορογράφος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:chorusCharacterInPlay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The name of the (Greek) chorus character in play."@en ; + rdfs:domain :Play ; + rdfs:label "chorus character in play"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :characterInPlay ; + prov:wasDerivedFrom . + +:christeningDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "date of christening"@en, "doopdatum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:chromosome + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Protein ; + rdfs:label "Chromosom"@de, "chromosom"@pl, "chromosome"@en, "chromosome"@fr, "crómasóm"@ga, "χρωμόσωμα"@el, "染色体"@ja ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1057 ; + prov:wasDerivedFrom . + +:cinematography + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Film ; + rdfs:label "Kinematografie"@de, "cineamatagrafaíocht"@ga, "cinematografie"@nl, "cinematography"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P344 ; + prov:wasDerivedFrom . + +:circle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Region"@de, "region"@en, "région"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:circuitLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacing ; + rdfs:label "circuit length (μ)"@en, "longueur de circuit (μ)"@fr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:circuitName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacing ; + rdfs:label "circuit name"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:circulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "ciorclaíocht"@ga, "circulation"@en, "oplage"@nl, "κυκλοφορία"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:circumcised + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "circumcised"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cites + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A document cited by this work. Like OntologyProperty:dct:references, but as a datatype property."@en ; + rdfs:domain :Work ; + rdfs:label "cites"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:citizenship + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Staatsangehörigkeit"@de, "burgerschap"@nl, "citizenship"@en, "citoyenneté"@fr, "statsborgerskab"@da, "υπηκοότητα"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P27 ; + prov:wasDerivedFrom . + +:city + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Stadt"@de, "by"@da, "cathair"@ga, "city"@en, "miasto"@pl, "stad"@nl, "ville"@fr, "πόλη"@el ; + rdfs:range :City ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P131 ; + prov:wasDerivedFrom . + +:cityLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "city link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cityRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Der Platz des Gebäudes in der Liste der höchsten Gebäude der Stadt"@de, "Place of the building in the list of the highest buildings in the city"@en ; + rdfs:domain :Skyscraper ; + rdfs:label "Rang Stadt"@de, "city rank"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:citySince + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "city since"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cityType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "city type"@en, "type stad"@nl, "τύπος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:clade + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "clade"@en, "cladon"@nl ; + prov:wasDerivedFrom . + +:class + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Klasse"@de, "class"@en, "classe"@fr, "klasse"@nl, "τάξη"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:classes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "Klasse"@de, "classes"@en, "classes"@fr, "τάξεις"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:classification + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Any string representing a class or category this thing is assigned to."@en, "Toute chaîne de caractères représentant une classe ou une catégorie à laquelle cette chose est assignée."@fr ; + rdfs:label "categorie"@nl, "catégorie"@de, "classification"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:classis + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Troisième niveau de la classification classique (c’est-à-dire n’utilisant pas la notion de distance génétique) des espèces vivantes (voir systématique)."@fr, "the living thing class (from the Latin \"classis\"), according to the biological taxonomy"@en ; + rdfs:domain :Species ; + rdfs:label "clase (biología)"@es, "classe (biologie)"@fr, "classis"@en, "klasse"@nl, "綱_(分類学)"@ja ; + owl:equivalentProperty wikidata:P77 ; + prov:wasDerivedFrom . + +:climate + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "clima"@pt, "climate"@en, "klima"@de, "klimaat"@nl ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:climbUpNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "clip up number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:closeTo + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "lieu proche d'un autre."@fr, "place close to another place"@en ; + rdfs:domain :Place ; + rdfs:label "is close to"@en, "à côté de"@fr ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:closed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "closed"@en, "fermé"@fr, "geschlossen"@de, "gesloten"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:closingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "closing date"@en, "date de fermeture"@fr, "ημερομηνία κλεισίματος"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:closingFilm + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FilmFestival ; + rdfs:label "closing film"@en ; + rdfs:range :Film ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:closingYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Schließungsjahr"@de, "Sluitingsjaar"@nl, "closing year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:clothSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "cloth size"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:clothingSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Konfektionsgröße"@de, "clothing size"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:club + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Verein"@de, "club"@en, "club"@nl, "ομάδα"@el, "クラブ"@ja ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty :team ; + prov:wasDerivedFrom . + +:clubsRecordGoalscorer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "clubs record goalscorer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:cluster + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Galaxy ; + rdfs:label "birlik"@tr, "cluster"@en ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:cmpEvaDuration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "CMP EVA duration (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:cmykCoordinateBlack + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "black coordinate in the CMYK space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:cmykCoordinateCyanic + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "cyanic coordinate in the CMYK space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:cmykCoordinateMagenta + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "magenta coordinate in the CMYK space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:cmykCoordinateYellow + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "yellow coordinate in the CMYK space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:co2Emission + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "CO2 emission (g/km)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:coExecutiveProducer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "co executive producer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:coProducer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "Co-Produzent"@de, "co producer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:coach + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Trainer"@de, "coach"@en, "προπονητής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:coachClub + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "coach club"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:coachSeason + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "coach season"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:coachedTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:label "coached team"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:coachingRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CollegeCoach ; + rdfs:label "coaching record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:coalition + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Παλαιότερα ο συνασπισμός χρησιμοποιούνταν ως στρατιωτικός όρος που υποδήλωνε την όμορη παράταξη πολεμιστών κατά την οποία ο κάθε στρατιώτης προφύλασσε τον διπλανό του με την ασπίδα του."@el ; + rdfs:domain :Person ; + rdfs:label "Koalition"@de, "coalition"@en, "συνασπισμός"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:coastLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Länge einer Küste"@de, "length of a coast"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:coastLine + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "Küste (μ)"@de, "coast line (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:coatOfArms + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "image of the coat of arms (heraldic symbol)"@en ; + rdfs:label "bild wappen"@de, "coat of arms image"@en ; + owl:equivalentProperty wikidata:P94 ; + prov:wasDerivedFrom . + +:code + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Superproperty for any designation (string, integer as string) that is meant to identify an entity within the context of a system"@en ; + rdfs:label "Code"@de, "code"@en, "code"@nl, "κωδικός"@el, "ضابطہ"@ur ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:codeBook + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "code book or statute book referred to in this legal case"@en ; + rdfs:domain :LegalCase ; + rdfs:label "Gesetzbuch"@de, "code book"@en, "wetboek"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:codeDistrict + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CityDistrict ; + rdfs:label "City district code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:codeIndex + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MemberResistanceMovement ; + rdfs:label "Indexcode"@nl, "code on index"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:codeListOfHonour + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MemberResistanceMovement ; + rdfs:label "Code Ehrenliste"@de, "Code Erelijst van Gevallenen"@nl, "code on List of Honour"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:codeMemorial + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code oorlogsmonument of ander gedenkteken"@nl, "Identifier for monuments of the Memorial type"@en ; + rdfs:domain :Memorial ; + rdfs:label "code gedenkteken"@nl, "memorial ID number"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :Code ; + prov:wasDerivedFrom . + +:codeMunicipalMonument + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code assigned to (Dutch) monuments at the municipal level, deemed to be of local value"@en, "Code toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn"@nl ; + rdfs:domain :Place ; + rdfs:label "monument code (municipal)"@en, "monumentcode gemeentelijke monumenten"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:codeNationalMonument + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code assigned to (Dutch) monuments at the national level, deemed to be of national value"@en, "Code toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau"@nl ; + rdfs:domain :Place ; + rdfs:label "monument code (national)"@en, "monumentcode rijksmonumenten"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:codeProvincialMonument + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworks"@en, "Code voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken"@nl ; + rdfs:domain :Place ; + rdfs:label "monument code (provinciall)"@en, "monumentcode provinciale monumenten"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:codeSettlement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "settlement code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:codeStockExchange + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "beurscode"@nl, "code Stock Exchange"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:coden + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "CODEN is a six character, alphanumeric bibliographic code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications from all subject areas."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "CODEN"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1159 ; + prov:wasDerivedFrom . + +:coemperor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Monarch ; + rdfs:label "coemperor"@en ; + rdfs:range :Monarch ; + prov:wasDerivedFrom . + +:collaboration + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Zusammenarbeit"@de, "collaboration"@en, "συνεργασία"@el ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:colleague + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Colleague of a Person or OfficeHolder (not PersonFunction nor CareerStation). Sub-properties include: president, vicePresident, chancellor, viceChancellor, governor, lieutenant. Points to a Person who may have a general \"position\" (resource) or \"title\" (literal)."@en ; + rdfs:domain :Person ; + rdfs:label "colleague"@en, "የሥራ ባልደረባ"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:collection + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Museum ; + rdfs:label "Sammlung"@de, "collection"@en, "collection"@fr, "συλλογή"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:collectionSize + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Land"@de, "country"@en, "蔵書数"@ja ; + rdfs:subPropertyOf dul:hasRegion ; + prov:wasDerivedFrom . + +:collectivityMinority + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "collectivity minority"@en ; + prov:wasDerivedFrom . + +:college + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "College"@de, "college"@en, "haute école"@fr, "koledż"@pl, "κολλέγιο"@el ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:collegeHof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "college hof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:colonialName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Kolonialname"@de, "colonial name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:colorChart + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "colorChart"@en, "distribution des couleurs"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:colour + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A colour represented by its entity."@en ; + rdfs:label "Farbe"@de, "colour"@en, "couleur"@fr, "farve"@da, "kleur"@nl, "χρώμα"@el, "色"@ja ; + rdfs:range :Colour ; + rdfs:subPropertyOf dul:hasQuality ; + owl:equivalentProperty wikidata:P462 ; + prov:wasDerivedFrom . + +:colourHexCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)"@en, "Une couleur représentée par son code hexadécimal (exemple : #FF0000 ou #40E0D0)"@fr ; + rdfs:label "Farben Hex Code"@de, "code hexa de couleur"@fr, "colour hex code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:colourName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A colour represented by a string holding its name (e.g.: red or green)."@en, "Ένα χρώμα που αναπαρίσταται από μια ακολουθία χαρακτήρων που αντιπροσωπεύει το όνομά του (π.χ.: κόκκινο ή πράσινο)."@el ; + rdfs:label "Farbenname"@de, "colour name"@en, "nom de couleur"@fr, "όνομα χρώματος"@el, "色名"@ja ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:combatant + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryConflict ; + rdfs:label "Kombattant"@de, "combatant"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:comic + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "comic"@en ; + rdfs:range :Comic ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:comitat + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :HungarySettlement ; + rdfs:label "comitat of a settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:command + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "Befehl"@de, "command"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:commandModule + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "command module"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:commandStructure + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Kommandostruktur"@de, "command structure"@en ; + rdfs:range :MilitaryUnit ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:commandant + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kommandant"@de, "commandant"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf :keyPerson, dul:sameSettingAs ; + prov:wasDerivedFrom . + +:commander + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Befehlshaber"@de, "commandant"@nl, "commander"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:comment + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Kommentar"@de, "comment"@en, "commentaire"@fr, "σχόλιο"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:commissioner + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Work ; + rdfs:label "Kommissar"@de, "commissioner"@en, "opdrachtgever"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:commissionerDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "commissioner date"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:commissioningDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "commissioning date"@en, "fecha de entrada en servicio"@es ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:committee + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Ausschuss"@de, "committee"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:committeeInLegislature + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Committee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament)."@en ; + rdfs:domain :Legislature ; + rdfs:label "Ausschuss in der Legislative"@de, "committee in legislature"@en ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:commonName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nom habituel d'une entité. Souvent on utilise foaf:name pour tous les noms qu'une personne peut avoir; cette propriété précise le nom qui est habituellement utilisé."@fr, "The common name of an entity. Frequently, foaf:name is used for all of the different names of a person; this property just defines the most commonly used name."@en ; + rdfs:label "common name"@en, "gewöhnlicher Name"@de, "nom d'usage"@fr ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:commune + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Kommune"@de, "commune"@en, "commune"@fr ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:communityIsoCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "iso code of a community"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :isoCode ; + prov:wasDerivedFrom . + +:company + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Firma"@de, "compagnie"@fr, "company"@en, "organisatie"@nl, "εταιρεία"@el, "会社"@ja ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:comparable + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "similar, unrelated rockets"@en ; + rdfs:domain :Rocket ; + rdfs:label "comparable"@en, "vergleichbar"@de ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:competition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportCompetitionResult ; + rdfs:label "Wettbewerb"@de, "competición"@es, "competition"@en, "competition"@fr ; + rdfs:range :Event ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:competitionTitle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Sterbeort"@de, "competition title"@en ; + rdfs:range :SportsEvent ; + prov:wasDerivedFrom . + +:compiler + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "For compilation albums: the person or entity responsible for selecting the album's track listing."@en, "Pour les albums qui sont des compilations, personne ou entité responsable du choix des pistes de l'album."@fr ; + rdfs:domain :Album ; + rdfs:label "compilateur"@fr, "compiler"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:completionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Work ; + rdfs:label "Fertigstellungstermin"@de, "completion date"@en, "datum van oplevering"@nl, "ημερομηνία ολοκλήρωσης"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:complexion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "complexion"@en, "cor da pele"@pt ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:complexity + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Complexity of preparing a Food (recipe)"@en ; + rdfs:domain :Food ; + rdfs:label "complexity"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:complications + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "Komplikationen"@de, "complications"@en, "complications"@fr, "επιπλοκές"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:component + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Brain ; + rdfs:label "Komponente"@de, "component"@en, "composant"@fr ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasComponent ; + prov:wasDerivedFrom . + +:composer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "Komponist"@de, "componist"@nl, "composer"@en, "compositeur"@fr, "kompozytor"@pl, "συνθέτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P86 ; + prov:wasDerivedFrom . + +:compressionRatio + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Kompressionsverhältnis"@de, "compression ratio"@en, "taux de compression"@fr ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1247 ; + prov:wasDerivedFrom . + +:computingInput + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Software ; + rdfs:label "Computing input"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:computingMedia + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Software ; + rdfs:label "Computing Media"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:computingPlatform + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "some sort of hardware architecture or software framework, that allows this software to run"@en ; + rdfs:domain :Software ; + rdfs:label "computing platform"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P400 ; + prov:wasDerivedFrom . + +:configuration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Konfiguration"@de, "configuratie"@nl, "configuration"@en, "configuration"@fr ; + rdfs:range ; + prov:wasDerivedFrom . + +:confirmedCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of confirmed cases in a pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Confirmed Cases"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:conflict + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Konflikt"@de, "conflict"@en, "conflit"@fr ; + rdfs:range :MilitaryConflict ; + prov:wasDerivedFrom . + +:congressionalDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "congressional district"@en ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:connectsReferencedTo + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "connects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted ones"@en, "creëert een verwijzing van het gerefereerde objct naar een ander object. Speciaal van belang voor het verbinden van niet-geëxtraheerde resources met de gebruikelijke resources"@nl ; + rdfs:domain :Reference ; + rdfs:label "connects referenced to"@en, "verbindt referentieobject met"@nl ; + prov:wasDerivedFrom . + +:connotation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning."@en ; + rdfs:label "Konnotation"@de, "connotation"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:consecration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cleric ; + rdfs:label "Weihe"@de, "consecration"@en, "consécration"@fr, "wijding"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:conservationStatus + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Species ; + rdfs:label "conservation status"@en, "état de conservation"@fr, "保全状況"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:conservationStatusSystem + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Species ; + rdfs:label "conservation status system"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:constellation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "Sternbild"@de, "Takımyıldız"@tr, "constellation"@en, "constellation"@fr, "gwiazdozbiór"@pl, "sterrenbeeld"@nl ; + rdfs:subPropertyOf dul:hasPart ; + owl:equivalentProperty wikidata:P59 ; + prov:wasDerivedFrom . + +:constituencyDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Whalbezirk"@de, "circonscription électorale"@fr, "constituency district"@en ; + rdfs:range :PopulatedPlace ; + prov:wasDerivedFrom . + +:construction + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Konstruktion"@de, "construction"@en, "construction"@fr, "κατασκευή"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:constructionMaterial + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Construction material (eg. concrete, steel, iron, stone, brick, wood)."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Baumaterial"@de, "bouwmateriaal"@nl, "construction material"@en, "υλικό κατασκευής"@el ; + rdfs:subPropertyOf dul:hasConstituent ; + owl:equivalentProperty wikidata:P186 ; + prov:wasDerivedFrom . + +:contest + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Wettbewerb"@de, "concours"@fr, "contest"@en ; + rdfs:range :Contest ; + prov:wasDerivedFrom . + +:continent + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "links a country to the continent it belongs"@en, "relie un pays au continent auquel il appartient"@fr, "μεγάλες περιοχές ξηράς που περιστοιχίζονται από ωκεανούς"@el ; + rdfs:domain :Country ; + rdfs:label "Kontinent"@de, "continent"@en, "continent"@fr, "continente"@it, "ήπειρος"@el ; + rdfs:range :Continent ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P30 ; + prov:wasDerivedFrom . + +:continentRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Der Platz des Gebäudes in der Liste der höchsten Gebäude des Kontinents"@de, "Place of the building in the list of the highest buildings in the continent"@en ; + rdfs:domain :Skyscraper ; + rdfs:label "Rang Kontinent"@de, "continent rank"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:continentalTournament + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "continental tournament"@en, "tournoi continental"@fr ; + rdfs:range :Tournament ; + prov:wasDerivedFrom . + +:continentalTournamentBronze + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "continental tournament bronze"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:continentalTournamentGold + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "continental tournament gold"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:continentalTournamentSilver + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "continental tournament silver"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:contractAward + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "contract award"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:contractor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Skyscraper ; + rdfs:label "Auftragnehmer"@de, "aannemer"@nl, "contractor"@en, "εργολάβος"@el ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:convictionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "conviction date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:convictionPenalty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Criminal ; + rdfs:label "Strafe"@de, "conviction penalty"@en ; + prov:wasDerivedFrom . + +:coolingSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Kühlsystem"@de, "cooling system"@en, "système de refroidissement"@fr ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:copilote + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Copilot"@de, "copilote"@en, "copilote"@fr ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:coronationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Royalty ; + rdfs:label "coronation date"@en, "date de couronnement"@fr, "kroningsdatum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:cosparId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Described at http://en.wikipedia.org/wiki/International_Designator"@en ; + rdfs:label "COSPAR id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P247 ; + prov:wasDerivedFrom . + +:cost + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Cost of building an ArchitecturalStructure, Ship, etc"@en ; + rdfs:label "Kosten ($)"@de, "cost ($)"@en, "kosten ($)"@nl, "κόστος ($)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:costumeDesigner + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person who is responsible for the film costume design"@en ; + rdfs:domain :Film ; + rdfs:label "costume designer"@en, "costumista"@it ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:council + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LiechtensteinSettlement ; + rdfs:label "council of a liechtenstein settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:councilArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Council area"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:country + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The country where the thing is located."@en ; + rdfs:label "Land"@de, "country"@en, "estat"@ca, "kraj"@pl, "land"@nl, "pays"@fr, "país"@es, "país"@pt, "tír"@ga, "χώρα"@el, "ሀገር"@am ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P17 ; + prov:wasDerivedFrom . + +:countryCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code du pays dans la numérotation téléphonique."@fr, "Country code for telephone numbers."@en ; + rdfs:domain :Place ; + rdfs:label "Ländervorwahl"@de, "code du pays"@fr, "country code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:countryOrigin + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Rocket ; + rdfs:label "Land Herkunft"@de, "country origin"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:countryRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Der Platz des Gebäudes in der Liste der höchsten Gebäude des Landes"@de, "Place of the building in the list of the highest buildings in the country"@en ; + rdfs:domain :Skyscraper ; + rdfs:label "Rang Land"@de, "country rank"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:countryWithFirstAstronaut + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "country with first astronaut"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:countryWithFirstSatellite + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "country with first satellite"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:countryWithFirstSatelliteLaunched + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "country with first satellite launched"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:countryWithFirstSpaceflight + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "country with first spaceflight"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:county + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The county where the thing is located."@en ; + rdfs:label "Bezirk"@de, "contae"@ga, "county"@en, "hrabstwo"@pl, "provincie"@nl, "Επαρχία"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P131 ; + prov:wasDerivedFrom . + +:countySeat + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "county seat"@en, "provincie zetel"@nl, "ካውንቲ መቀመጫ"@am ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:course + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "course (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:courseArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The area of courses in square meters."@en ; + rdfs:label "course area (m2)"@en, "コース面積 (m2)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:cousurper + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "cousurper"@en ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:coverArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Cover artist"@en ; + rdfs:domain :Work ; + rdfs:label "cover artist"@en, "cover artist"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P736 ; + prov:wasDerivedFrom . + +:cpu + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "CPU of an InformationAppliance or VideoGame (which unfortunately is currently under Software)"@en, "Processeur d'un équipement d'information ou d'un jeu vidéo (qui malheureusement est actuellement en charge du logiciel)"@fr ; + rdfs:label "CPU"@de, "CPU"@en, "procesor (CPU)"@pl, "processeur(CPU)"@fr, "processor (CPU)"@nl ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P880 ; + prov:wasDerivedFrom . + +:created + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "created"@en, "créé"@fr, "erstellt"@de ; + rdfs:range :Work ; + prov:wasDerivedFrom . + +:creationChristianBishop + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Bishop ; + rdfs:label "creation christian bishop"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:creationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Entstehungsjahr"@de, "année de création"@fr, "jaar van creatie"@nl, "year of creation"@en, "έτος δημιουργίας"@el ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:creativeDirector + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "creative director"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:creator + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Creator/author of a work. For literal (string) use dc:creator; for object (URL) use creator"@en ; + rdfs:label "Urheber"@de, "creator (agent)"@en, "maker"@nl, "δημιουργός"@el ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P170 ; + prov:wasDerivedFrom . + +:creatorOfDish + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad)."@en ; + rdfs:domain :Food ; + rdfs:label "creator of dish"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:credit + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "credit"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:crest + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Wappen"@de, "crest"@en, "herb"@pl ; + prov:wasDerivedFrom . + +:crew + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Crew"@de, "crew"@en, "équipage"@fr, "πλήρωμα"@el ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:crewMember + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Besatzungsmitglied"@de, "crew member"@en, "membre d'équipage"@fr ; + rdfs:range :Astronaut ; + rdfs:subPropertyOf dul:hasParticipant ; + owl:equivalentProperty wikidata:P1029 ; + prov:wasDerivedFrom . + +:crewSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Besatzungsstärke"@de, "crew size"@en, "taille de l'équipage"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:crews + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "Besatzungen"@de, "crews"@en, "équipages"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:criminalCharge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Criminal ; + rdfs:label "Strafantrag"@de, "criminal charge"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:criteria + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Kriterien"@de, "criteria"@en, "critério"@pt, "κριτήριο"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:crosses + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Bridge ; + rdfs:label "crosses"@en, "διασχίζει"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P177 ; + prov:wasDerivedFrom . + +:crownDependency + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :City ; + rdfs:label "crown dependency"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cuisine + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "National cuisine of a Food or Restaurant"@en ; + rdfs:label "Küche"@de, "cuisine"@en, "cuisine"@fr, "keuken"@nl, "κουζίνα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:cultivatedVariety + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Name of the cultivar (cultivated variety)"@en ; + rdfs:domain :Plant ; + rdfs:label "cultivar"@en ; + rdfs:range :CultivatedVariety ; + rdfs:subPropertyOf dul:isSpecializedBy ; + prov:wasDerivedFrom . + +:curator + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Museum ; + rdfs:label "Kurator"@de, "conservateur"@fr, "conservator"@nl, "curator"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:currency + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "υπολογίζει ή εκφράζει οικονομικές αξίες"@el ; + rdfs:label "Währung"@de, "airgeadra"@ga, "currency"@en, "devise"@fr, "moeda"@pt, "valuta"@nl, "waluta"@pl, "νομισματική μονάδα"@el, "ምንዛሬ"@am ; + rdfs:range :Currency ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P38 ; + prov:wasDerivedFrom . + +:currencyCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ISO 4217 currency designators."@en ; + rdfs:domain :Place ; + rdfs:label "Währungscode"@de, "currency code"@en, "cód airgeadra"@ga ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P498 ; + prov:wasDerivedFrom . + +:currentCity + a rdf:Property, owl:ObjectProperty ; + rdfs:label "aktuelle Stadt"@de, "current city"@en, "ville actuelle"@fr ; + rdfs:range :City ; + prov:wasDerivedFrom . + +:currentLeague + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "aktuelle Liga"@de, "current league"@en ; + rdfs:range :SportsLeague ; + prov:wasDerivedFrom . + +:currentMember + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsTeam ; + rdfs:label "aktuelles Mitglied"@de, "current member"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:currentPartner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FigureSkater ; + rdfs:label "aktueller Partner"@de, "current partner"@en, "partenaire actuel"@fr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:currentProduction + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The current production running in the theatre."@en ; + rdfs:domain :Theatre ; + rdfs:label "current production"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:currentRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "aktueller Ranglistenplatz"@de, "current rank"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:currentRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CollegeCoach ; + rdfs:label "current record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:currentSeason + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SportsLeague ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:currentStatus + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "aktueller Status"@de, "current status"@en, "huidige status"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:currentTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "aktuelle Mannschaft"@de, "current team"@en, "所属チーム"@ja ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:currentTeamManager + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "current team manager"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:currentTeamMember + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A current member of an athletic team."@en ; + rdfs:domain :SportsTeam ; + rdfs:label "current team member"@en ; + rdfs:range :TeamMember ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:currentWorldChampion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Sport ; + rdfs:label "actual Campeón del mundo"@es, "aktueller Weltmeister"@de, "champion du monde actuel"@fr, "current world champion"@en, "huidig wereldkampioen"@nl ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:currentlyUsedFor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Current use of the architectural structure, if it is currently being used as anything other than its original purpose."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "currently used for"@en, "huidig gebruik"@nl, "usage actuel"@fr, "uso actual"@es ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:custodian + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Aufsichtsperson"@de, "custodian"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:cyclistGenre + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "cyclist genre"@en ; + prov:wasDerivedFrom . + +:cylinderBore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "cylinder bore (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:cylinderCount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Locomotive ; + rdfs:label "cylinder count"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:dailyVaccinationsPerMillion + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: people vaccinated percent."@en ; + rdfs:label "Daily Vaccinations Per Million"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:dailyVaccinationsRaw + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: Daily vaccinations (raw data)."@en, "ویکسینیشن کے اعدادوشمار: روزانہ ویکسینیشن (خام ڈیٹا)۔"@ur ; + rdfs:label "Daily Vaccinations Raw"@en, "روزانہ ویکسین خام"@ur ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:daira + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "daira"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:dam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Animal ; + rdfs:label "Hirschkalb"@de, "dam"@en ; + rdfs:range :Animal ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:damage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Event ; + rdfs:label "damage amount"@en, "schadebedrag"@nl, "نقصان کی رقم"@ur ; + rdfs:range :Currency ; + prov:wasDerivedFrom . + +:damsire + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Animal ; + rdfs:label "damsire"@en ; + rdfs:range :Animal ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:danseCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "danse competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:danseScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "danse score"@en, "ڈینس سکور"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:date + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Datum"@de, "date"@en, "date"@fr, "datum"@nl, "ημερομηνία"@el ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P585 ; + prov:wasDerivedFrom . + +:dateAct + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "date act"@en, "απόφαση_διάνοιξης"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateAgreement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "date of an agreement"@en, "تاریخ کا معاہدہ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateBudget + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "date budget"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateClosed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "date closed"@en, "τερματισμός_λειτουργίας"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateCompleted + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "date completed"@en, "ολοκλήρωση"@el, "مکمل تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateConstruction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "Bauzeit"@de, "date construction"@en, "έναρξη_κατασκευής"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateExtended + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "date extended"@en, "επέκταση"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateLastUpdated + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Document ; + rdfs:label "Date Last Updated"@en, "Datum der letzten Aktualisierung"@de, "datum laatste bewerking"@nl, "آخری تازہ کاری کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateOfAbandonment + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "date of abandonment"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateOfBurial + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Datum der Beerdigung"@de, "date of burial"@en, "datum begrafenis"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateUnveiled + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Designates the unveiling date"@en, "Duidt de datum van onthulling aan"@nl, "نقاب کشائی کی تاریخ مقرر کرتا ہے۔"@ur ; + rdfs:domain :Monument ; + rdfs:label "date unveiled"@en, "datum onthulling"@nl, "تاریخ کی نقاب کشائی"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dateUse + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "date use"@en, "έναρξη_χρήσης"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:daughter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Woman ; + rdfs:label "Tochter"@de, "daughter"@en, "dochter"@nl, "fille"@fr, "κόρη"@el, "ابنة"@ar, "娘"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:day + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "Tag"@de, "day"@en, "jour"@fr, "ημέρα"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:daylightSavingTimeZone + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Sommerzeitzone"@de, "daylight saving time zone"@en ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:dbnlCodeDutch + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl)"@nl, "identifier in Dutch digital library (dbnl)"@en ; + rdfs:domain :Writer ; + rdfs:label "DBNL code NL"@nl, "Digital Library code NL"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dcc + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876."@en ; + rdfs:domain :Work ; + rdfs:label "Dewey Decimal Classification"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1036 ; + prov:wasDerivedFrom . + +:deFactoLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:label "de facto language"@en ; + rdfs:range :Language ; + owl:equivalentProperty :language ; + prov:wasDerivedFrom . + +:deadInFightDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "dead in fight date"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:deadInFightPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "dead in fight place"@en, "مردہ لڑائی کی جگہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dean + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Dekan"@de, "dean"@en, "decaan"@nl, "πρύτανης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:deanery + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Dioceses and parishes should know which deaneries there are"@en ; + rdfs:domain ; + rdfs:label "Dekanat"@de, "deanery"@en, "proosdij"@nl ; + rdfs:range :Deanery ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:deathAge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Sterbealter"@de, "death age"@en, "ηλικία θανάτου"@el, "موت کی عمر"@ur ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:deathCause + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Todesursache"@de, "death cause"@en, "doodsoorzaak"@nl, "αιτία_θανάτου"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P509 ; + prov:wasDerivedFrom . + +:deathDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Animal ; + rdfs:label "Sterbedatum"@de, "date de décès"@fr, "death date"@en, "sterfdatum"@nl, "ημερομηνία_θανάτου"@el, "የሞት ቀን"@am, "没年月日"@ja ; + rdfs:range xsd:date ; + owl:equivalentProperty , wikidata:P570, ; + prov:wasDerivedFrom . + +:deathPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The place where the person died."@en, "وہ جگہ جہاں شخص کی موت ہوئی۔"@ur ; + rdfs:domain :Animal ; + rdfs:label "Sterbeort"@de, "death place"@en, "lieu de décès"@fr, "plaats van overlijden"@nl, "τόπος_θανάτου"@el, "موت کی جگہ"@ur, "死没地"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty , wikidata:P20 ; + prov:wasDerivedFrom . + +:deathYear + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Person ; + rdfs:label "Sterbejahr"@de, "death year"@en, "jaar van overlijden"@nl, "έτος θανάτου"@el, "没年"@ja ; + rdfs:range xsd:gYear ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:deaths + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Arrêt permanent et irreversible de toutes les fonctions biologiques qui maintiennent en vie un organisme"@fr, "Permanent, irreversible cessation of all biological functions that sustain a living organism"@en, "是相對於生命體存在存活的生命現象,指维持一个生物生命存活的所有功能生物学功能的永久终止"@zh ; + rdfs:label "Deaths"@en, "Décès"@fr, "死亡"@zh ; + rdfs:range :Disease ; + prov:wasDerivedFrom . + +:debut + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Wrestler ; + rdfs:label "Debüt"@de, "debut"@en, "ντεμπούτο"@el, "デビュー"@ja ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:debutTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "debut team"@en, "πρώτη ομάδα"@el ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:debutWork + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "First work of a person (may be notableWork or not)"@en ; + rdfs:domain :Person ; + rdfs:label "debutWork"@en ; + rdfs:range :Work ; + prov:wasDerivedFrom . + +:dec + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "dec"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:decay + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "decay"@en, "αποσύνθεση"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:decideDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SupremeCourtOfTheUnitedStatesCase ; + rdfs:label "decide date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:declination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Constellation ; + rdfs:label "declination"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:decommissioningDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "decommissioning date"@en, "fecha de baja de servicio"@es ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:decoration + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "decoration"@en ; + prov:wasDerivedFrom . + +:defeat + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "Niederlage"@de, "defeat"@en, "ήττα"@el, "شکست"@ur ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:defeatAsMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Coach ; + rdfs:label "Niederlage als Trainer"@de, "defeat as team manager"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:definition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "definition"@en, "définition"@fr, "tanımlar"@tr ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:defunct + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "If the company is defunct or not. Use end_date if a date is given"@en, "اگر کمپنی ناکارہ ہے یا نہیں۔ اگر تاریخ دی گئی ہو تو اختتامی_تاریخ استعمال کریں۔"@ur ; + rdfs:domain :company ; + rdfs:label "Defunct"@en, "ناکارہ"@ur ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:delegateMayor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "delegate mayor"@en, "مندوب ناظم"@ur ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:delegation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "delegation"@en, "délégation"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:deliveryDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "delivery date"@en, "leverdatum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:deme + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "deme"@en, "محلّہ"@ur ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:demographics + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Demografie"@de, "demographics"@en ; + rdfs:range :Demographics ; + prov:wasDerivedFrom . + +:demographicsAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "demographics as of"@en, "indicadores demograficos em"@pt ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:demolitionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date à laquelle l'immeuble a été démoli."@fr, "The date the building was demolished."@en, "جس تاریخ کو عمارت گرائی گئی۔"@ur ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "date de démolition"@fr, "demolition date"@en, "ημερομηνία κατεδάφισης"@el, "انہدام کی تاریخ"@ur ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:demolitionYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Année où le bâtiment a été démoli."@fr, "The year the building was demolished."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "année de démolition"@fr, "demolition year"@en, "sloop jaar"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:demonym + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Volksbezeichnung"@de, "demonym"@en, "démonyme"@fr, "naam bevolkingsgroep"@nl, "xentilicio"@gl, "τοπονύμιο_πληθυσμού"@el ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:denomination + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Religious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity"@en ; + rdfs:domain :Agent ; + rdfs:label "denomination"@en ; + rdfs:subPropertyOf dul:isExpressedBy ; + prov:wasDerivedFrom . + +:density + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Dichte (μ3)"@de, "densidade (μ3)"@pt, "density (μ3)"@en, "densità (μ3)"@it, "densité (μ3)"@fr, "πυκνότητα (μ3)"@el, "密度 (μ3)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:department + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Abteilung"@de, "afdeling"@nl, "department"@en, "département"@fr, "eskualdea"@eu, "شعبہ"@ur ; + rdfs:range :Department ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:departmentCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Municipality ; + rdfs:label "departementcode"@nl, "محکمہ کا کوڈ"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:departmentPosition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "geolocDepartment"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:depictionDescription + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "This property can be used to map image captions from Infoboxes"@en ; + rdfs:label "depiction description (caption)"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:depth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use or to be unambiguous."@en ; + rdfs:domain :Place ; + rdfs:label "Tiefe (μ)"@de, "depth (μ)"@en, "diepte (μ)"@nl, "profondeur (μ)"@fr, "βάθος (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:depthQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "depth quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:depths + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "depths"@en ; + rdfs:range :Depth ; + prov:wasDerivedFrom . + +:deputy + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Stellvertreter"@de, "deputy"@en, "ምክትል"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:deputyDirector + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Second in command to the Director and assumes the primary position in the absence of the Director in film making."@en ; + rdfs:domain :Film ; + rdfs:label "deputy director"@en, "ምክትል ዳይሬክተር"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:derivative + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicGenre ; + rdfs:label "derivative"@en ; + rdfs:range :MusicGenre ; + rdfs:subPropertyOf dul:specializes ; + prov:wasDerivedFrom . + +:derivedWord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "abgeleitetes Wort"@de, "derived word"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:description + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Short description of a person"@en, "description courte d'une personne"@fr ; + rdfs:label "Beschreibung"@de, "description"@en, "description"@fr, "omschrijving"@nl, "περιγραφή"@el, "መግለጫ"@am ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:designCompany + a rdf:Property, owl:ObjectProperty ; + rdfs:label "designer company"@en ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:designer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "designer"@en, "σχεδιαστής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P287 ; + prov:wasDerivedFrom . + +:destination + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "Ziel"@de, "destination"@en, "προορισμός"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:destructionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "date de destruction"@fr, "destruction date"@en, "sloopdatum"@nl, "ημερομηνία καταστροφής"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:detectionMethod + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Method of discovery"@en, "Verfahren zur Entdeckung"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:detractor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Kritiker"@de, "detractor"@en ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:developer + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Developer of a Work (Artwork, Book, Software) or Building (Hotel, Skyscraper)"@en ; + rdfs:label "Entwickler"@de, "developer"@en, "développeur"@fr, "ontwikkelaar"@nl ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P178 ; + prov:wasDerivedFrom . + +:dfE + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Department for Education (UK) number of a school in England or Wales"@en ; + rdfs:domain :School ; + rdfs:label "DfE"@en ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:dialect + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A form of the language that is spoken in a particular part of the country or by a particular group of people"@en, "በአንድ የተወሰነ የአገሪቱ ክፍል ወይም በተወሰኑ የሰዎች ስብስብ የሚነገር የቋንቋ ዓይነት"@am ; + rdfs:domain :Language ; + rdfs:label "dialect"@en, "ዘዬ"@am ; + prov:wasDerivedFrom . + +:diameter + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Durchmesser (μ)"@de, "diameter (μ)"@en, "diameter (μ)"@nl, "diamètre (μ)"@fr, "διάμετρος (μ)"@el ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2386 ; + prov:wasDerivedFrom . + +:differentialDiagnosis + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "Differentialdiagnose"@de, "diagnostic différentiel"@fr, "differential diagnosis"@en ; + prov:wasDerivedFrom . + +:digitalChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Ένα ψηφιακό κανάλι επιτρέπει την μετάδοση δεδομένων σε ψηφιακή μορφή."@el ; + rdfs:domain :Broadcaster ; + rdfs:label "Digitalkanal"@de, "digital channel"@en, "Ψηφιακό κανάλι"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:digitalSubChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "digital sub channel"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:diocese + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A religious administrative body above the parish level"@en, "Structure administrative religieuse au-dessus du niveau paroissial"@fr ; + rdfs:label "Diözese"@de, "bisdom"@nl, "diocese"@en, "diocèse"@fr ; + rdfs:range :Diocese ; + owl:equivalentProperty wikidata:P708 ; + prov:wasDerivedFrom . + +:diploma + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Diplom"@de, "diploma"@en ; + rdfs:range :Diploma ; + prov:wasDerivedFrom . + +:director + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A film director is a person who directs the making of a film."@en, "Un réalisateur (au féminin, réalisatrice) est une personne qui dirige la fabrication d'une œuvre audiovisuelle, généralement pour le cinéma ou la télévision."@fr ; + rdfs:domain :Film ; + rdfs:label "director de cine"@es, "film director"@en, "instruktør"@da, "regisseur"@de, "regisseur"@nl, "réalisateur"@fr, "σκηνοθέτης"@el, "директор"@ru, "ዳይሬክተር"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P57 ; + prov:wasDerivedFrom . + +:disappearanceDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "date disappearance of a populated place"@en ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P746 ; + prov:wasDerivedFrom . + +:disbanded + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "disbanded"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:discharge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "discharge (m³/s)"@en, "uitstoot (m³/s)"@nl, "εκροή (m³/s)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:dischargeAverage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "discharge average (m³/s)"@en, "አማካኝ የፍሳሽ መጠን (m³/s)"@am ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:disciple + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A person who learns from another, especially one who then teaches others.."@en, "Celui qui apprend d’un maître quelque science ou quelque art libéral."@fr ; + rdfs:domain :Artist ; + rdfs:label "disciple"@en, "élève"@fr ; + rdfs:range :Artist ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P802 ; + prov:wasDerivedFrom . + +:discipline + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "Disziplin"@de, "discipline"@en ; + rdfs:subPropertyOf dul:isDescribedBy ; + owl:equivalentProperty wikidata:P101 ; + prov:wasDerivedFrom . + +:discontinued + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Beverage ; + rdfs:label "discontinued"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:discovered + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "date de découverte"@fr, "descobridor"@pt, "discovery date"@en, "entdeckt"@de, "fecha de descubrimiento"@es, "Ημερομηνία ανακάλυψης"@el ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P575 ; + prov:wasDerivedFrom . + +:discoverer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Entdecker"@de, "descubridor"@es, "discoverer"@en, "découvreur"@fr, "Ανακαλύφθηκε από"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P61 ; + prov:wasDerivedFrom . + +:discovery + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "Datum als die Insel entdeckt wurde"@de, "date when the island has been discovered"@en, "datum waarop het eiland is ontdekt"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:disease + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Points to a disease pertaining to the subject at hand."@en, "Verweist auf eine Krankheit."@de ; + rdfs:label "Krankheit"@de, "disease"@en ; + rdfs:range :Disease ; + prov:wasDerivedFrom . + +:diseasesDB + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "DiseasesDB"@de, "DiseasesDB"@en, "DiseasesDB"@fr, "DiseasesDB"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:diseasesDb + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "diseasesDb"@en, "diseasesDb"@ja, "diseasesDb"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P557 ; + prov:wasDerivedFrom . + +:displacement + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "cilindrada (μ³)"@es, "displacement (μ³)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:dissolutionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "date de dissolution"@fr, "dissolution date"@en, "ontbindingsdatum"@nl ; + rdfs:range xsd:date ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:dissolutionYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "dissolution year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:dissolved + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "dissolved"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:dist_ly + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "dist_ly"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dist_pc + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "dist_pc"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:distance + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Entfernung (μ)"@de, "distance (μ)"@en, "distance (μ)"@fr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceLaps + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "distance laps"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:distanceToBelfast + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Belfast (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToCapital + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to capital (μ)"@en, "distanza alla capitale (μ)"@it, "distância até a capital (μ)"@pt, "entfernung zur hauptstadt (μ)"@de, "απόσταση από την πρωτεύουσα (μ)"@el ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :Distance ; + prov:wasDerivedFrom . + +:distanceToCardiff + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Cardiff (μ)"@en, "απόσταση από το Cardiff (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToCharingCross + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Charing Cross (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToDouglas + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Douglas (μ)"@en, "απόσταση από το Douglas (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToDublin + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Dublin (μ)"@en, "απόσταση από το Δουβλίνο (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToEdinburgh + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to Edinburgh (μ)"@en, "απόσταση από το Εδιμβούργο (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToLondon + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to London (μ)"@en, "απόσταση από το Λονδίνο (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceToNearestCity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "distance to nearest city (μ)"@en, "distance à la ville la plus proche (μ)"@fr, "vzdálenost k nejbližšímu městu (μ)"@cs ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distanceTraveled + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Zurückgelegte Entfernung (μ)"@de, "afgelegde afstand (μ)"@nl, "distance traveled (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:distributingCompany + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :RecordLabel ; + rdfs:label "distributing company"@en ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:distributingLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :RecordLabel ; + rdfs:label "distributing label"@en ; + rdfs:range :RecordLabel ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:distributor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "allumeur"@fr, "distributor"@en ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P750 ; + prov:wasDerivedFrom . + +:district + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Bezirk"@de, "district"@en, "distrito"@pt, "streek"@nl, "περιοχή"@el, "जिला"@hi ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P131 ; + prov:wasDerivedFrom . + +:division + a rdf:Property, owl:ObjectProperty ; + rdfs:label "division"@en, "verdeling"@nl ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:dockedTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "docked time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:doctoralAdvisor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Scientist ; + rdfs:label "Doktorvater"@de, "doctoral advisor"@en, "διδακτορικός_σύμβουλος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P184 ; + prov:wasDerivedFrom . + +:doctoralStudent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Scientist ; + rdfs:label "Doktorand"@de, "doctoraalstudent"@nl, "doctoral student"@en, "διδακτορικοί_φοιτητές"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P185 ; + prov:wasDerivedFrom . + +:documentDesignation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Aanduiding beschrijvend document"@nl, "String designation of the WrittenWork describing the resource"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:documentNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Identification a document within a particular registry"@en ; + rdfs:domain :Document ; + rdfs:label "Dokumentnummer"@de, "document number"@en, "documentnummer"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:domain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "domain"@en, "domaine"@fr, "domein"@nl, "ドメイン_(分類学)"@ja ; + rdfs:subPropertyOf dul:specializes ; + prov:wasDerivedFrom . + +:dorlandsId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "DorlandsID"@en, "DorlandsID"@ja, "DorlandsID"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dorlandsPrefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Dorlands prefix"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dorlandsSuffix + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Dorlands suffix"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dose + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Dose means quantity (in units of energy/mass) in the fields of nutrition, medicine, and toxicology. Dosage is the rate of application of a dose, although in common and imprecise usage, the words are sometimes used synonymously."@en, "Dose signifie quantité (en unités d'énergie/masse) dans les domaines de la nutrition, la médecine et la toxicologie. Le dosage est le taux d'application d'une dose, bien que dans l'utilisation habituelle et imprécise qui en est faite, les mots sont quelques fois synonymes."@fr ; + rdfs:label "Dose"@en, "Dose"@fr, "剂量"@zh ; + rdfs:range xsd:integer ; + owl:equivalentProperty :dose ; + prov:wasDerivedFrom . + +:dosesFirst + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de premières doses."@fr, "Number of first vaccine doses."@en ; + rdfs:label "DosesFirst"@en, "Premières doses"@fr ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:dosesSecond + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de secondes doses de vaccin."@fr, "Number of second vaccine doses."@en ; + rdfs:label "DosesSecond"@en, "Secondes doses"@fr ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:draft + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Entwurf"@de, "draft"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:draftLeague + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "draft league"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:draftPick + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GridironFootballPlayer ; + rdfs:label "draft pick"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:draftPosition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "draft position"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:draftRound + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GridironFootballPlayer ; + rdfs:label "draft round"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:draftTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "draft team"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:draftYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "draft year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:drainsFrom + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "drains from"@en ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:drainsTo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "drains to"@en ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:drama + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Drama"@de, "drama"@en ; + rdfs:range :Drama ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:dressCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The recommended dress code for an establishment or event."@en ; + rdfs:domain :Restaurant ; + rdfs:label "dress code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:drug + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Drug"@en, "drogue"@fr, "药物"@zh ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:drugbank + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "DrugBank"@en, "DrugBank"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + + + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Verweist auf den drugs.com Artikel über ein Medikament."@de, "external link to drug articles in the drugs.com website"@en ; + rdfs:domain :Drug ; + rdfs:label "drugs.com"@de, "drugs.com"@en ; + prov:wasDerivedFrom . + +:dryCargo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Trockenfracht (g)"@de, "droge last (g)"@nl, "dry cargo (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:dubber + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person who dubs another person e.g. an actor or a fictional character in movies"@en ; + rdfs:domain :Person ; + rdfs:label "dubber"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:duration + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Durée d'un élément (film, enregistrement audio, événement, etc.) au format de date ISO 8601"@fr, "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format"@en ; + rdfs:label "Dauer (s)"@de, "duration (s)"@en, "durée (s)"@fr, "duur (s)"@nl, "ቆይታ (s)"@am ; + rdfs:range xsd:double ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:dutchArtworkCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Artwork ; + rdfs:label "Dutch artwork code"@en, "code RKD"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:dutchCOROPCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Region ; + rdfs:label "Dutch COROP code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dutchMIPCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code voor alle soorten monumenten gebezigd door het MI-project"@nl, "The Dutch MIP project was meant to take stock of all kinds of monuments"@en ; + rdfs:domain ; + rdfs:label "monument code for the Monuments Inventory Project"@en, "monumentcode voor het Monumenten Inventarisatie Project"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :Code ; + prov:wasDerivedFrom . + +:dutchNAIdentifier + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MemberResistanceMovement ; + rdfs:label "Code Nationaal Archief"@nl, "Identifier for Duch National Archive"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:dutchPPNCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Dutch PPN code is a library cataloguing code for collection items (books, journals and the like)."@en, "Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie."@nl ; + rdfs:domain :WrittenWork ; + rdfs:label "Dutch PPN code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:dutchRKDCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Artist ; + rdfs:label "Code Rijksbureau voor Kunsthistorische Documentatie"@nl, "Dutch RKD code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:dutchWinkelID + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Dutch Winkel ID is a code for an underground publication, as attributed by Lydia Winkel's work on the underground WW II press in the Netherlands."@en, "Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945."@nl ; + rdfs:domain :UndergroundJournal ; + rdfs:label "Dutch PPN code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:dynasty + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Dynastie"@de, "dynastie"@nl, "dynasty"@en, "ሥርወ-መንግሥት"@am ; + prov:wasDerivedFrom . + +:eMedicineSubject + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "eMedicine onderwerp"@nl, "eMedicine subject"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:eMedicineTopic + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Different from eMedicineSubject, which see"@en ; + rdfs:domain :Disease ; + rdfs:label "eMedicine topic"@en, "eMedicine topic"@nl ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:eTeatrId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "e-teatr.pl id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:eastPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated east."@en, "indique un autre lieu situé à l'est."@fr, "በምስራቅ የሚገኝ ሌላ ቦታ ያመለክታል."@am ; + rdfs:domain :Place ; + rdfs:label "east place"@en, "lieu à l'est"@fr, "ምስራቅ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:ecNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "EC number"@en, "EC番号"@ja ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P591 ; + prov:wasDerivedFrom . + +:editing + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Film ; + rdfs:label "Bearbeitung"@de, "eagarthóireacht"@ga, "editing"@en, "አርታዒ"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P1040 ; + prov:wasDerivedFrom . + +:editor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Herausgeber"@de, "eagarthóir"@ga, "editor"@en, "redacteur"@nl, "redaktor"@pl, "συντάκτης"@el ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P98, ; + prov:wasDerivedFrom . + +:editorTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Magazine ; + rdfs:label "editor title"@en, "τίτλος συντάκτη"@el ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:education + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Bildung"@de, "education"@en, "opleiding"@nl, "éducation"@fr, "ትምህርት"@am, "教育"@ja ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P69 ; + prov:wasDerivedFrom . + +:educationPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Bildungsstätte"@de, "education place"@en, "lieu d'enseignement"@fr ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:educationSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "education system"@en ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:effectiveRadiatedPower + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "effectiveRadiatedPower (W)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:egafdId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "código no egafd"@pt, "egafd id"@el, "egafd id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:einecsNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "EINECS number"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P232 ; + prov:wasDerivedFrom . + +:ekatteCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Indexing code used by the Bulgarian National Statistical Institute to identify populated places"@en, "Единен класификатор на административно-териториалните и териториалните единици"@bg ; + rdfs:domain :PopulatedPlace ; + rdfs:label "EKATTE code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :codeSettlement ; + prov:wasDerivedFrom . + +:electionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Wahltermin"@de, "election date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:electionDateLeader + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The date that leader was elected."@en ; + rdfs:domain :Legislature ; + rdfs:label "Wahldatum des Vorsitzenden"@de, "election date leader"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:electionMajority + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of votes the office holder attained"@en ; + rdfs:label "election majority"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:elementAbove + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "element placed above current element in D.I.Mendeleev's table"@en, "élément placé au-dessus de l'élément courant dans le tableau périodique des éléments de D.I.Mendeleev"@fr, "Элемент снизу под текущим элементом в таблице Д.И.Менделеева"@ru ; + rdfs:label "element above"@en, "hoger element"@nl, "élément supérieur"@fr, "элемент снизу"@ru ; + rdfs:range :ChemicalSubstance ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:elementBlock + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A block of the periodic table of elements is a set of adjacent groups."@en, "Als Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenhülle zusammengefasst."@de, "La taula periòdica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons més externs"@ca, "совокупность химических элементов со сходным расположением валентных электронов в атоме."@ru ; + rdfs:domain :ChemicalElement ; + rdfs:label "Block des Periodensystems"@de, "bloc de la taula periòdica"@ca, "blok układu okresowego"@pl, "element block"@en, "блок периодической таблицы"@ru ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:elementGroup + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements."@en, "Séard atá i gceist le grúpa sa choimhthéacs seo ná colún ceartingearach i dtábla peiriadach na ndúl ceimiceach."@ga, "Un grup d'elements equival a una columna de la taula periòdica."@ca, "Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems."@de, "grupa jest pionową kolumną w układzie okresowym pierwiastków chemicznych."@pl, "последовательность атомов по возрастанию заряда ядра, обладающих однотипным электронным строением."@ru ; + rdfs:domain :ChemicalElement ; + rdfs:label "Gruppe des Periodensystems"@de, "element group"@en, "grup de la taula periòdica"@ca, "grupa układu okresowego"@pl, "grúpa an tábla pheiriadaigh"@ga, "группа периодической системы"@ru ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:elementPeriod + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "En la taula periòdica dels elements, un període és una filera de la taula"@ca, "In the periodic table of the elements, elements are arranged in a series of rows (or periods) so that those with similar properties appear in a column."@en, "Unter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente."@de, "строка периодической системы химических элементов, последовательность атомов по возрастанию заряда ядра и заполнению электронами внешней электронной оболочки."@ru ; + rdfs:domain :ChemicalElement ; + rdfs:label "Periode des Periodensystems"@de, "element period"@en, "okres układu okresowego"@pl, "peiriad an tábla pheiriadaigh"@ga, "període de la taula periòdica"@ca, "период периодической таблицы"@ru ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:elevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "altitude média acima do nível do mar"@pt, "average elevation above the sea level"@en ; + rdfs:domain :Place ; + rdfs:label "Höhe (μ)"@de, "altitud (μ)"@es, "altitude (μ)"@fr, "altitude (μ)"@pt, "elevation (μ)"@en, "hoogte (μ)"@nl, "υψόμετρο (μ)"@el, "ऊँचाई (μ)"@hi, "ከፍታ (μ)"@am ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2044 ; + prov:wasDerivedFrom . + +:elevationQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "elevation quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:elevatorCount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Aufzüge"@de, "elevator count"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:elo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChessPlayer ; + rdfs:label "ELO rating"@en ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty wikidata:P1087 ; + prov:wasDerivedFrom . + +:eloRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChessPlayer ; + rdfs:label "maximum ELO rating"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:emblem + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A symbolic object used as a distinctive badge of a nation, organization, or family."@en, "ለአገር ፣ ለቡድን፣ ድርጅት ወይም ቤተሰብ እንደ መለያ ምልክት የሚያገለግል ተምሳሌታዊ ነገር።"@am ; + rdfs:domain :PopulatedPlace ; + rdfs:label "emblem"@en, "አርማ"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P158 ; + prov:wasDerivedFrom . + +:emmyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Emmy Award"@de, "Emmy Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:employer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Arbeitgeber"@de, "employer"@en, "θέσεις_εργασίας"@el, "雇用者"@ja ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty wikidata:P108 ; + prov:wasDerivedFrom . + +:employersCelebration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "employer's celebration"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:end + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TimePeriod ; + rdfs:label "Ende"@de, "end"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:endCareer + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "end career"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:endDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The end date of the event."@en ; + rdfs:domain :Event ; + rdfs:label "Enddatum"@de, "date de fin"@fr, "einddatum"@nl, "end date"@en, "fecha de fin"@es ; + rdfs:range xsd:date ; + rdfs:subPropertyOf , ; + owl:equivalentProperty wikidata:P582 ; + prov:wasDerivedFrom . + +:endDateTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The end date and time of the event."@en ; + rdfs:domain :Event ; + rdfs:label "datum en tijd van einde"@nl, "end date and time"@en ; + rdfs:range xsd:dateTime ; + prov:wasDerivedFrom . + +:endOccupation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "end occupation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:endPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Endpunkt"@de, "end point"@en, "σημείο_τέλους"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:endReign + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "end reign"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:endYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Startjahr"@de, "end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:endYearOfInsertion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "end year of insertion"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:endYearOfSales + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Sales ; + rdfs:label "end year of sales"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:endangeredSince + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "em perigo desde"@pt, "endangered since"@en, "gefährdet seit"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:endingTheme + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "ending theme"@en ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:endowment + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "endowment ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:enemy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Feind"@de, "enemy"@en ; + rdfs:range :Species ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:engine + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Automobile ; + rdfs:label "Motor"@de, "engine"@en, "moteur"@fr, "motor"@pt, "μηχανή"@el ; + rdfs:range :AutomobileEngine ; + rdfs:subPropertyOf dul:hasComponent ; + prov:wasDerivedFrom . + +:enginePower + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "La puissance est exprimée en watts (kiloWatt, megaWatt)"@fr, "Power to be expressed in Watts (kiloWatt, megaWatt)"@en ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "engine power"@en, "motorvermogen"@nl, "puissance du moteur"@fr ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:engineType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "engine type"@en, "type de moteur"@fr ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:engineer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Ingenieur"@de, "engineer"@en, "ingenieur"@nl, "μηχανικός"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:ensembl + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "ensemble"@en, "ensemble"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:enshrinedDeity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Shrine ; + rdfs:label "enshrined deity"@en, "祭神"@ja ; + rdfs:range :Deity ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:entourage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Gefolge"@de, "entourage"@en ; + rdfs:range :Species ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:entrezgene + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "EntrezGene"@en, "EntrezGene"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:eparchy + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Compare with bishopric"@en ; + rdfs:domain :ReligiousBuilding ; + rdfs:label "eparchy"@en, "metropoleis"@el, "епархия"@bg ; + prov:wasDerivedFrom . + +:episode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Folge"@de, "episode"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:episodeNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The episode number of the TelevisionEpisode."@en ; + rdfs:domain :TelevisionEpisode ; + rdfs:label "episode number"@en ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:epoch + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "moment in time used as a referrence point for some time-vaying astronomical quantity"@en ; + rdfs:domain :Planet ; + rdfs:label "epoch"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:eptFinalTable + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "ept final table"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:eptItm + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "ept itm"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:eptTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "ept title"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:equipment + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Activity ; + rdfs:label "Ausrüstung"@de, "equipment"@en, "uitrusting"@nl, "εξοπλισμός"@el ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:equity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Gerechtigkeit ($)"@de, "equity ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:era + a rdf:Property, owl:ObjectProperty ; + rdfs:label "era"@en, "εποχή"@el ; + rdfs:subPropertyOf dul:isDescribedBy ; + owl:equivalentProperty wikidata:P2348 ; + prov:wasDerivedFrom . + +:eruption + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "Ausbruch"@de, "eruption"@en, "éruption"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:eruptionYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Volcano ; + rdfs:label "Jahr des letzten Ausbruchs"@de, "année de la dernière éruption"@fr, "eruption date"@en, "jaar uitbarsting"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:escalafon + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "escalafon"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:escapeVelocity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "escape velocity (kmh)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:espnId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "ESPN id"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:established + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChristianDoctrine ; + rdfs:label "Established"@en, "etabliert"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:establishment + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChristianDoctrine ; + rdfs:label "Establishment"@en, "Etablissement"@fr, "ίδρυση"@el ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:ethnicGroup + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "ethnic group"@en, "ethnie"@de, "etnia"@it, "groupe ethnique"@fr ; + rdfs:range :EthnicGroup ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:ethnicGroupsInYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "ethnic groups in year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:ethnicity + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Μία ορισμένη κοινωνική κατηγορία ανθρώπων που έχουν κοινή καταγωγή ή εμπειρίες."@el ; + rdfs:domain :Person ; + rdfs:label "ethnicity"@en, "ethnische zugehörigkeit"@de, "etnia"@it, "εθνότητα"@el ; + rdfs:range :EthnicGroup ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty wikidata:P172 ; + prov:wasDerivedFrom . + +:eurobabeIndexId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "código no eurobabeindex"@pt, "eurobabe index id"@en, "eurobabeindex id"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:europeanAffiliation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "afiliacao europeia"@pt, "european affiliation"@en ; + prov:wasDerivedFrom . + +:europeanChampionship + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Europameisterschaft"@de, "european championship"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:europeanParliamentGroup + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "european parliament group"@en, "grupo parlamentar europeu"@pt ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:europeanUnionEntranceDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "data de entrada na uniao europeia"@pt, "european union entrance date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:event + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Veranstaltung"@de, "event"@en, "evento"@pt, "événement"@fr ; + rdfs:range :Event ; + rdfs:subPropertyOf dul:hasParticipant ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:eventDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Veranstaltungstermin"@de, "date de l'événement"@fr, "event date"@en ; + rdfs:range xsd:date ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:eventDescription + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Sert à décrire l'événement qui s'est passé ici (dans le cas où il n'y a pas de ressource liée d'événement)"@fr, "This is to describe the event that hapened here (in case there is no event resource to be linked to)"@en ; + rdfs:domain :HistoricPlace ; + rdfs:label "beschrijving gebeurtenis"@nl, "description de l'événement"@fr, "event description"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:executiveHeadteacher + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "executive headteacher"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:executiveProducer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Ausführender Produzent"@de, "executive producer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:exhibition + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Notes about an exhibition the object has been to"@en, "Notes relatives à l'exposition dont l'objet a fait partie"@fr ; + rdfs:label "exhibition"@en, "exposition"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:existence + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Το είναι αντικατοπτρίζει αυτό που υπάρχει."@el ; + rdfs:label "Existenz"@de, "existence"@en, "είναι"@el ; + prov:wasDerivedFrom . + +:expedition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Expedition"@de, "expedition"@en, "expédition"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:explorer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Galaxy ; + rdfs:label "Erforscher"@de, "explorateur"@fr, "explorer"@en, "kaşif"@tr ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:externalOrnament + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "external ornament"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:extinctionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "!!! Do NOT use this property for non Species related dates!!! - Date when an Organization (eg PoliticalParty, Company) or Species ceased to exist"@en ; + rdfs:label "extinction date"@en, "ontbindingsdatum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:extinctionYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "!!! Do NOT use this property for non Species related dates!!! - Year this species went extinct."@en ; + rdfs:domain :Species ; + rdfs:label "extinction year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:eyeColor + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Augenfarbe"@de, "cor dos olhos"@pt, "couleur des yeux"@fr, "dath súile"@ga, "eye color"@en, "kolor oczu"@pl, "χρώμα ματιού"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1340 ; + prov:wasDerivedFrom . + +:eyeColour + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Augenfarbe"@de, "eye colour"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:eyes + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "L'œil est appelé l'organe sensoriel de la vue des organismes vivants."@fr, "The eye is called the sensory organ of sight in living organisms."@en, "Μάτι ονομάζεται το αισθητήριο όργανο της όρασης των ζωντανών οργανισμών."@el ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Augen"@de, "eyes"@en, "ogen"@nl, "yeux"@fr, "μάτια"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:faaLocationIdentifier + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "FAA Location Identifier"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:facilityId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RadioStation ; + rdfs:label "facility id"@en, "identificativo dell'impianto"@it ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:facultySize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of faculty members"@en ; + rdfs:domain :EducationalInstitution ; + rdfs:label "faculty size"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:failedLaunches + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "failed launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:family + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "familie"@de, "familie"@nl, "famille"@fr, "family"@en, "rodzina"@pl, "οικογένεια"@el, "科_(分類学)"@ja ; + rdfs:range :Species ; + rdfs:subPropertyOf dul:specializes ; + owl:equivalentProperty wikidata:P53 ; + prov:wasDerivedFrom . + +:familyMember + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Family ; + rdfs:label "Familienmitglied"@de, "familielid"@nl, "family member"@en ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:fansgroup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "fansgroup"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fareZone + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Die Tarifzone zu der die Station gehört."@de, "The fare zone in which station is located."@en, "Zone de tarification à laquelle appartient la gare."@fr ; + rdfs:domain :Station ; + rdfs:label "Tarifzone"@de, "fare zone"@en, "zone de tarification"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fastestDriver + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "fastest driver"@en, "schnellster Fahrer"@de, "ταχύτερος οδηγός"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:fastestDriverCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "fastest driver country"@en, "schnellster Fahrer Land"@de ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:fastestDriverTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "fastest driver team"@en, "schnellster Fahrer Team"@de, "ομάδα ταχύτερου οδηγού"@el ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:fastestLap + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "fastest lap"@en, "schnellste Runde"@de, "ταχύτερος γύρος"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:fat + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Amount of fat per servingSize of a Food"@en ; + rdfs:domain :Food ; + rdfs:label "fat (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:fatalityRate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of deaths from pandemic compared to the total number of people diagnosed."@en ; + rdfs:domain :Outbreak ; + rdfs:label "Fatality Rate"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:fate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Schicksal"@de, "fate"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:father + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Man ; + rdfs:label "Vater"@de, "father"@en, "père"@fr, "አባት"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P22 ; + prov:wasDerivedFrom . + +:fauna + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Fauna"@de, "fauna"@en, "fauna"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fc + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cricketer ; + rdfs:label "FC"@en, "FC"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:fcRuns + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cricketer ; + rdfs:label "FC runs"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:fdaUniiCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "FDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug"@en ; + rdfs:label "FDA UNII code"@en, "código FDA UNII"@pt ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:feastDay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A day of celebration associated with the entity. Applies to Saint, School etc"@en ; + rdfs:label "Festtag"@de, "feast day, holiday"@en, "feestdag"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:feat + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "feat"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:feature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "feature"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:features + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "features"@en, "kenmerk"@nl, "χαρακτηριστικό"@el ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:featuring + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Name of the second artist, apart the main artist, reserved preferently for singles, promotional singles and songs."@en, "Nom du second artiste, autre que l'artiste principal. À réserver de préférence aux singles, singles promotionnels et chansons."@fr ; + rdfs:domain :MusicalWork ; + rdfs:label "featuring"@en, "featuring"@fr ; + rdfs:range :Agent ; + rdfs:subPropertyOf :artist ; + prov:wasDerivedFrom . + +:fedCup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "fed cup"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:federalState + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Bundesland"@de, "federal state"@en, "provincie"@nl ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:federation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Verband"@de, "federation"@en ; + rdfs:range :Organisation ; + prov:wasDerivedFrom . + +:fees + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "Gebühren ($)"@de, "fees ($)"@en, "δίδακτρα ($)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:fibahof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "fibahof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:field + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Feld"@de, "field"@en ; + rdfs:subPropertyOf dul:isDescribedBy ; + prov:wasDerivedFrom . + +:fight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "Kampf"@de, "fight"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:fighter + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Kämpfer"@de, "combattant"@fr, "fighter"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fileExtension + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :File ; + rdfs:label "Extension de ce fichier"@fr, "The extension of this file"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fileSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "size of a file or software"@en, "μέγεθος ενός ηλεκτρονικού αρχείου"@el ; + rdfs:domain :Work ; + rdfs:label "Dateigröße (B)"@de, "size (B)"@en, "taille de fichier (B)"@fr, "μέγεθος αρχείου (B)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:fileURL + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :File ; + rdfs:label "The URL at which this file can be downloaded"@en, "URL de téléchargement du fichier"@fr ; + rdfs:range :File ; + prov:wasDerivedFrom . + +:filename + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Work ; + rdfs:label "bestandsnaam"@nl, "dateiname"@de, "filename"@en, "nom de fichier"@fr, "όνομα αρχείου"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fillingStation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :RestArea ; + rdfs:label "filling station"@en, "station service"@fr ; + rdfs:range :FillingStation ; + prov:wasDerivedFrom . + +:film + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FilmFestival ; + rdfs:label "film"@da, "film"@de, "film"@en, "film"@fr, "film"@nl, "ταινία"@el ; + rdfs:range :Film ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:filmAudioType + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "specifies the audio type of the film i.e. 'sound' or 'silent'"@en ; + rdfs:domain :Film ; + rdfs:label "film audio type"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:filmColourType + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "specifies the colour type of the film i.e. 'colour' or 'b/w'"@en ; + rdfs:domain :Film ; + rdfs:label "film colour type"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:filmFareAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Film Fare Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:filmNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "film number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:filmPolskiId + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "FilmPolski.pl id"@en, "id de FilmPolski.pl"@fr ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:filmRuntime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "Filmlaufzeit (s)"@de, "film runtime (s)"@en ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :runtime ; + prov:wasDerivedFrom . + +:filmVersion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "film version"@en, "verfilmd als"@nl ; + rdfs:range :Film ; + prov:wasDerivedFrom . + +:finalFlight + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "date of final flight"@en ; + rdfs:domain :Rocket ; + rdfs:label "final flight"@en, "letzter Flug"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:finalLost + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Finale verloren"@de, "final lost"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:finalLostDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "final lost double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:finalLostSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "final lost single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:finalLostTeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "final lost team"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:finalPublicationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of the final publication."@en, "Datum der allerletzten Veröffentlichung des Periodikums."@de ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "Datum der finalen Ausgabe"@de, "final publication date"@en, "laatste publicatiedatum"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:finalPublicationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Jahr der allerletzten Veröffentlichung des Periodikums."@de, "Year of the final publication."@en ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "Jahr der finalen Ausgabe"@de, "final publication year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:fipsCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "fips code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstAirDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The date on which regular broadcasts began."@en ; + rdfs:domain :Broadcaster ; + rdfs:label "Sendebeginn"@de, "first air date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstAppearance + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "first appearance"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstAscent + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "Erstbesteigung"@de, "first ascent"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstAscentPerson + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Mountain ; + rdfs:label "Person , die zuerst einen Berg bestiegen hat"@de, "person that first ascented a mountain"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:firstAscentYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mountain ; + rdfs:label "Jahr der Erstbesteigung"@de, "jaar van de eerste beklimming"@nl, "year of first ascent"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:firstBroadcast + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "Erstausstrahlung"@de, "first broadcast"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstDriver + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "erster Fahrer"@de, "first driver"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:firstDriverCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "first driver country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:firstDriverTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "Siegerteam"@de, "winning team"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:firstFlight + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "erster Flug"@de, "first flight"@en ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:firstFlightEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "first flight end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstFlightStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "first flight start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstGame + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "erstes Spiel"@de, "first game"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstLaunch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "erster Start"@de, "first launch"@en, "premier lancement"@fr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstLaunchDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "erster Starttermin"@de, "first launch date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstLaunchRocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "first launch rocket"@en ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:firstLeader + a rdf:Property, owl:ObjectProperty ; + rdfs:label "firstLeader"@en, "πρώτος ηγέτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:firstMention + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "erste Erwähnung"@de, "first mention"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstOlympicEvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Sport ; + rdfs:label "first olympic event"@en, "première épreuve olympique"@fr ; + rdfs:range :OlympicEvent ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:firstOwner + a rdf:Property, owl:ObjectProperty ; + rdfs:label "erster Besitzer"@de, "first owner"@en, "premier propriétaire"@fr, "primer dueño"@es ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:firstPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "erster Platz"@de, "first place"@en, "première place"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstPopularVote + a rdf:Property, owl:ObjectProperty ; + rdfs:label "firstPopularVote"@en ; + rdfs:range :Person ; + owl:equivalentProperty dul:sameSettingAs ; + prov:wasDerivedFrom . + +:firstProMatch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "erstes Profispiel"@de, "first pro match"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:firstPublicationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of the first publication."@en, "Datum der ersten Veröffentlichung des Periodikums."@de ; + rdfs:domain :WrittenWork ; + rdfs:label "Datum der Erstausgabe"@de, "data pierwszego wydania"@pl, "date de la première publication"@fr, "eerste publicatiedatum"@nl, "first publication date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:firstPublicationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Jahr der ersten Veröffentlichung des Periodikums."@de, "Year of the first publication."@en, "Έτος της πρώτης δημοσίευσης."@el ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "Jahr der Erstausgabe"@de, "first publication year"@en, "πρώτο έτος δημοσίευσης"@el ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:firstPublisher + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "erster Herausgeber"@de, "first publisher"@en, "oorspronkelijke uitgever"@nl ; + rdfs:range :Agent ; + rdfs:subPropertyOf :publisher ; + prov:wasDerivedFrom . + +:firstRace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "erstes Rennen"@de, "first race"@en ; + rdfs:range :GrandPrix ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:firstWin + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "erster Sieg"@de, "first win"@en ; + rdfs:range :GrandPrix ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:firstWinner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Race ; + rdfs:label "erster Gewinner"@de, "first winner"@en, "πρώτος νικητής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:flag + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Wikimedia Commons file name representing the subject's flag"@en ; + rdfs:label "Flagge"@de, "bandiera"@it, "flag (image)"@en, "göndere çekmek"@tr, "vlag (afbeelding)"@nl, "σημαία"@el, "ሰንደቅ ዓላማ"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P41 ; + prov:wasDerivedFrom . + +:flagBearer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "Fahnenträger"@de, "flag bearer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:flagBorder + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "flag border"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:flagCaption + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Flag ; + rdfs:label "flag caption"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:flagLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "flag Link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:flagSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Flag ; + rdfs:label "flagSize"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:flashPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "lowest temperature at which a substance can vaporize and start burning"@en ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "flash point"@en, "vlampunt"@nl ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:floodingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "date d'innondation"@fr, "flooding date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:floorArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "floor area (m2)"@en, "vloeroppervlak (m2)"@nl, "περιοχή ορόφων (m2)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:floorCount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "floor count"@en, "verdiepingen"@nl, "αριθμός ορόφων"@el ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:flora + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Flora"@de, "flora"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:flower + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Blume"@de, "fleur"@fr, "flower"@en, "λουλούδι"@el ; + rdfs:range :Species ; + prov:wasDerivedFrom . + +:flyingHours + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Flugstunden (s)"@de, "flying hours (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:foalDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Animal ; + rdfs:label "foal date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:focus + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Points out the subject or thing someone or something is focused on."@en, "Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas fokussiert ist."@de ; + rdfs:label "Fokus"@de, "focus"@en ; + prov:wasDerivedFrom . + +:followedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:label "followed by"@en, "gefolgt von"@de, "siguido de"@es, "suivi par"@fr ; + owl:equivalentProperty wikidata:P156 ; + prov:wasDerivedFrom . + +:followingEvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Event ; + rdfs:label "following event"@en, "évènement suivant"@fr ; + rdfs:range :Event ; + rdfs:subPropertyOf dul:precedes ; + prov:wasDerivedFrom . + +:follows + a rdf:Property, owl:ObjectProperty ; + rdfs:label "folgt"@de, "follows"@en, "sigue"@es, "vient après"@fr ; + owl:equivalentProperty wikidata:P155 ; + prov:wasDerivedFrom . + +:foot + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "foot"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:footedness + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "a preference to put one's left or right foot forward in surfing, wakeboarding, skateboarding, wakeskating, snowboarding and mountainboarding. The term is sometimes applied to the foot a footballer uses to kick."@en ; + rdfs:domain :Sport ; + rdfs:label "Footedness"@en, "habilidade com o pé"@pt ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:forces + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Streitkräfte"@de, "forces"@en, "forces"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:foresterDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "foresterDistrict"@en ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:format + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Format of the resource (as object). Use dct:format for literal, format for object"@en ; + rdfs:label "Format"@de, "formaat"@nl, "format"@el, "format"@fr, "format"@pl, "format (object)"@en, "formáid"@ga ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:formationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "est-ce la même chose que OntologyProperty:FoundingDate ?"@fr, "same as OntologyProperty:FoundingDate?"@en ; + rdfs:domain :Organisation ; + rdfs:label "date de formation"@fr, "formatie datum"@nl, "formation date"@en, "Ιδρύθηκε"@el ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P571 ; + prov:wasDerivedFrom . + +:formationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "equivalent / sub property of OntologyProperty:foundingYear?"@en, "est-ce un équivalent ou une sous-propriété de OntologyProperty:foundingYear?"@fr ; + rdfs:domain :Organisation ; + rdfs:label "année de formation"@fr, "formatie jaar"@nl, "formation year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:formerBandMember + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A former member of the band."@en ; + rdfs:domain :Band ; + rdfs:label "ehemaliges Bandmitglied"@de, "former band member"@en, "voormalig bandlid"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:formerBroadcastNetwork + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A former parent broadcast network to which the broadcaster once belonged."@en, "Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter gehört hat."@de ; + rdfs:domain :Broadcaster ; + rdfs:label "ancienne chaîne de télévision généraliste"@fr, "ehemalige Sendergruppe"@de, "former broadcast network"@en ; + rdfs:range :BroadcastNetwork ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:formerCallsign + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "former call sign"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:formerChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "former channel"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:formerChoreographer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FigureSkater ; + rdfs:label "choréographe précédent"@fr, "ehemaliger Choreograph"@de, "former choreographer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:formerCoach + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FigureSkater ; + rdfs:label "Ex-Trainer"@de, "former coach"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:formerHighschool + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :NationalCollegiateAthleticAssociationAthlete ; + rdfs:label "ehemalige Highschool"@de, "former highschool"@en ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:formerName + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "former name"@en, "früherer Name"@de, "προηγούμενο όνομα"@el ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:formerPartner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FigureSkater ; + rdfs:label "ehemaliger Partner"@de, "former partner"@en, "partenaire précédent"@fr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:formerTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "former team"@en, "voormalig team"@nl ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:formula + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Formel"@de, "formula"@en, "formule"@fr, "formule"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fossil + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "fossiel"@nl, "fossil"@en ; + rdfs:range :Species ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:foundation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Gründung"@de, "foundation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:foundationPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Gründungsort"@de, "foundation place"@en ; + rdfs:range :City ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:foundedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Identifies the founder of the described entity. This can be a person or a organisation for instance."@en ; + rdfs:label "a bhunaigh"@ga, "fondé par"@fr, "founded by"@en, "gegründet von"@de, "gesticht door"@nl, "założony przez"@pl ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P112 ; + prov:wasDerivedFrom . + +:founder + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Ein Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes."@en ; + rdfs:label "Gründer"@de, "founder"@en, "Ιδρυτής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P112 ; + prov:wasDerivedFrom . + +:foundingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Gründungsdatum"@de, "data założenia"@pl, "dáta bunaithe"@ga, "founding date"@en, "ημερομηνία ίδρυσης"@el, "የምሥረታ ቀን"@am, "創立日"@ja ; + rdfs:range xsd:date ; + owl:equivalentProperty , wikidata:P571 ; + prov:wasDerivedFrom . + +:foundingYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Gründungsjahr"@de, "año de fundación"@es, "founding year"@en, "oprichtingsjaar"@nl, "έτος ίδρυσης"@el ; + rdfs:range xsd:gYear ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:fourthCommander + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "fourth commander"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:frazioni + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "frazioni"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:free + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "free"@en, "libre"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:freeDanseScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "free danse score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:freeFlightTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "free flight time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:freeLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "freeLabel"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:freeProgCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "free prog competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:freeProgScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "free prog score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:freeScoreCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "free score competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:frequency + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Frequenz (Hz)"@de, "frequency (Hz)"@en, "fréquence (Hz)"@fr, "συχνότητα (Hz)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:frequencyOfPublication + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Die Häufigkeit der Erscheinungen des Periodikums (z.B. wöchentlich, monatlich)."@de, "The frequency of periodical publication (eg. Weekly, Bimonthly)."@en ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "Erscheinungsweise"@de, "frequency of publication"@en, "frequentie van publicatie"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:frequentlyUpdated + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Software ; + rdfs:label "frequently updated"@en, "häufig aktualisiert"@de, "mise à jour fréquente"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:friend + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Freund"@de, "friend"@en, "φίλος"@el ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:frontierLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "length of a frontier"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:frozen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BodyOfWater ; + rdfs:label "frozen"@en, "gefroren"@de, "παγωμένη"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fuel + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Treibstoff"@de, "brandstof"@nl, "carburant"@fr, "fuel"@en, "καύσιμα"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:fuelCapacity + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Automobile ; + rdfs:label "Kraftstoffkapazität (μ³)"@de, "fuel capacity (μ³)"@en, "χωρητικότητα καυσίμου (μ³)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:fuelConsumption + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Kraftstoffverbrauch"@de, "brandstofverbruik"@nl, "fuel consumption"@en, "κατανάλωση καυσίμου"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fuelSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Kraftstoffsystem"@de, "fuel system"@en ; + rdfs:subPropertyOf dul:hasComponent ; + owl:equivalentProperty wikidata:P1211 ; + prov:wasDerivedFrom . + +:fuelType + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kraftstofftyp"@de, "fuel type"@en, "τύπος καυσίμου"@el ; + prov:wasDerivedFrom . + +:fuelTypeName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PowerStation ; + rdfs:label "fuel type"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:fullCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "full competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:fullScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "full score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:functionEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "function end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:functionEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "function end year"@en, "laatste jaar functie"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:functionStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "function start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:functionStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "function start year"@en ; + rdfs:range xsd:gYear ; + owl:equivalentProperty wikidata:P2031 ; + prov:wasDerivedFrom . + +:fundedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A organisation financing the research project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "funded by"@en, "gefördert durch"@de, "ιδρύθηκε από"@el ; + rdfs:range ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:galicianSpeakersDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The last inquiry date about linguistics uses."@en, "data da última enquisa sociolingüística."@gl ; + rdfs:domain :Language ; + rdfs:label "data da enquisa sociolingüística"@gl, "galicianSpeakersDate"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:galicianSpeakersPercentage + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Percentage of Galician speakers."@en, "porcentaxe de galegofalantes."@gl ; + rdfs:domain :Language ; + rdfs:label "galicianSpeakersPercentage"@en, "porcentaxe de galegofalantes"@gl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:galleryItem + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A file contained in a gallery"@en ; + rdfs:domain :Document ; + rdfs:label "Galerieelement"@de, "gallery item"@en ; + rdfs:range :File ; + prov:wasDerivedFrom . + +:gameArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A game artist is an artist who creates art for one or more types of games. Game artists are responsible for all of the aspects of game development that call for visual art."@en ; + rdfs:domain :VideoGame ; + rdfs:label "game artist"@en, "ゲームデザイナー"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:gameEngine + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :VideoGame ; + rdfs:label "Game Engine"@en, "ゲームエンジン"@ja ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P408 ; + prov:wasDerivedFrom . + +:gameModus + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Modus the game can be played in"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:games + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "Spiele"@de, "games"@en, "spil"@da, "αγώνες"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:garrison + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Garnison"@de, "garrison"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:gasChambers + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre ou description des chambres à gaz d'un camp de concentration"@fr, "Number or description of gas chambers of a ConcentrationCamp"@en ; + rdfs:domain :ConcentrationCamp ; + rdfs:label "chambres à gaz"@fr, "gas chambers"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:gaudiAward + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Awards of the Catalan Academy of Cinema"@en ; + rdfs:domain :Artist ; + rdfs:label "Gaudí Award"@en, "Premis Gaudí"@ca ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:gdpPerCapita + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Das nominale Bruttoinlandsprodukt eines Landes pro Einwohner."@de, "The nominal gross domestic product of a country per capita."@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Bruttoinlandsprodukt pro Einwohner"@de, "gross domestic product (GDP) per capita"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:geminiAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "Gemini Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:gender + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Geschlecht"@de, "gender"@en, "geslacht"@nl, "φύλο"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:geneLocation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Gene ; + rdfs:label "Gene Location"@en, "遺伝子座"@ja ; + rdfs:range :GeneLocation ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:geneLocationEnd + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the end of the gene"@en ; + rdfs:domain :GeneLocation ; + rdfs:label "gene location end"@en, "locus eindpunt"@nl, "遺伝子座のエンド座標"@ja ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:geneLocationStart + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the start of the gene coordinates"@en ; + rdfs:domain :GeneLocation ; + rdfs:label "gene location start"@en, "locus startpunt"@nl, "遺伝子座のスタート座標"@ja ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:geneReviewsId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "geneReviewsId"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:geneReviewsName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "geneReviewsName"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:generalCouncil + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "general council"@en ; + rdfs:range :TermOfOffice ; + prov:wasDerivedFrom . + +:generalManager + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsTeam ; + rdfs:label "Hauptgeschäftsführer"@de, "general manager"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P505 ; + prov:wasDerivedFrom . + +:generationUnits + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PowerStation ; + rdfs:label "generation units"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:genomeDB + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the edition of the database used (i.e. hg19)"@en ; + rdfs:domain :GeneLocation ; + rdfs:label "Genome DB"@en, "Genome DB"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:genre + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Genre de chose (groupe musical, film, etc.)"@fr, "The genre of the thing (music group, film, etc.)"@en ; + rdfs:label "Genre"@de, "gatunek"@pl, "genre"@en, "genre"@fr, "genre"@nl, "género"@es, "είδος"@el, "ዘውግ"@am, "ジャンル"@ja ; + rdfs:range :Genre ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty , wikidata:P136 ; + prov:wasDerivedFrom . + +:genus + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A rank in the classification of organisms, below family and above species; a taxon at that rank"@en, "Rang taxinomique (ou taxonomique) qui regroupe un ensemble d'espèces ayant en commun plusieurs caractères similaires."@fr ; + rdfs:domain :Species ; + rdfs:label "Gattung"@de, "genre (biologie)"@fr, "genus"@en, "geslacht"@nl, "género (biología)"@es, "属_(分類学)"@ja ; + rdfs:subPropertyOf dul:specializes ; + owl:equivalentProperty wikidata:P74 ; + prov:wasDerivedFrom . + +:geolocDepartment + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "geolocDepartment"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:geolocDual + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "geolocdual"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:geologicPeriod + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "geologic period"@en, "période géologique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:geology + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Geologie"@de, "geology"@en, "géologie"@fr, "γεωλογία"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:giniCoefficient + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "is a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth."@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Gini-Koeffizient"@de, "coeficiente de Gini"@pt, "gini coefficient"@en ; + rdfs:range xsd:float ; + owl:equivalentProperty wikidata:P1125 ; + prov:wasDerivedFrom . + +:giniCoefficientAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "coeficiente de Gini em"@pt, "gini coefficient as of"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:giniCoefficientCategory + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "categoria do coeficiente de Gini"@pt, "gini coefficient category"@en ; + prov:wasDerivedFrom . + +:giniCoefficientRanking + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gini coefficient ranking"@en, "posição no ranking do coeficiente de Gini"@pt ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:glycemicIndex + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Indicates a Food's effect on a person's blood glucose (blood sugar) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose"@en ; + rdfs:domain :Food ; + rdfs:label "glycemic index"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:gnisCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gnis code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:gnl + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gnl"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:goalsInLeague + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "Tore in der Liga"@de, "doelpunten in de competitie"@nl, "goals in league"@en, "リーグ得点"@ja ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:goalsInNationalTeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "Tore in der Nationalmannschaft"@de, "goals in national team"@en, "interland doelpunten"@nl, "代表得点"@ja ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:goldMedalDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "gold medal double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:goldMedalMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "gold medal mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:goldMedalSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "gold medal single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:goldMedalist + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsEvent ; + rdfs:label "Goldmedaillengewinner"@de, "gold medalist"@en, "gouden medaille drager"@nl, "medalha de ouro"@pt ; + rdfs:range :Person ; + rdfs:subPropertyOf :Medalist, dul:hasParticipant ; + prov:wasDerivedFrom . + +:goldenCalfAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "Golden Calf Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:goldenGlobeAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Golden Globe Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:goldenRaspberryAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "Golden Raspberry Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:governingBody + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Body that owns/operates the Place."@en ; + rdfs:domain :Place ; + rdfs:label "Verwaltungsgremium"@de, "bestuursorgaan"@nl, "governing body"@en ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:government + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "Regierung"@de, "gouvernement"@fr, "government"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:governmentCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "government country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:governmentElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "government elevation (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:governmentMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "government mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:governmentPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "government place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:governmentPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "government position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:governmentRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "government region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:governmentType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "broadly, the type of structure of its government"@en ; + rdfs:label "Staatsform"@de, "government type"@en, "staatsvorm"@nl, "tipo de governo"@pt, "የመንግስት ዓይነት"@am ; + rdfs:range :GovernmentType ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:governor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Gouverneur"@de, "gouverneur"@fr, "governor"@en, "κυβερνήτης"@el, "አገረ ገዥ"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:governorGeneral + a rdf:Property, owl:ObjectProperty ; + rdfs:label "governor general"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:governorate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "governorate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:goyaAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Goya Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:gradName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "GARDName"@de, "GARDName"@en, "GARDName"@fr, "GARDName"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:gradNum + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "GARDNum"@de, "GARDNum"@en, "GARDNum"@fr, "GARDNum"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:grades + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "grades"@en, "βαθμοί"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:grammyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Grammy Award"@de, "Grammy Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:grandsire + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Animal ; + rdfs:label "grandsire"@en ; + rdfs:range :Animal ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:grave + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Grab"@de, "graf"@nl, "grave"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:grayPage + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Refers to the famous 1918 edition of Gray's Anatomy."@en ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Gray page"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:graySubject + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Refers to the famous 1918 edition of Gray's Anatomy."@en ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Gray subject"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:greekName + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "griechische Name"@de, "name in ancient Greek"@en, "oudgriekse naam"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :Name ; + prov:wasDerivedFrom . + +:greenLongDistancePisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "green long distance piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:greenSkiPisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "green ski piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:gridReference + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "coördinaten"@nl, "grid reference"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:grindingCapability + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "grinding capability for Mills"@en ; + rdfs:domain :Mill ; + rdfs:label "grinding capability"@en, "maal capaciteit"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:gross + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "gross ($)"@en, "indtjening ($)"@da, "ακαθάριστα ($)"@el ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2139 ; + prov:wasDerivedFrom . + +:grossDomesticProduct + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Das nominale Bruttoinlandsprodukt eines Landes (nicht pro Einwohner)."@de, "The nominal gross domestic product of a country (not per capita)."@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Bruttoinlandsprodukt"@de, "gross domestic product (GDP)"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:grossDomesticProductAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gross domestic product as of"@en, "produto interno bruto em"@pt ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:grossDomesticProductNominalPerCapita + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gross domestic product nominal per capita"@en ; + rdfs:range :GrossDomesticProductPerCapita ; + prov:wasDerivedFrom . + +:grossDomesticProductPerPeople + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "gross domestic product per people"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:grossDomesticProductPurchasingPowerParityPerCapita + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "gross domestic product purchasing power parity per capita"@en ; + rdfs:range :GrossDomesticProductPerCapita ; + prov:wasDerivedFrom . + +:grossDomesticProductRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "gross domestic product rank"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ground + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "ground"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:groundsForLiquidation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "grounds for termination of activities"@en, "reden van opheffing"@nl ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:groupCommemorated + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Aanduiding van de categorie mensen die door dit monument worden herdacht"@nl, "Designates the category of people commemorated by a monument"@en ; + rdfs:domain :Monument ; + rdfs:label "groep mensen herdacht"@nl, "group commemorated"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:growingGrape + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WineRegion ; + rdfs:label "growing grape"@en ; + rdfs:range :Grape ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:guest + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionEpisode ; + rdfs:label "Gast"@de, "guest"@en, "επισκέπτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:gun + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Flugabwehrkanone"@de, "aircraft gun"@en, "Πολυβόλο"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:gymApparatus + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Fitnessgerät"@de, "gym apparatus"@en ; + prov:wasDerivedFrom . + +:hairColor + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Haarfarbe"@de, "cor do cabelo"@pt, "dath na gruaige"@ga, "hair color"@en, "kolor włosów"@pl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1884 ; + prov:wasDerivedFrom . + +:hairColour + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Haarfarbe"@de, "couleur des cheveux"@fr, "hair colour"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hairs + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "hairs"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hallOfFame + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "Ruhmeshalle"@de, "hall of fame"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hand + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Hand"@de, "hand"@en ; + prov:wasDerivedFrom . + +:handedness + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "an attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands."@en ; + rdfs:domain :Person ; + rdfs:label "habilidade com a mao"@pt, "handedness"@en ; + rdfs:subPropertyOf dul:hasQuality ; + owl:equivalentProperty wikidata:P552 ; + prov:wasDerivedFrom . + +:handisport + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "handisport"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hasAbsorbedMunicipality + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Municipality ; + rdfs:label "samengevoegde gemeente"@nl, "the previous municipality from which this one has been created or enlarged"@en ; + rdfs:range :FormerMunicipality ; + prov:wasDerivedFrom . + +:hasAnnotation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Document ; + rdfs:label "Indicates an annotation associated with this document"@en ; + rdfs:range :Annotation ; + prov:wasDerivedFrom . + +:hasChannel + a rdf:Property, owl:ObjectProperty ; + rdfs:label "has channel"@en ; + prov:wasDerivedFrom . + +:hasInput + a rdf:Property, owl:ObjectProperty ; + rdfs:label "has input"@en ; + prov:wasDerivedFrom . + +:hasInsidePlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated inside."@en, "indique un autre lieu situé à l'intérieur."@fr ; + rdfs:domain :Place ; + rdfs:label "a un lieu intérieur"@fr, "has inside place"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:hasJunctionWith + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Canal ; + rdfs:label "has junction with"@en, "σύνδεση"@el ; + rdfs:range :Canal ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:hasKMLData + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :File ; + rdfs:label "Has KML data associated with it (usually because of KML overlays)"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hasNaturalBust + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "has natural bust"@en, "tem busto natural"@pt ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hasOutsidePlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated around outside."@en, "indique un autre lieu situé autour à l'extérieur."@fr ; + rdfs:domain :Place ; + rdfs:label "a un lieu extérieur"@fr, "has outside place"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:hasSurfaceForm + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "επιφάνεια από"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hasVariant + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "variant or variation, for example all variations of a color"@en ; + rdfs:label "Variante oder Variation"@de, "variant of variatie"@nl, "variant or variation"@en ; + rdfs:subPropertyOf dul:isSpecializedBy ; + prov:wasDerivedFrom . + +:head + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "head"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:headAlloy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "head alloy"@en ; + rdfs:subPropertyOf dul:hasConstituent ; + prov:wasDerivedFrom . + +:headChef + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Restaurant ; + rdfs:label "Küchenchef"@de, "chef-kok"@nl, "head chef"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:headLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "head label"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:headOfFamily + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Family ; + rdfs:label "Familienoberhaupt"@de, "family head"@en, "hoofd van de familie"@nl ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:headquarter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Hauptsitz"@de, "ceanncheathrú"@ga, "headquarter"@en, "siedziba"@pl, "siège"@fr, "αρχηγείο"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P159 ; + prov:wasDerivedFrom . + +:headteacher + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "Schulleiter"@de, "head teacher"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:height + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Höhe (μ)"@de, "altura (μ)"@pt, "hauteur (μ)"@fr, "height (μ)"@en, "hoogte (μ)"@nl, "højde (μ)"@da, "višina (μ)"@sl, "ύψος (μ)"@el, "身長 (μ)"@ja ; + rdfs:range xsd:double ; + owl:equivalentProperty , wikidata:P2048 ; + prov:wasDerivedFrom . + +:heightAboveAverageTerrain + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "height above average terrain (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:heightAgainst + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "height against"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:heightAttack + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "height attack"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:heir + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Monarch ; + rdfs:label "Erbe"@de, "heir"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:heisman + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "heisman"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:heritageRegister + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "inscrit à un inventaires dédiés à la conservation du patrimoine, naturel ou culturel, existants dans le monde."@fr, "registered in a heritage register : inventory of cultural properties, natural and man-made, tangible and intangible, movable and immovable, that are deemed to be of sufficient heritage value to be separately identified and recorded."@en ; + rdfs:domain :Place ; + rdfs:label "heritage register"@en, "inventaire du patrimoine"@fr ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:hgncid + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "HGNCid"@en, "HGNCid"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:highest + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Der höchste Berg eines Gebirges."@de, "The highest mountain of a mountain range."@en ; + rdfs:domain :MountainRange ; + rdfs:label "highest"@en, "höchster"@de ; + rdfs:range :Mountain ; + prov:wasDerivedFrom . + +:highestAltitude + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "highest altitude"@en, "最高地点標高"@ja ; + rdfs:range :Altitude ; + rdfs:subPropertyOf :altitude ; + prov:wasDerivedFrom . + +:highestBreak + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "Höchstes Break"@de, "highest break"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:highestBuildingInYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Skyscraper ; + rdfs:label "highest building in year"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:highestMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:label "highest mountain"@en, "höchster Berg"@de ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:highestPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:label "highest place"@en, "höchster Platz"@de ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:highestPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "highest point"@en, "höchste Erhebung"@de, "υψηλότερο σημείο"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P610 ; + prov:wasDerivedFrom . + +:highestPointIsland + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "highest point of the island"@en, "höchste Erhebung der Insel"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:highestPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Höchststand"@de, "highest position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:highestRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "highest rank"@en, "höchster Ranglistenplatz"@de ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:highestRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "highest region"@en, "hoogste regio"@nl ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:highestState + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "highest state"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:highschool + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Gymnasium"@de, "highschool"@en ; + rdfs:range :School ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:highwaySystem + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the highway system that a route is part of"@en ; + rdfs:domain :Road ; + rdfs:label "highway system"@en ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P16 ; + prov:wasDerivedFrom . + +:hipSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Hüftumfang (μ)"@de, "heupomvang (μ)"@nl, "hip size (μ)"@en, "ヒップ (μ)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:historicalMap + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "historical map"@en, "historische Karte"@de, "ιστορικός χάρτης"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:historicalName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "historical name"@en, "historischer Name"@de ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:historicalRegion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "historical region"@en, "historische Region"@de, "région historique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "hof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:homage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Huldigung"@de, "eerbetoon"@nl, "homage"@en, "page d'accueil"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:homeArena + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Heimarena"@de, "home arena"@en ; + rdfs:range :Arena ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:homeColourHexCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)."@en ; + rdfs:label "Farben Hex Code des Heimtrikots oder Teile dieses"@de, "colour hex code of home jersey or its parts"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :colourHexCode ; + prov:wasDerivedFrom . + +:homeStadium + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Heimstadion"@de, "home stadium"@en ; + rdfs:range :Stadium ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:homeport + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Ship ; + rdfs:label "homeport"@en, "port macierzysty"@pl ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P504 ; + prov:wasDerivedFrom . + +:hometown + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "Heimatort"@de, "home town"@en ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:honours + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Honours bestowed upon a Person, Organization, RaceHorse, etc"@en ; + rdfs:label "Ehrungen"@de, "eerbewijzen"@nl, "honours"@en, "διακρίσεις"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:hopmanCup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "hopman cup"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:horseRidingDiscipline + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "horse riding discipline"@en ; + rdfs:range :Sport ; + prov:wasDerivedFrom . + +:house + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Legislature ; + rdfs:label "house"@en, "maison"@fr, "σπίτι"@el ; + rdfs:range :Legislature ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:hraState + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "hra state"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:hsvCoordinateHue + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "hue coordinate in the HSV colour space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:hsvCoordinateSaturation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "saturation coordinate in the HSV colour space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:hsvCoordinateValue + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "value coordinate in the HSV colour space"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:hubAirport + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Airline ; + rdfs:label "hub airport"@en ; + rdfs:range :Airport ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:humanDevelopmentIndex + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "a composite statistic used to rank countries by level of \"human development\""@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Human Development Index (HDI)"@en, "Index für menschliche Entwicklung (HDI)"@de, "Índice de Desenvolvimento Humano (IDH)"@pt ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:humanDevelopmentIndexAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "human development index as of"@en, "Índice de desenvolvimento humano em"@pt ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:humanDevelopmentIndexRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "human development index rank"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:humanDevelopmentIndexRankingCategory + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "categoria do indice de desenvolvimento humano (IDH)"@pt, "human development index (HDI) category"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:hybrid + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Plants from which another plant (or cultivar) has been developed from"@en ; + rdfs:domain :Plant ; + rdfs:label "hybrid"@en ; + rdfs:range :Plant ; + rdfs:subPropertyOf dul:isSpecializedBy ; + prov:wasDerivedFrom . + +:iafdId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "código no iafd"@pt, "iafd id"@el, "iafd id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:iataAirlineCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "IATA designation for airline companies"@en ; + rdfs:domain :Airline ; + rdfs:label "IATA code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P229 ; + prov:wasDerivedFrom . + +:iataLocationIdentifier + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "IATA Location Identifier"@en, "ΙΑΤΑ"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P238 ; + prov:wasDerivedFrom . + +:ibdbId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The Internet Broadway Database ID (IBDB ID) from ibdb.com."@en ; + rdfs:domain :Play ; + rdfs:label "IBDB ID"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:icaoAirlineCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ICAO designation for airline companies"@en ; + rdfs:domain :Airline ; + rdfs:label "ICAO code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P230 ; + prov:wasDerivedFrom . + +:icaoLocationIdentifier + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "ICAO Location Identifier"@en, "ΙΚΑΟ"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P239 ; + prov:wasDerivedFrom . + +:icd1 + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "ICD1"@de, "ICD1"@en, "ICD1"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:icd10 + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "ICD10"@en, "ICD10"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P494 ; + prov:wasDerivedFrom . + +:icd9 + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "ICD9"@de, "ICD9"@en, "ICD9"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P493 ; + prov:wasDerivedFrom . + +:icdo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "ICDO"@en, "ICDO"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:iconographicAttributes + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Standard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments"@en ; + rdfs:domain :Saint ; + rdfs:label "iconographic attributes"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:id + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WorldHeritageSite ; + rdfs:label "id"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:idAllocine + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ID d'un film sur Allocine"@fr, "ID of a film on Allocine"@en ; + rdfs:domain :Film ; + rdfs:label "Allocine ID"@en, "ID Allocine"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:idNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "id number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:identificationSymbol + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "identification symbol"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ideology + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "Ideologie"@de, "ideologia"@pt, "ideologie"@nl, "ideology"@en, "ιδεολογία"@el ; + rdfs:range :Ideology ; + rdfs:subPropertyOf dul:conceptualizes ; + owl:equivalentProperty wikidata:P1142 ; + prov:wasDerivedFrom . + +:iftaAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "IFTA Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:iihfHof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "lihf hof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:illiteracy + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Analphabetismus"@de, "analfabetismo"@pt, "illiteracy"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:illustrator + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Illustrator (where used throughout and a major feature)"@en ; + rdfs:domain :WrittenWork ; + rdfs:label "Illustrator"@de, "illustrateur"@fr, "illustrator"@en, "illustrator"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , wikidata:P110 ; + prov:wasDerivedFrom . + +:image + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "image"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:imageSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the image size expressed in pixels"@en, "የሥዕል ወይም የምስል ስፋት መጠን በፒክሰሎች ተገልጾ።"@am ; + rdfs:label "Bildgröße (px)"@de, "afbeeldingsgrootte (px)"@nl, "image size (px)"@en, "taille de l'image (px)"@fr, "tamaño de la imagen (px)"@es, "μέγεθος εικόνας (px1)"@el, "የምስል ስፋት መጠን(px)"@am, "イメージサイズ (px2)"@ja ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:imdbId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "International Movie Database ID. Applies to Films, Actors, etc"@en ; + rdfs:label "IMDB id"@en, "IMDB id"@nl, "IMDb id"@ja, "imdb id"@el ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P345 ; + prov:wasDerivedFrom . + +:impactFactor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Der Impact Factor oder genauer Journal Impact Factor (JIF) einer Fachzeitschrift soll messen, wie oft andere Zeitschriften einen Artikel aus ihr in Relation zur Gesamtzahl der dort veröffentlichten Artikel zitieren. Je höher der Impact Factor, desto angesehener ist eine Fachzeitschrift."@de, "The impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals."@en ; + rdfs:domain :AcademicJournal ; + rdfs:label "Impact Factor"@de, "impact factor"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:impactFactorAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Census year of the imapct factor."@en, "Erhebungsjahr des Impact Factors."@de ; + rdfs:domain :AcademicJournal ; + rdfs:label "Impact Factor ist von"@de, "impact factor as of"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:importantStation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Destinations, depots, junctions, major stops, hubs..."@en ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "important nœud d'échanges"@fr, "important station"@en, "wichtiger Verkehrsknotenpunkt"@de ; + rdfs:range :Station ; + prov:wasDerivedFrom . + +:imposedDanseCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "imposed danse competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:imposedDanseScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "imposed danse score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:inCemetery + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GraveMonument ; + rdfs:label "in cemetery"@en, "op kerkhof"@nl ; + rdfs:range :Cemetery ; + prov:wasDerivedFrom . + +:inchi + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalCompound ; + rdfs:label "IUPAC internationale chemische identifier"@nl, "Internationale chemische Bezeichnung der IUPAC"@de, "The IUPAC International Chemical Identifier"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:inclination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "inclination"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:income + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Einkommen"@de, "income"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:incumbent + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Amtsinhaber"@de, "incumbent"@en, "plaatsbekleder"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:individualisedGnd + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "GND (Gemeinsame Normdatei) is an international authority file for the organisation of personal names, subject headings and corporate bodies from catalogues. It is used mainly for documentation in libraries and archives. The GND is managed by the German National Library in cooperation with various library networks. The GND falls under the Creative Commons Zero(CC0) license."@en ; + rdfs:label "Gemeinsame Normdatei"@de, "individualised GND number"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P227, ; + prov:wasDerivedFrom . + +:individualisedPnd + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "PND (Personennamendatei) data about a person. PND is published by the German National Library. For each person there is a record with her/his name, birth and occupation connected with a unique identifier, the PND number."@en ; + rdfs:domain :Person ; + rdfs:label "Personennamendatei"@de, "individualised PND number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:industry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Company ; + rdfs:label "Industrie"@de, "industrie"@fr, "industry"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty wikidata:P452 ; + prov:wasDerivedFrom . + +:infantMortality + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Säuglingssterblichkeit"@de, "infant mortality"@en, "mortalidade infantil"@pt, "mortalité infantile"@fr ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:inflow + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :BodyOfWater ; + rdfs:label "Zufluss"@de, "inflow"@en, "εισροή"@el ; + rdfs:range :BodyOfWater ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + owl:equivalentProperty wikidata:P200 ; + prov:wasDerivedFrom . + +:influenced + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works (eg ProgrammingLanguage)"@en ; + rdfs:label "a influencé"@fr, "beeinflusst"@de, "influenced"@en, "επηρέασε"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:influencedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works (eg ProgrammingLanguage)"@en ; + rdfs:label "beeinflusst durch"@de, "beïnvloed door"@nl, "influenced by"@en, "influencé par"@fr, "επιρροές"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:information + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Informationen"@de, "information"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:informationName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "information name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ingredient + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Ingrédient principal utilisé pour préparer une alimentation spécifique ou une boisson. Pour les chaînes de caractères, utiliser ingredientName, pour les objets utiliser ingredient."@fr, "Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient."@en ; + rdfs:domain :Food ; + rdfs:label "Zutat"@de, "ingredient"@en, "ingrédient"@fr ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:ingredientName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient."@en ; + rdfs:domain :Food ; + rdfs:label "ingredient name (literal)"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:initiallyUsedFor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Initial use of the architectural structure."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "anfänglich verwendet"@de, "initally used for"@en, "usage initial"@fr, "uso inicial"@es ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:inn + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "International Nonproprietary Name given to a pharmaceutical substance"@en ; + rdfs:domain :ChemicalCompound ; + rdfs:label "DCI"@fr, "INN"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:innervates + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Nerve ; + rdfs:label "innervates"@en ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:inscription + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Text of an inscription on the object"@en ; + rdfs:label "inscription"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:inseeCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "numerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities"@en ; + rdfs:domain :Settlement ; + rdfs:label "INSEE code"@en, "INSEE-code"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :codeSettlement ; + owl:equivalentProperty wikidata:P374 ; + prov:wasDerivedFrom . + +:installedCapacity + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :PowerStation ; + rdfs:label "installed capacity (W)"@en ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2109 ; + prov:wasDerivedFrom . + +:institution + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Institution"@de, "institutie"@nl, "institution"@en ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:instrument + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Instrument"@de, "instrument"@en, "instrument"@nl, "όργανο"@el ; + rdfs:range :Instrument ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P1303 ; + prov:wasDerivedFrom . + +:intercommunality + a rdf:Property, owl:ObjectProperty ; + rdfs:label "intercommunality"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:interest + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SiteOfSpecialScientificInterest ; + rdfs:label "Interesse"@de, "interest"@en, "ενδιαφέρον"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:internationalAffiliation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "afiliacao internacional"@pt, "international affiliation"@en ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:internationalPhonePrefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "international phone prefix"@en, "internationale Vorwahl"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:internationalPhonePrefixLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "international phone prefix label"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:internationally + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "international"@de, "internationally"@en ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:introduced + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "eingeführt"@de, "introduced"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:introductionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Einführungsdatum"@de, "introduction date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:iobdbId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Lortel Archives Internet Off-Broadway database \"show id\" from lortel.org."@en ; + rdfs:domain :Play ; + rdfs:label "IOBDB ID"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:isCityState + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "is a city state"@en, "ist ein Stadtstaat"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:isHandicappedAccessible + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "True if the station is handicapped accessible."@en, "Vrai si la station est accessible aux handicapés."@fr ; + rdfs:domain :Station ; + rdfs:label "accessible aux handicapés"@fr, "is handicapped accessible"@en, "ist rollstuhlgerecht"@de ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:isMinorRevision + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Proprieté utilisée dans le cadre de DBpedia Historique"@fr, "This property is used by DBpedia History"@en ; + rdfs:domain ; + rdfs:label "Est une révision mineur"@fr, "Is a minor revision"@en ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:isPartOf + a rdf:Property, owl:ObjectProperty ; + rdfs:label "es parte de"@es, "fait partie de"@fr, "is part of"@en, "ist ein Teil von"@de, "jest częścią"@pl ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty , wikidata:P361 ; + prov:wasDerivedFrom . + +:isPartOfAnatomicalStructure + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Brain ; + rdfs:label "es parte de una estructura anatómica"@es, "is part of anatomical structure"@en, "ist ein Teil von anatomischer Struktur"@de ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf :isPartOf, dul:isPartOf ; + prov:wasDerivedFrom . + +:isPartOfMilitaryConflict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryConflict ; + rdfs:label "is part of military conflict"@en, "ist Teil des militärischen Konflikts"@de ; + rdfs:range :MilitaryConflict ; + rdfs:subPropertyOf :isPartOf, dul:isPartOf ; + prov:wasDerivedFrom . + +:isPartOfName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name of another thing that this thing is part of. Use for infobox \"part of\" properties given as text; for objects use isPartOf"@en ; + rdfs:label "is part of (literal)"@en, "ist Teil"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:isPartOfWineRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WineRegion ; + rdfs:label "is part of wine region"@en, "ist ein Teil der Weinregion"@de ; + rdfs:range :WineRegion ; + rdfs:subPropertyOf :isPartOf, dul:isPartOf ; + prov:wasDerivedFrom . + +:isPeerReviewed + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "In academia peer review is often used to determine an academic papers suitability for publication."@en ; + rdfs:domain :AcademicJournal ; + rdfs:label "is peer reviewed"@en ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:isRouteStop + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicate a place is a stop on a road."@en, "indique qu'un lieu est un arrêt sur une route."@fr ; + rdfs:domain :Place ; + rdfs:label "est un arrêt"@fr, "is route stop"@en ; + rdfs:range :RouteStop ; + prov:wasDerivedFrom . + +:isbn + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "ISBN"@en, "ISBN"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty , wikidata:P212, wikidata:P957 ; + prov:wasDerivedFrom . + +:isil + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Library ; + rdfs:label "International Standard Identifier for Libraries and Related Organizations (ISIL)"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P791 ; + prov:wasDerivedFrom . + +:island + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :BodyOfWater ; + rdfs:label "Insel"@de, "island"@en, "νησιά"@el ; + rdfs:range :Island ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:isniId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "ISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles."@en ; + rdfs:label "ISNI Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P213 ; + prov:wasDerivedFrom . + +:iso31661Code + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "defines codes for the names of countries, dependent territories, and special areas of geographical interest"@en ; + rdfs:domain :Place ; + rdfs:label "ISO 3166-1 code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P297, wikidata:P298, wikidata:P299 ; + prov:wasDerivedFrom . + +:iso6391Code + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Language ; + rdfs:label "ISO 639-1 code"@en, "ISO 639-1 code"@nl, "kod ISO 639-1"@pl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :LanguageCode ; + owl:equivalentProperty wikidata:P218 ; + prov:wasDerivedFrom . + +:iso6392Code + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Language ; + rdfs:label "ISO 639-2 code"@en, "ISO 639-2 code"@nl, "kod ISO 639-2"@pl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :LanguageCode ; + owl:equivalentProperty wikidata:P219 ; + prov:wasDerivedFrom . + +:iso6393Code + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Language ; + rdfs:label "ISO 639-3 code"@en, "ISO 639-3 code"@nl, "kod ISO 639-3"@pl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :LanguageCode ; + owl:equivalentProperty wikidata:P220 ; + prov:wasDerivedFrom . + +:isoCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "ISO-Code eines Ortes"@de, "iso code of a place"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:isoCodeRegion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "ISO regiocode"@nl, "ISO region code"@en, "ISO-Ländercode"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:issDockings + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "iss dockings"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:issn + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "International Standard Serial Number (ISSN)"@en ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "ISSN"@de, "ISSN"@ga, "ISSN"@nl, "ISSN"@pl, "issn"@el, "issn"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ist + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "ist"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:istat + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Indexing code used for Italian municipalities"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "code istat"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P635 ; + prov:wasDerivedFrom . + +:italicTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Controls whether the title of the article is shown in italics."@en, "Indique si le titre de l'article doit être en italique. Valeur oui / non"@fr ; + rdfs:domain :MusicalWork ; + rdfs:label "italic title"@en, "titre en italique"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ithfDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "ithf date"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:iucnCategory + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ProtectedArea ; + rdfs:label "IUCN categorie"@nl, "iucn category"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:iupacName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Drug ; + rdfs:label "IUPAC name"@en, "IUPAC名"@ja ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:jockey + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Horse ; + rdfs:label "Jockey"@de, "jockey"@en ; + rdfs:range :Jockey ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:jointCommunity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "joint community"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:jstor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "JSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals."@en ; + rdfs:domain :AcademicJournal ; + rdfs:label "JSTOR"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:judge + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "leading judge"@en ; + rdfs:domain :LegalCase ; + rdfs:label "Richter"@de, "judge"@en, "rechter"@nl ; + rdfs:range :Judge ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:juniorSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "junior season"@en ; + prov:wasDerivedFrom . + +:juniorTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "junior team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:juniorYearsEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "junior years end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:juniorYearsStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "junior years start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:jureLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:label "jure language"@en ; + rdfs:range :Language ; + prov:wasDerivedFrom . + +:jurisdiction + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Die Zuständigkeit oder Kompetenz legt im öffentlichen Recht fest, welche Behörde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln ermächtigt und verpflichtet ist."@de, "Jurisdiction is the practical authority granted to a formally constituted legal body or to a political leader to deal with and make pronouncements on legal matters and, by implication, to administer justice within a defined area of responsibility."@en ; + rdfs:label "Zuständigkeit"@de, "jurisdiction"@en ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:jutsu + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "jutsu"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kegg + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Bioinformatics resource for deciphering the genome."@en ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "KEGG"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:keyPerson + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Schlüsselperson"@de, "key person"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:khlDraft + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "khl draft year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:khlDraftTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "khl draft team"@en ; + rdfs:range :HockeyTeam ; + prov:wasDerivedFrom . + +:khlDraftYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "khl draft year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:killedBy + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "getötet von"@de, "killed by"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P157 ; + prov:wasDerivedFrom . + +:kinOfLanguage + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "kindOfLanguage"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kindOfCoordinate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "kind of coordinate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kindOfCriminal + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Criminal ; + rdfs:label "kind of criminal"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kindOfCriminalAction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Criminal ; + rdfs:label "kind of criminal action"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kindOfRock + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Art von Gestein"@de, "kind of rock"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:kingdom + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "In biology, kingdom (Latin: regnum, pl. regna) is a taxonomic rank, which is either the highest rank or in the more recent three-domain system, the rank below domain."@en, "Le règne (du latin « regnum ») est, dans les taxinomies classiques, le plus haut niveau de classification des êtres vivants, en raison de leurs caractères communs."@fr ; + rdfs:domain :Species ; + rdfs:label "kingdom"@en, "regno"@it, "reich"@de, "rijk"@nl, "règne (biologie)"@fr, "βασίλειο"@el, "界_(分類学)"@ja ; + rdfs:subPropertyOf dul:specializes ; + owl:equivalentProperty wikidata:P75 ; + prov:wasDerivedFrom . + +:knownFor + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Oeuvre, événement historique, etc pour lequel le sujet est connu. S'applique aux personnes, organisations, camps de concentration, etc"@fr, "Work, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etc"@en ; + rdfs:label "bekannt für"@de, "bekend om"@nl, "connu pour"@fr, "conocido por"@es, "known for"@en, "znany z powodu"@pl, "γνωστός_για"@el ; + rdfs:subPropertyOf dul:isDescribedBy ; + prov:wasDerivedFrom . + +:ko + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "ko"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:lahHof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "lah hof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lake + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "vastest lake"@en, "λίμνη"@el ; + rdfs:range :BodyOfWater ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:land + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "land"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:landArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area of a land (m2)"@en ; + rdfs:range xsd:double ; + owl:equivalentProperty :area ; + prov:wasDerivedFrom . + +:landPercentage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "land percentage of a place"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:landRegistryCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "land registry code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:landeshauptmann + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "landeshauptmann"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:landingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Landedatum"@de, "landing date"@en ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P620 ; + prov:wasDerivedFrom . + +:landingSite + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Landeplatz"@de, "landing site"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:landingVehicle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "landing vehicle"@en ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:landskap + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :NorwaySettlement ; + rdfs:label "norwegian landskap"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:landtag + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "austrian land tag"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:landtagMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "austrian land tag mandate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:language + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Use dc:language for literal, language for object"@en ; + rdfs:label "Sprache"@de, "język"@pl, "language"@en, "langue"@fr, "lingua"@gl, "língua"@pt, "taal"@nl, "teanga"@ga, "γλώσσα"@el, "ቋንቋ"@am ; + rdfs:range :Language ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:languageCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Language ; + rdfs:label "Sprachcode"@de, "kod językowy"@pl, "language code"@en, "የቋንቋ ኮድ"@am ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:languageFamily + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Language ; + rdfs:label "Familie"@de, "family"@en, "rodzina"@pl, "taalfamilie"@nl, "የቋንቋ ቤተሰብ"@am ; + rdfs:subPropertyOf dul:specializes ; + prov:wasDerivedFrom . + +:languageRegulator + a rdf:Property, owl:ObjectProperty ; + rdfs:label "language regulator or academy"@en, "taal instituut"@nl ; + rdfs:range :Language ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:largestCity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "größte Stadt"@de, "largest city"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:largestMetro + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "largest metro"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:largestSettlement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "grootste plaats"@nl, "größte Siedlung"@de, "largest settlement"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:largestWin + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "largest win"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lastAirDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The date on which the broadcaster made its last broadcast."@en ; + rdfs:domain :Broadcaster ; + rdfs:label "Sendeschluss"@de, "last air date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastAppearance + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "last appearance"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:lastElectionDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The last election date for the house."@en ; + rdfs:domain :Legislature ; + rdfs:label "last election date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastFamilyMember + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Family ; + rdfs:label "laatste drager familienaam"@nl, "last family member"@en, "letztes Familienmitglied"@de ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:lastFlight + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "last flight"@en, "letzter Flug"@de ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:lastFlightEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "last flight end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastFlightStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "last flight start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastLaunch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "last launch"@en, "letzter Start"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastLaunchDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "last launch date"@en, "letzter Starttermin"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastLaunchRocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "last launch rocket"@en ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:lastPosition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "last position"@en, "τελευταία θέση"@el ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:lastProMatch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "dernier match professionnel"@fr, "erstes Profispiel"@de, "last pro match"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lastPublicationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of the last publication."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "last publication date"@en, "letztes Veröffentlichungsdatum"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastRace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "last race"@en, "letztes Rennen"@de, "τελευταίος αγώνας"@el ; + rdfs:range :GrandPrix ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:lastSeason + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "last season"@en, "Προηγούμενη Περίοδος"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:lastWin + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "last win"@en, "letzter Sieg"@de, "τελευταία νίκη"@el ; + rdfs:range :GrandPrix ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:laterality + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "laterality"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:latestElection + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "date of latest election"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:latestPreviewDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Software ; + rdfs:label "latest preview date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:latestPreviewVersion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Software ; + rdfs:label "latest preview version"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:latestReleaseDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Software ; + rdfs:label "date de dernière version"@fr, "latest release date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:latestReleaseVersion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Software ; + rdfs:label "latest release version"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:latinName + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "lateinische Name"@de, "latijnse naam"@nl, "name in latin"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :Name ; + prov:wasDerivedFrom . + +:launch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "launch"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:launchDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Starttermin"@de, "launch date"@en ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P619 ; + prov:wasDerivedFrom . + +:launchPad + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Startrampe"@de, "launch pad"@en ; + rdfs:range :LaunchPad ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:launchSite + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Startplatz"@de, "launch site"@en ; + rdfs:range :Building ; + rdfs:subPropertyOf dul:hasParticipant ; + owl:equivalentProperty wikidata:P448 ; + prov:wasDerivedFrom . + +:launchVehicle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "launch vehicle"@en ; + rdfs:subPropertyOf dul:hasParticipant ; + owl:equivalentProperty wikidata:P375 ; + prov:wasDerivedFrom . + +:launches + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:laurenceOlivierAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "Laurence Olivier Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:lawCountry + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "law country"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:layingDown + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "laying down"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:layout + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Automobile ; + rdfs:label "layout"@en ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:lcc + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "LCC"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lccn + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The Library of Congress Control Number or LCCN is a serially based system of numbering cataloging records in the Library of Congress in the United States. It has nothing to do with the contents of any book, and should not be confused with Library of Congress Classification."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "LCCN"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lccnId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Library of Congress Control Number"@en ; + rdfs:label "LCCN Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P244 ; + prov:wasDerivedFrom . + +:lchfDraft + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "lchf draft year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lchfDraftTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "lchf draft team"@en ; + rdfs:range :HockeyTeam ; + prov:wasDerivedFrom . + +:lchfDraftYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "lchf draft year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:leadTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "lead team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:leadYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "lead year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:leader + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Führer"@de, "leader"@en, "leider"@nl, "lider"@pt, "ηγέτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:leaderFunction + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "leaderFunction"@en ; + rdfs:range :PersonFunction ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:leaderName + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "leader name"@en, "naam leider"@nl, "président"@fr, "όνομα_αρχηγού"@el, "शासक का नाम"@hi, "የመሪ ስም"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:leaderParty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Regierungspartei"@de, "leader party"@en, "partido do lider"@pt, "regeringspartij"@nl, "κόμμα_αρχηγού"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:leaderTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "leader title"@en, "τίτλος_αρχηγού"@el, "शासक पद"@hi, "የመሪ ማዕረግ"@am ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:leadership + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Führung"@de, "leadership"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:league + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Liga"@de, "league"@en, "ligue"@fr, "πρωτάθλημα"@el, "ሊግ"@am ; + rdfs:range :SportsLeague ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P118 ; + prov:wasDerivedFrom . + +:leagueManager + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "league manager"@en ; + rdfs:range :SportsLeague ; + prov:wasDerivedFrom . + +:leftChild + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "left child"@en ; + rdfs:range :Island ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:leftTributary + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "left tributary"@en, "linker Nebenfluss"@de, "αριστεροί_παραπόταμοι"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:legalArrondissement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BelgiumSettlement ; + rdfs:label "legal arrondissement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:legalArticle + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "article in code book or statute book referred to in this legal case"@en ; + rdfs:domain :LegalCase ; + rdfs:label "legal article"@en, "wetsartikel"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:legalForm + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens."@de, "There are many types of business entity defined in the legal systems of various countries. These include corporations, cooperatives, partnerships, sole traders, limited liability company and other specialized types of organization."@en ; + rdfs:domain :Organisation ; + rdfs:label "Rechtsform"@de, "legal form"@en, "rechtsvorm"@nl ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:legislativePeriodName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The term of the on-going session (e.g.: \"40th Canadian Parliament\")."@en ; + rdfs:domain :Legislature ; + rdfs:label "Name in der Legislaturperiode"@de, "legislative period name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:legislature + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Gesetzgeber"@de, "legislature"@en ; + rdfs:range :Legislature ; + prov:wasDerivedFrom . + +:length + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Länge (μ)"@de, "lengte (μ)"@nl, "length (μ)"@en, "longueur (μ)"@fr, "μήκος (μ)"@el, "ርዝመት (μ)"@am ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2043 ; + prov:wasDerivedFrom . + +:lengthQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "length quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lengthReference + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "length reference"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lethalOnChickens + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "dodelijk voor kippen"@nl, "lethal when given to chickens"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lethalOnMice + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "dodelijk voor muizen"@nl, "lethal when given to mice"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lethalOnRabbits + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "dodelijk voor konijnen"@nl, "lethal when given to rabbits"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lethalOnRats + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "dodelijk voor ratten"@nl, "lethal when given to rats"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:liberationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ConcentrationCamp ; + rdfs:label "date of liberation"@en, "datum bevrijding"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:libretto + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Opera ; + rdfs:label "libretto"@en, "libretto"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:licenceLetter + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GermanSettlement ; + rdfs:label "licence letter of a german settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:licenceNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "licence number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:licenceNumberLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "licence number label"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:license + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "Lizenz"@de, "licence"@fr, "license"@en, "licentie"@nl, "άδεια"@el ; + rdfs:subPropertyOf dul:isDescribedBy ; + owl:equivalentProperty , wikidata:P275 ; + prov:wasDerivedFrom . + +:licensee + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Identify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting)."@en ; + rdfs:label "Lizenzinhaber"@de, "licensee"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lieutenancy + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "lieutenancy"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lieutenancyArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Lieutenancy area"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:lieutenant + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Leutnant"@de, "lieutenant"@en, "lieutenant"@fr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:lifeExpectancy + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Lebenserwartung"@de, "expectativa de vida"@pt, "life expectancy"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:limit + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "limit"@en, "limite"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lineLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Length of the line. Wikipedians usually do not differentiate between track length and line lenght."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Linienlänge (μ)"@de, "line length (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:linguisticsTradition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "linguistics tradition"@en ; + prov:wasDerivedFrom . + +:linkedSpace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "linked space"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:linkedTo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SkiResort ; + rdfs:label "linked to"@en, "verknüpft"@de ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:listItemOf + a rdf:Property, owl:ObjectProperty ; + rdfs:label "lijst items"@nl, "list item"@en, "αντικείμενο λίστας"@el ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:literaryGenre + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A literary genre is a category of literary composition. Genres may be determined by literary technique, tone, content, or even (as in the case of fiction) length."@en, "Un genre littéraire est une catégorie de composition littéraire. Les genres peuvent être déterminés par la technique littéraire employée, le ton, le contenu, ou même (comme dans le cas des fictions) la longueur."@fr ; + rdfs:domain :WrittenWork ; + rdfs:label "genre littéraire"@fr, "literair genre"@nl, "literarische Gattung"@de, "literary genre"@en ; + rdfs:subPropertyOf :genre, dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:littlePoolRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "little pool record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:livingPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "livingPlace"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:loadLimit + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Load limit of the bridge."@en ; + rdfs:domain :Bridge ; + rdfs:label "Belastungsgrenze (g)"@de, "load limit (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:localAuthority + a rdf:Property, owl:ObjectProperty ; + rdfs:label "local authority"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:localPhonePrefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "local phone prefix"@en, "lokale Vorwahl"@de ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:locality + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "locality of a switzerland settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:localization + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "localization of the island"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:localizationThumbnail + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "thumbnail localization"@en ; + rdfs:subPropertyOf dul:isExpressedBy ; + prov:wasDerivedFrom . + +:localizationThumbnailCaption + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "legend thumbnail localization"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:locatedInArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "landstreek"@nl, "located in area"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty , wikidata:P131 ; + prov:wasDerivedFrom . + +:location + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The location of the thing."@en ; + rdfs:label "Standort"@de, "emplacement"@fr, "localização"@pt, "locatie"@nl, "location"@en, "lokalizacja"@pl, "τοποθεσία"@el, "所在地"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:locationCity + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "City the thing is located."@en ; + rdfs:domain :Organisation ; + rdfs:label "locatie stad"@nl, "location city"@en, "ville"@fr ; + rdfs:range :City ; + rdfs:subPropertyOf :location, dul:hasLocation ; + prov:wasDerivedFrom . + +:locationCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Country the thing is located."@en ; + rdfs:label "país de localização"@pt, "państwo"@en, "Χώρα"@el ; + rdfs:range :Country ; + rdfs:subPropertyOf :location, dul:hasLocation ; + prov:wasDerivedFrom . + +:locationIdentifier + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "Location Identifier"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:locationName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Location of the thing as string. Use \"location\" if the location is a resource"@en ; + rdfs:label "locationName"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:locomotive + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Train ; + rdfs:label "locomotief"@nl, "locomotive"@en ; + rdfs:range :Locomotive ; + prov:wasDerivedFrom . + +:locusSupplementaryData + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Protein ; + rdfs:label "locus supplementary data"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:logo + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "logo"@en, "logo"@fr, "logo"@nl, "λογότυπο"@el, "አርማ"@am ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:longDistancePisteKilometre + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "long distance piste kilometre (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:longDistancePisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "long distance piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:longName + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "longName"@en, "volledige naam"@nl ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:longtype + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "can be used to include more informations e.g. the name of the artist that a tribute album is in honor of"@en ; + rdfs:domain :Album ; + rdfs:label "longtype"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lounge + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Airline ; + rdfs:label "lounge"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:lowerAge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "lower age"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:lowerEarthOrbitPayload + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Payload mass in a typical Low Earth orbit"@en ; + rdfs:domain :Rocket ; + rdfs:label "lower earth orbit payload (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:lowest + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "lowest"@en, "χαμηλότερο"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lowestAltitude + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "lowest altitude"@en, "最低地点標高"@ja ; + rdfs:range :Altitude ; + rdfs:subPropertyOf :altitude ; + prov:wasDerivedFrom . + +:lowestMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "lowest mountain"@en, "montagne la plus basse"@fr, "χαμηλώτερο βουνό"@el ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:lowestPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "lieu le plus bas"@fr, "lowest place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:lowestPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "lowest point"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:lowestPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "lowest position"@en, "position la plus basse"@fr ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:lowestRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "lowest region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:lowestState + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "lowest state"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:lunarEvaTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar EVA time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:lunarLandingSite + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar landing site"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lunarModule + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Mondfähre"@de, "lunar module"@en, "module lunaire"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:lunarOrbitTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Mondumlaufzeit (s)"@de, "lunar orbit time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:lunarRover + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Mondfahrzeug"@de, "lunar rover"@en ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:lunarSampleMass + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar sample mass (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:lunarSurfaceTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "lunar surface time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:lymph + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "lymph"@en ; + rdfs:range :Lymph ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:lyrics + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Creator of the text of a MusicalWork, eg Musical, Opera or Song"@en ; + rdfs:domain :MusicalWork ; + rdfs:label "lyrics"@en, "parolier"@fr, "στίχοι"@el, "歌詞"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:magazine + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "Magazin"@de, "magazine"@en, "περιοδικό"@el ; + rdfs:range :Magazine ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:maidenFlight + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "date of maiden flight"@en ; + rdfs:domain :Rocket ; + rdfs:label "Jungfernflug"@de, "maiden flight"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:maidenFlightRocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "maiden flight rocket"@en ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:maidenVoyage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "maiden voyage"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:mainArticleForCategory + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A property for linking Wikipedia categories to its main articles, derived from top templates of some category pages."@en ; + rdfs:domain ; + rdfs:label "Hauptartikel fuer Kategorie"@de, "main article for Wikipedia category"@en ; + prov:wasDerivedFrom . + +:mainArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Name of the main artist in the group."@en, "Nom de l'artiste principal lorsque plusieurs artistes sont associés."@fr ; + rdfs:domain :MusicalWork ; + rdfs:label "artiste principal"@fr, "main artist"@en ; + rdfs:range :Agent ; + rdfs:subPropertyOf :artist ; + prov:wasDerivedFrom . + +:mainBuilding + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Shrine ; + rdfs:label "Hauptgebäude"@de, "main building"@en, "本殿"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mainCharacter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "main character"@en, "personnage principal"@fr ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:mainDomain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "main domain"@en ; + prov:wasDerivedFrom . + +:mainFamilyBranch + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :NobleFamily ; + rdfs:label "main branch"@en, "voornaamste tak"@nl ; + rdfs:range :Family ; + prov:wasDerivedFrom . + +:mainInterest + a rdf:Property, owl:ObjectProperty ; + rdfs:label "main interest"@en ; + rdfs:subPropertyOf dul:conceptualizes ; + prov:wasDerivedFrom . + +:mainIsland + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Hauptinsel"@de, "main island"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:mainIslands + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "Hauptinseln"@de, "main islands"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mainOrgan + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "main organ"@en ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:mainspan + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Bridge ; + rdfs:label "mainspan (μ)"@en, "portée principale (μ)"@fr, "κύρια καμάρα (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maintainedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "gewartet von"@de, "maintained by"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P126 ; + prov:wasDerivedFrom . + +:majorIsland + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "große Insel"@de, "maior ilha"@pt, "major island"@en ; + rdfs:range :Island ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:majorShrine + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "bedeutender Schrein"@de, "major shrine"@en, "schrijn"@nl ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:majorityFloorLeader + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of office holder"@en ; + rdfs:label "majority floor leader"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:majorityLeader + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of office holder"@en ; + rdfs:label "majority leader"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:makeupArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person who is responsible for the actors makeup"@en ; + rdfs:domain :Film ; + rdfs:label "makeup artist"@en, "truccatore"@it ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:management + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Management"@de, "management"@en, "management"@fr ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:managementCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "management country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:managementElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "management elevation (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:managementMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:label "management mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:managementPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:label "management place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:managementPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:label "management position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:managementRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "management region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:manager + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsTeam ; + rdfs:label "Manager"@de, "manager"@en, "προπονητής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P286 ; + prov:wasDerivedFrom . + +:managerClub + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Clubmanager"@de, "manager club"@en, "監督チーム"@ja ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:managerSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "manager season"@en ; + prov:wasDerivedFrom . + +:managerTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "manager title"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:managerYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "manager years"@en, "監督年"@ja ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:managerYearsEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "manager years end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:managerYearsStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "manager years start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:managingEditor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Newspaper ; + rdfs:label "managing editor"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:mandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "political mandate"@en, "politisches Mandat"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:manufactory + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Fabrik"@de, "manufactory"@en ; + rdfs:range :Factory ; + prov:wasDerivedFrom . + +:manufacturer + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Hersteller"@de, "manufacturer"@en, "κατασκευαστής"@el ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P176 ; + prov:wasDerivedFrom . + +:map + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A map of the place."@en, "Eine Landkarte des Ortes."@de, "Χάρτης μιας περιοχής."@el ; + rdfs:domain :Place ; + rdfs:label "Landkarte"@de, "carte"@fr, "kaart"@nl, "map"@en, "mapa"@pt, "χάρτης"@el, "ካርታ"@am ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:mapCaption + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "map caption"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mapDescription + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "kaart omschrijving"@nl, "map description"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:march + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Marsch"@de, "march"@en, "marcha"@pt ; + rdfs:range :MusicalWork ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:marketCapitalisation + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Company ; + rdfs:label "Marktkapitalisierung ($)"@de, "market capitalisation ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:mascot + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Animal, poupée, objets divers servant de porte-bonheur ou d’emblème."@fr, "something, especially a person or animal, used to symbolize a sports team, company, organization or other group."@en ; + rdfs:label "Maskottchen"@de, "mascot"@en, "mascote"@pt, "mascotte"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mass + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Masse (g)"@de, "mass (g)"@en, "μάζα (g)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:massif + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SkiResort ; + rdfs:label "Massiv"@de, "massif"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mastersWins + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "masters wins"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:matchPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "match point"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:material + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Material"@de, "material"@en, "matériel"@fr ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:max + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "max"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:maxAbsoluteMagnitude + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "maximale absolute Helligkeit"@de, "maximale absolute magnitude"@nl, "maximum absolute magnitude"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maxApparentMagnitude + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "maximale scheinbare Helligkeit"@de, "maximale schijnbare magnitude"@nl, "maximum apparent magnitude"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maxTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Maximum preparation time of a recipe / Food"@en, "Temps de préparation maximum pour une recette / Aliments"@fr ; + rdfs:domain :Food ; + rdfs:label "maximum preparation time (s)"@en, "temps de préparation maximum (s)"@fr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maximumArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "maximale Fläche"@de, "maximum area"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:maximumAreaQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "maximum area quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:maximumBoatBeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "maximum boat beam (μ)"@en, "μέγιστο_πλάτος_πλοίου (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maximumBoatLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "maximum boat length (μ)"@en, "μέγιστο_μήκος_πλοίου (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maximumDepth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Source of the value can be declare by ."@en ; + rdfs:domain :Place ; + rdfs:label "maximale Tiefe (μ)"@de, "maximum depth (μ)"@en, "profondeur maximale (μ)"@fr, "μέγιστο_βάθος (μ)"@el ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :depth ; + prov:wasDerivedFrom . + +:maximumDepthQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Source of the value."@en ; + rdfs:domain :Place ; + rdfs:label "maximum depth quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:maximumDischarge + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "maximum discharge (m³/s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maximumElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "maximum elevation above the sea level"@en ; + rdfs:domain :Place ; + rdfs:label "maximum elevation (μ)"@en, "κορυφή (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:maximumInclination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "maximum inclination"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:maximumTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Maximaltemperatur (K)"@de, "maximum temperature (K)"@en, "μέγιστη θερμοκρασία (K)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:mayor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Bürgermeister"@de, "burgemeester"@nl, "maire"@fr, "mayor"@en, "δήμαρχος"@el ; + rdfs:range :Mayor ; + rdfs:subPropertyOf :Leader ; + prov:wasDerivedFrom . + +:mayorArticle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "mayor article"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mayorCouncillor + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "mayor councillor"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mayorFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SwitzerlandSettlement ; + rdfs:label "mayor function of a switzerland settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mayorMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mayor ; + rdfs:label "mayorMandate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mayorTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :HungarySettlement ; + rdfs:label "mayor title of a hungarian settlement"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:mbaId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public."@en ; + rdfs:label "MBA Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:meanRadius + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "durchschnittlicher Radius (μ)"@de, "mean radius (μ)"@en, "μέση ακτίνα (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:meanTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Durchschnittstemperatur (K)"@de, "mean temperature (K)"@en, "μέση θερμοκρασία (K)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:meaning + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Bedeutung"@de, "meaning"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:measurements + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Messungen"@de, "measurements"@en, "medidas"@pt ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:medalist + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsEvent ; + rdfs:label "Medaillengewinner"@de, "medalhista"@pt, "medalist"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:media + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Medien"@de, "media"@en ; + prov:wasDerivedFrom . + +:mediaItem + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A media file (such as audio, video or images) associated with the subject"@en ; + rdfs:label "Multimediaelement"@de, "media item"@en ; + rdfs:range :File ; + prov:wasDerivedFrom . + +:mediaType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Imprimer / En-ligne (puis types associés etc. si nécessaire)"@fr, "Print / On-line (then binding types etc. if relevant)"@en ; + rdfs:domain :WrittenWork ; + rdfs:label "Medientyp"@de, "media type"@en, "mediatype"@nl, "type de média"@fr ; + prov:wasDerivedFrom . + +:medicalCause + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "medical cause"@en, "medizinische Ursache"@de, "médical cause"@fr, "αιτία Ιατρικός"@el ; + prov:wasDerivedFrom . + +:medicalDiagnosis + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "diagnostic médical"@fr, "medical diagnosis"@en, "medizinische Diagnose"@de ; + prov:wasDerivedFrom . + +:medicalSpecialty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "medical specialty"@en, "medisch specialisme"@nl, "medizinisches Fachgebiet"@de, "specializzazione medica"@it, "spécialité médicale"@fr, "ιατρική ειδικότητα"@el, "診療科"@ja, "진료과"@ko ; + rdfs:range :MedicalSpecialty ; + prov:wasDerivedFrom . + +:medication + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "Medikation"@de, "medication"@en, "médication"@fr ; + prov:wasDerivedFrom . + +:medlinePlus + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "MedlinePlus"@en, "MedlinePlus"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:meetingBuilding + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Legislature ; + rdfs:label "Tagungsgebäude"@de, "meeting building"@en ; + rdfs:range :Building ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:meetingCity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Legislature ; + rdfs:label "meeting city"@en ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:meetingRoad + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A road that crosses another road at the junction."@en, "Eine Straße die an der Kreuzung eine andere Straße kreuzt."@de ; + rdfs:domain :RoadJunction ; + rdfs:label "meeting road"@en, "zusammentreffende Straße"@de ; + rdfs:range :Road ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:meltingPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Schmelzpunkt (K)"@de, "melting point (K)"@en, "point de fusion (K)"@fr, "融点 (K)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:member + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Mitglied"@de, "lid van"@nl, "member"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P463 ; + prov:wasDerivedFrom . + +:memberOfParliament + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Abgeordnete"@de, "Member of Parliament"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:membership + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Mitgliedschaft"@de, "lidmaatschap"@nl, "membership"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:membershipAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "date membership established"@en, "datum vaststellen ledental"@nl ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:mentor + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A wise and trusted counselor or teacher"@en, "Celui qui sert de guide, de conseiller à quelqu’un."@fr ; + rdfs:domain :Artist ; + rdfs:label "Mentor"@de, "mentor"@en, "mentor"@fr ; + rdfs:range :Artist ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P1066 ; + prov:wasDerivedFrom . + +:mergedSettlement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "merged settlement"@en ; + rdfs:range :Settlement ; + prov:wasDerivedFrom . + +:mergedWith + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "merged with"@en, "zusammengeschlossen"@de ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:mergerDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "merger date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:meshId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "MeSH ID"@en, "MeSH ID"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P486 ; + prov:wasDerivedFrom . + +:meshName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "MeSH name"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:meshNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "MeSH number"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:messierName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name for Messier objects"@en ; + rdfs:domain :CelestialBody ; + rdfs:label "Messier name"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:metropolitanBorough + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "metropolitan borough"@en, "stadswijk"@nl ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:mgiid + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Mouse Genomic Informatics ID"@en ; + rdfs:domain :Biomolecule ; + rdfs:label "mgiid"@en, "mgiid"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:militaryBranch + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The service branch (Army, Navy, etc.) a person is part of."@en ; + rdfs:domain :MilitaryPerson ; + rdfs:label "military branch"@en ; + rdfs:range :MilitaryUnit ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty wikidata:P7779 ; + prov:wasDerivedFrom . + +:militaryCommand + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "For persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held."@en ; + rdfs:domain :MilitaryPerson ; + rdfs:label "Militärkommando"@de, "military command"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:militaryFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "military function"@en, "militärische Funktion"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:militaryGovernment + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Militärregierung"@de, "military government"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:militaryRank + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The highest rank achieved by a person."@en ; + rdfs:domain :MilitaryPerson ; + rdfs:label "military rank"@en, "militärischer Rang"@de ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:militaryService + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "military service"@en, "service militaire"@de ; + rdfs:range :MilitaryService ; + prov:wasDerivedFrom . + +:militaryUnit + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "For persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served."@en ; + rdfs:domain :MilitaryPerson ; + rdfs:label "Militäreinheit"@de, "military unit"@en ; + rdfs:range :MilitaryUnit ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:militaryUnitSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the size of the military unit"@en ; + rdfs:label "military unit size"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:millSpan + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mill ; + rdfs:label "mill span (μ)"@en, "vlucht (μ)"@nl, "Εκπέτασμα (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:millType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Mill ; + rdfs:label "mill type"@en, "molen-type"@nl, "τύπος μύλου"@el ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:millsCodeBE + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "mills code from the Belgian database on mills"@en, "unieke code voor molens in database www.molenechos.org"@nl ; + rdfs:domain :Mill ; + rdfs:label "mill code BE"@en, "molen code BE"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:millsCodeDutch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mill ; + rdfs:label "mill code NL"@en, "molen code NL"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:millsCodeNL + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "mills code from the central Dutch database on mills"@en, "unieke code voor molens in www.molendatabase.nl"@nl ; + rdfs:domain :Mill ; + rdfs:label "mill code NL"@en, "molen code NL"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:millsCodeNLVerdwenen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mill ; + rdfs:label "mill dissapeared code NL"@en, "verdwenen molen code NL"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:millsCodeNLWindmotoren + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Mill ; + rdfs:label "millsCodeNLWindmotoren"@en, "millsCodeNLWindmotoren"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:min + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "min"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:minTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Minimum preparation time of a recipe / Food"@en ; + rdfs:domain :Food ; + rdfs:label "minimum preparation time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:minimumArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Mindestfläche"@de, "minimum area"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:minimumAreaQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "minimum area quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:minimumDischarge + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "minimum discharge (m³/s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:minimumElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "minimum elevation above the sea level"@en ; + rdfs:domain :Place ; + rdfs:label "minimum elevation (μ)"@en, "βάση (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:minimumInclination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "minimum inclination"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:minimumTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "geringste Temperatur (K)"@de, "minimum temperature (K)"@en, "ελάχιστη θερμοκρασία (K)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:minister + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Minister"@de, "minister"@en, "ministre"@fr ; + rdfs:range :Politician ; + prov:wasDerivedFrom . + +:minority + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Minderheit"@de, "minority"@en ; + rdfs:range :Group ; + prov:wasDerivedFrom . + +:minorityFloorLeader + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of office holder"@en ; + rdfs:label "minority floor leader"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:minorityLeader + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of office holder"@en ; + rdfs:label "minority leader"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:mirDockings + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "mir dockings"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:mission + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Mission"@de, "mission"@en, "αποστολή"@el ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:missionDuration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Missionsdauer (s)"@de, "mission duration (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:missions + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "Missionen"@de, "missions"@en, "αποστολές"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:model + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Sales ; + rdfs:label "Modell"@de, "model"@en, "modèle"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:modelEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "model end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:modelEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "model end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:modelLineVehicle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Baureihe"@de, "type series"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:modelStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "model start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:modelStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "model start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:moderna + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Moderna, Inc et une compagnie américaine pharmaceutique et de biotechnologie basée à Cambridge, Massachusetts."@fr, "Moderna, Inc is an American pharmaceutical and biotechnology company based in Cambridge, Massachusetts."@en, "莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术"@zh ; + rdfs:label "Moderna"@en, "Moderna"@fr, "莫德纳"@zh ; + rdfs:range xsd:string ; + owl:equivalentProperty :vaccine ; + prov:wasDerivedFrom . + +:modernaCumul + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术"@en ; + rdfs:label "ModernaCumulativeDoses"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty :moderna ; + prov:wasDerivedFrom . + +:molarMass + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Molaire massa"@nl, "Molare Masse"@de, "molar mass"@en ; + rdfs:range xsd:double ; + rdfs:subPropertyOf :mass ; + prov:wasDerivedFrom . + +:molecularWeight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Molekulargewicht"@de, "molecular weight"@en, "molgewicht"@nl ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:monarch + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Monarch"@de, "monarch"@en, "monarch"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:month + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Monat"@de, "month"@en, "μήνας"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mood + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Stimmung"@de, "mood"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mostDownPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :NorwaySettlement ; + rdfs:label "most down point of a norwegian settlement"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:mostSuccessfulPlayer + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "el mejor jugador de una cierta competición deportiva. Por ejemplo, en una competición de fútbol, aquel jugador que ha marcado más goles."@es, "the best player in a certain sport competition. E.g, in a football competition, the player that scored more goals."@en ; + rdfs:domain :SportsEvent ; + rdfs:label "mejor jugador"@es, "most successful player"@en ; + rdfs:range :Athlete ; + prov:wasDerivedFrom . + +:mostWins + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Race ; + rdfs:label "die meisten Siege"@de, "most wins"@en ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:mother + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Woman ; + rdfs:label "Mutter"@de, "mother"@en, "እናት"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P25 ; + prov:wasDerivedFrom . + +:motive + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Motif du ou des crimes pour lesquels cette personne est connue."@fr, "The motive of the crime(s) this individual is known for."@en ; + rdfs:domain :Criminal ; + rdfs:label "Motiv"@de, "motif"@fr, "motive"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:motto + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Motto"@de, "devise"@fr, "lema"@pt, "motto"@en, "motto"@nl, "σύνθημα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "mount"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mountainRange + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Mountain ; + rdfs:label "Gebirge"@de, "bergketen"@nl, "mountain range"@en ; + rdfs:range :MountainRange ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:mouthCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth country"@en, "χώρες_λεκάνης"@el ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth district"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "mouth elevation (μ)"@en, "ύψος_εκβολών (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:mouthMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthPosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "foce (di un fiume)"@it, "lugar de desembocadura"@es, "mouth position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:mouthState + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "mouth state"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:movement + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "artistic movement or school with which artist is associated"@en ; + rdfs:domain :Artist ; + rdfs:label "Bewegung"@de, "beweging"@nl, "mouvement artistique"@fr, "movement"@en ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty wikidata:P135 ; + prov:wasDerivedFrom . + +:movie + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Film"@de, "movie"@en ; + rdfs:range :Film ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:mukhtar + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LebanonSettlement ; + rdfs:label "mukthar of a lebanon settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:municipality + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Gemeinde"@de, "municipality"@en, "municipalité"@fr, "plaats"@nl ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:municipalityAbsorbedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormerMunicipality ; + rdfs:label "absorbed by"@en, "opgegaan in"@nl ; + rdfs:range :Municipality ; + prov:wasDerivedFrom . + +:municipalityCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Gemeindecode"@de, "gemeente-code"@nl, "municipality code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:municipalityRenamedTo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Municipality ; + rdfs:label "a municipality's new name"@en, "neuer Name einer Gemeinde"@de, "nieuwe gemeentenaam"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:municipalityType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Municipality ; + rdfs:label "Gemeindetyp"@de, "type gemeente"@nl, "type of municipality"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:museum + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artwork ; + rdfs:label "museum"@de, "museum"@en, "μουσείο"@el, "博物館"@ja ; + rdfs:range :Museum ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:museumType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Nieuw type is nodig omdat Museum eigenlijk geen subklasse van Building is, maar meer te maken heeft met de functie van het gebouw. 'Museumtype' is dan ook meer thema- en collectiegerelateerd"@nl, "This property has been added because 'buildingType' is much more about the place, whereas 'museumType' is about the way the place is being (or:was) used"@en ; + rdfs:domain :Museum ; + rdfs:label "museumType"@en, "soort museum"@nl ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:musicBand + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicalArtist ; + rdfs:label "Music Band"@en, "orchestre"@fr ; + rdfs:range :Band ; + prov:wasDerivedFrom . + +:musicBrainzArtistId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "MusicBrainz artist. Applies to artists"@en ; + rdfs:label "MusicBrainz artist id"@el, "MusicBrainz artist id"@en, "MusicBrainz artist id"@ja, "MusicBrainz artist id"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P434 ; + prov:wasDerivedFrom . + +:musicBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Musical ; + rdfs:label "Musik von"@de, "music by"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P86 ; + prov:wasDerivedFrom . + +:musicComposer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "componist"@nl, "komponist"@de, "music composer"@en, "μουσική"@el, "የሙዚቃ አቀናባሪ"@am ; + rdfs:range :MusicalArtist ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:musicFormat + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Format de l'album: EP, 45tours (single), etc."@fr, "The format of the album: EP, Single etc."@en ; + rdfs:domain :Album ; + rdfs:label "format de la musique"@fr, "musicFormat"@en, "musikFormate"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:musicFusionGenre + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicGenre ; + rdfs:label "music fusion genre"@en ; + rdfs:range :MusicGenre ; + rdfs:subPropertyOf dul:overlaps ; + prov:wasDerivedFrom . + +:musicSubgenre + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicGenre ; + rdfs:label "Musik Subgenre"@de, "music subgenre"@en ; + rdfs:range :MusicGenre ; + rdfs:subPropertyOf dul:isSpecializedBy ; + prov:wasDerivedFrom . + +:musicType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden"@nl, "Type is too general. We should be able to distinguish types of music from types of architecture"@en ; + rdfs:domain :MusicalWork ; + rdfs:label "musicType"@en, "soort muziekwerk"@nl ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:musicalArtist + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Single ; + rdfs:label "musical artist"@en ; + rdfs:range :MusicalArtist ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P175 ; + prov:wasDerivedFrom . + +:musicalBand + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Single ; + rdfs:label "musical band"@en ; + rdfs:range :Band ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:musicalKey + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MusicalWork ; + rdfs:label "Tonart"@de, "musical key"@en, "toonsoort"@nl, "μουσικό κλειδί"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:musicians + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Instrument ; + rdfs:label "Musiker"@de, "musicians"@en, "musiciens"@fr, "μουσικοί"@el ; + rdfs:range :MusicalArtist ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:muteCharacterInPlay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name of a mute character in play."@en ; + rdfs:domain :Play ; + rdfs:label "mute character in play"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :characterInPlay ; + prov:wasDerivedFrom . + +:mvp + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "mvp"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:mythology + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MythologicalFigure ; + rdfs:label "Mythologie"@de, "mitologia"@it, "mythology"@en, "μυθολογία"@el ; + prov:wasDerivedFrom . + +:naacpImageAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "NAACP Image Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:name + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Name"@de, "name"@en, "ስም"@am ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:nameAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "so genannt seit"@de, "so named since"@en, "zo genoemd sinds"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:nameDay + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GivenName ; + rdfs:label "imieniny"@pl, "name day"@en, "ονομαστική εορτή"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:nameInCantoneseChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in het Kantonees Chinees"@nl, "name in Yue Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInHangulKorean + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in Hangul-geschreven Koreaans"@nl, "name in Hangul-written Korean"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInHanjaKorean + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in Hanja-geschreven Koreaans"@nl, "name in Hanja-written (traditional) Korean"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInJapanese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Name auf japanisch"@de, "naam in het Japans"@nl, "name in Japanese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInMindongyuChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in Mindongyu Chinees"@nl, "name in Mindongyu Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInMinnanyuChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in Minnanyu Chinees"@nl, "name in Minnanyu Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInPinyinChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in het Pinyin Chinees"@nl, "name in Pinyin Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInSimplifiedChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in het Vereenvoudigd Chinees"@nl, "name in Simplified Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInTraditionalChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in het Traditioneel Chinees"@nl, "name in Traditional Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nameInWadeGilesChinese + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "naam in het Wade-Giles transscriptie van het Chinees"@nl, "name in the Wade-Giles transscription of Chinese"@en ; + rdfs:range rdf:langString ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:namedAfter + a rdf:Property, owl:ObjectProperty ; + rdfs:label "benannt nach"@de, "named after"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P138 ; + prov:wasDerivedFrom . + +:namedByLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "named by language"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:names + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "Namen"@de, "names"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:narrator + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "Erzähler"@de, "narrateur"@fr, "narrator"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:nation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Nation"@de, "nation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nationalAffiliation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "afiliacao nacional"@pt, "national affiliation"@en ; + prov:wasDerivedFrom . + +:nationalChampionship + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "national championship"@en, "nationale Meisterschaft"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nationalFilmAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "National Film Award"@en, "Nationaler Filmpreis"@de ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:nationalOlympicCommittee + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "National Olympic Committee"@en, "Nationales Olympisches Komitee"@de, "nationaal Olympisch commité"@nl ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:nationalRanking + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "national ranking"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:nationalSelection + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "national selection"@en, "nationale Auswahl"@de ; + prov:wasDerivedFrom . + +:nationalTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Nationalmannschaft"@de, "nationaal team"@nl, "national team"@en, "代表国"@ja ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:nationalTeamMatchPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "national team match point"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nationalTeamYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "national team year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nationalTopographicSystemMapNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "National Topographic System map number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nationalTournament + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "National tournament"@en ; + rdfs:range :Tournament ; + prov:wasDerivedFrom . + +:nationalTournamentBronze + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "national tournament bronze"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nationalTournamentGold + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "national tournament gold"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nationalTournamentSilver + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "national tournament silver"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nationalYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "national years"@en, "代表年"@ja ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:nationality + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Nationalität"@de, "nacionalidade"@pt, "nationaliteit"@nl, "nationality"@en, "nationalité"@fr, "εθνικότητα"@el, "ዜግነት"@am, "国籍"@ja ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty , wikidata:P27 ; + prov:wasDerivedFrom . + +:nbRevPerMonth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value"@en, "utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value"@fr ; + rdfs:domain ; + rdfs:label "Nombre de révisions par mois"@fr, "Number of revision per month"@en ; + rdfs:range xsd:anyURI ; + prov:wasDerivedFrom . + +:nbRevPerYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value"@en, "utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value"@fr ; + rdfs:domain ; + rdfs:label "Nombre de révisions par année"@fr, "Number of revision per year"@en ; + rdfs:range xsd:anyURI ; + prov:wasDerivedFrom . + +:nbUniqueContrib + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "used for DBpedia History"@en, "utilisé par DBpedia Historique"@fr ; + rdfs:domain ; + rdfs:label "Nombre de contributeurs uniques"@fr, "Number of unique contributors"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:ncaaSeason + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "ncaa season"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ncaaTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "ncaa team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:ncbhof + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "ncbhof"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nciId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "NCI"@de, "NCI"@en, "NCI"@fr, "NCI"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1395 ; + prov:wasDerivedFrom . + +:ndlId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "National Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1"@en ; + rdfs:label "NDL id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P349 ; + prov:wasDerivedFrom . + +:nearestCity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "dichtstbijzijnde stad"@nl, "nearest city"@en, "nächstgelegene Stadt"@de, "πόλη"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:neighboringMunicipality + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Nachbargemeinde"@de, "aangrenzende gemeente"@nl, "municipío adjacente"@pt, "neighboring municipality"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:neighbourConstellations + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Constellation ; + rdfs:label "Nachbarsternbilder"@de, "neighbour constellations"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:neighbourRegion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Nachbarregion"@de, "neighbour region"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:neighbourhood + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :HungarySettlement ; + rdfs:label "neighbourhood of a hungarian settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nerve + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Nerv"@de, "nerve"@en ; + rdfs:range :Nerve ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:netIncome + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Company ; + rdfs:label "Nettoergebnis ($)"@de, "net income ($)"@en ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2295 ; + prov:wasDerivedFrom . + +:network + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "Sendergruppe"@de, "network"@en, "δίκτυο"@el ; + rdfs:range :Broadcaster ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:networth + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "networth ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:newspaper + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Zeitung"@de, "newspaper"@en ; + rdfs:range :PeriodicalLiterature ; + prov:wasDerivedFrom . + +:nextEntity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "next entity"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:nextEvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Event ; + rdfs:label "next event"@en, "nächste Veranstaltung"@de, "volgende evenement"@nl, "επόμενο γεγονός"@el ; + rdfs:range :Event ; + rdfs:subPropertyOf :followedBy, dul:precedes ; + prov:wasDerivedFrom . + +:nextMission + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "mision siguiente"@fr, "next mission"@en, "nächste Mission"@de ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf :followedBy, dul:precedes ; + prov:wasDerivedFrom . + +:nextTrackNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of the next track in the recorded work."@en, "numéro de la piste suivante du support."@fr ; + rdfs:domain :Work ; + rdfs:label "number of the next track"@en, "numéro de la piste suivante"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nflCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "nfl code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nflSeason + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "nfl season"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nflTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "nfl team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:ngcName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name for NGC objects"@en ; + rdfs:domain :CelestialBody ; + rdfs:label "NGC name"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :name ; + prov:wasDerivedFrom . + +:nisCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Indexing code used by the Belgium National Statistical Institute to identify populated places."@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "NIS code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1567 ; + prov:wasDerivedFrom . + +:nlaId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "NLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF."@en ; + rdfs:label "NLA Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P409 ; + prov:wasDerivedFrom . + +:nndbId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "NNDB id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:noContest + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "no contest"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nobelLaureates + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "Nobelpreisträger"@de, "nobel laureates"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:nominee + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Kandidat"@de, "nominee"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:nonFictionSubject + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...)."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "non-fictie onderwerp"@nl, "non-fiction subject"@en ; + rdfs:subPropertyOf dul:isAbout ; + prov:wasDerivedFrom . + +:nonProfessionalCareer + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "non professional career"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:nord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "NORD"@de, "NORD"@en, "NORD"@fr, "NORD"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:northEastPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated north-east."@en, "indique un autre lieu situé au nord-est."@fr, "በሰሜን-ምስራቅ የሚገኝ ሌላ ቦታ ያመለክታል"@am ; + rdfs:domain :Place ; + rdfs:label "lieu au nord-est"@fr, "north-east place"@en, "ሰሜን ምስራቅ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:northPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated north."@en, "indique un autre lieu situé au nord."@fr, "በሰሜን የሚገኘውን ሌላ ቦታ ያመለክታል."@am ; + rdfs:domain :Place ; + rdfs:label "north place"@en, "ሰሜን"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:northWestPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated north-west."@en, "indique un autre lieu situé au nord-ouest."@fr, "በሰሜን-ምዕራብ የሚገኝ ሌላ ቦታ ያመለክታል"@am ; + rdfs:domain :Place ; + rdfs:label "lieu au nord-ouest"@fr, "north-west place"@en, "ሰሜን ምዕራብ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:notSolubleIn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "niet oplosbaar in"@nl, "not soluble in"@en ; + rdfs:range :ChemicalSubstance ; + prov:wasDerivedFrom . + +:notableCommander + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "notable commander"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:notableFeatures + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Galaxy ; + rdfs:label "notable features"@en, "notlar"@tr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:notableIdea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "notableIdea"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:notableStudent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Scientist ; + rdfs:label "notable student"@en, "σημαντικοί_φοιτητές"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:notableWine + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Grape ; + rdfs:label "notable wine"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:notableWork + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Notable work created by the subject (eg Writer, Artist, Engineer) or about the subject (eg ConcentrationCamp)"@en ; + rdfs:label "bekende werken"@nl, "notable work"@en, "oeuvre majeure"@fr, "代表作"@ja ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P800 ; + prov:wasDerivedFrom . + +:note + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Anmerkung"@de, "note"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:noteOnPlaceOfBurial + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "note on place of burial"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:noteOnRestingPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "note on resting place"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:notes + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "additional notes that better describe the entity."@en, "συμπληρωματικές σημειώσεις που περιγράφουν καλύτερα την οντότητα."@el ; + rdfs:label "Anmerkungen"@de, "notes"@en, "notes"@fr, "σημειώσεις"@el, "ማስታወሻ"@am ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:notifyDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SiteOfSpecialScientificInterest ; + rdfs:label "Benachrichtigungsdatum"@de, "notify date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:novel + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Roman"@de, "novel"@en ; + rdfs:range :Novel ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:nrhpReferenceNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :HistoricPlace ; + rdfs:label "NRHP Reference Number"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P649 ; + prov:wasDerivedFrom . + +:nrhpType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Type of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield."@en ; + rdfs:domain :HistoricPlace ; + rdfs:label "NRHP type"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:nssdcId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceStation ; + rdfs:label "NSSDC ID"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:number + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Anzahl"@de, "number"@en, "nummer"@nl, "αριθμός"@el, "番号"@ja ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:numberBuilt + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Anzahl gebaut"@de, "aantal gebouwd"@nl, "number built"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfAcademicStaff + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Anzahl der wissenschaftlichen Mitarbeiter"@de, "number of academic staff"@en, "αριθμός ακαδημαϊκού προσωπικού"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfAlbums + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre total d'albums que cet artiste musical a réalisés"@fr, "the total number of albums released by the musical artist"@en ; + rdfs:domain :MusicalArtist ; + rdfs:label "Anzahl der Alben"@de, "nombre d'albums"@fr, "number of albums"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfArrondissement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Department ; + rdfs:label "number of arrondissement"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfBombs + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryAircraft ; + rdfs:label "Anzahl der Bomben"@de, "number of bombs"@en, "αριθμός των βομβών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfBronzeMedalsWon + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SportCompetitionResult ; + rdfs:label "Anzahl der gewonnenen Bronzemedaillen"@de, "aantal gewonnen bronzen medailles"@nl, "cantidad de medallas de bronce ganadas"@es, "nomber de médailles de bronze gagnées"@fr, "number of bronze medals won"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCanton + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Department ; + rdfs:label "number of canton"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCantons + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Aantal kantons"@nl, "Number Of Cantons"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCapitalDeputies + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Number Of Capital Deputies"@en, "numero de deputados distritais"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Continent ; + rdfs:label "number of contries inside en continent"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfClasses + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de classes définies"@fr, "number of defined Classes"@en ; + rdfs:label "nombre de classes"@fr, "numberOfClasses"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfClassesWithResource + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de classes de DBpedia ayant au moins une ressource unique (entité de classe)"@fr, "number of class in DBpedia with at least single resource (class entity)"@en ; + rdfs:label "nombre de classes avec ressource"@fr, "numberOfClassesWithResource"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfClassrooms + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "nombre de salles de classe"@fr, "number of classrooms"@en, "αριθμός αιθουσών"@el ; + rdfs:subPropertyOf dul:hasRegion ; + prov:wasDerivedFrom . + +:numberOfClubs + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Activity ; + rdfs:label "Anzahl der Clubs"@de, "nombre de clubs"@fr, "number of clubs"@en, "numero de clubs"@es ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCollectionItems + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Aanduiding van omvang van de collectie van deze bibliotheek"@nl, "Indication as to the size of the collection of this library"@en ; + rdfs:domain :Library ; + rdfs:label "Anzahl der Elemente in der Sammlung"@de, "aantal titels/items"@nl, "number of items in collection"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:numberOfCompetitors + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "Anzahl der Wettbewerber"@de, "number of competitors"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCounties + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Anzahl der Landkreise"@de, "number of counties"@en, "número de condados"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfCountries + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "number of countries"@en, "número de países"@pt, "αριθμός χωρών"@el ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:numberOfCrew + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "aantal bemanningsleden"@nl, "number of crew"@en, "αριθμός πληρώματος"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDeaths + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ConcentrationCamp ; + rdfs:label "Aantal doden"@nl, "Totenzahl"@de, "number of deaths"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:numberOfDependency + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Continent ; + rdfs:label "number of dependency"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDisambiguates + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of disambiguation pages in DBpedia"@en ; + rdfs:label "numberOfDisambiguates"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDistrict + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Department ; + rdfs:label "number of district"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDistricts + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Regency ; + rdfs:label "Anzahl der Bezirke"@de, "jumlah kecamatan"@in, "number of districts"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDoctoralStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :University ; + rdfs:label "Anzahl der Doktoranden"@de, "number of doctoral students"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfDoors + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Automobile ; + rdfs:label "Türenanzahl"@pt, "number of doors"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:numberOfEmployees + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Anzahl der Mitarbeiter"@de, "aantal medewerkers"@nl, "nombre d'employés"@fr, "number of employees"@en, "número de empleados"@es, "αριθμός εργαζομένων"@el ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty wikidata:P1128 ; + prov:wasDerivedFrom . + +:numberOfEntrances + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cave ; + rdfs:label "Anzahl der Eingänge"@de, "aantal ingangen"@nl, "number of entrances"@en, "αριθμός εισόδων"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfEpisodes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "Anzahl der Episoden"@de, "number of episodes"@en, "αριθμός επειδοδίων"@el ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:numberOfEtoilesMichelin + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Restaurant ; + rdfs:label "nombre d'étoiles Michelin"@fr, "number of étoiles Michelin"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfFederalDeputies + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Anzahl der Bundesabgeordneten"@de, "Number Of Federal Deputies"@en, "numero de deputados federais"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfFilms + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AdultActor ; + rdfs:label "Anzahl der Filme"@de, "number of films"@en, "αριθμός ταινιών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfGoals + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CareerStation ; + rdfs:label "Anzahl der erzielten Tore"@de, "number of goals scored"@en, "numero di goal segnati"@it ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:numberOfGoldMedalsWon + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SportCompetitionResult ; + rdfs:label "Anzahl der Goldmedaillen"@de, "aantal gewonnen gouden medailles"@nl, "cantidad de medallas de oro ganadas"@es, "nomber de médailles d'or gagnées"@fr, "number of gold medals won"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfGraduateStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Zahl der Studenten"@de, "number of graduate students"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfGraves + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Cemetery ; + rdfs:label "Anzahl der Gräber"@de, "aantal graven"@nl, "number of graves"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:numberOfHoles + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GolfCourse ; + rdfs:label "nombre de trous"@fr, "number of holes"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:numberOfHouses + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Aantal huizen in afgegrensd gebied"@nl, "Count of the houses in the Protected Area"@en ; + rdfs:domain :ProtectedArea ; + rdfs:label "Anzahl der vorhandenen Häuser"@de, "aantal huizen aanwezig"@nl, "number of houses present)"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:numberOfIndegree + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "number of all indegrees in dbpedia (same ourdegrees are counting repeatedly)"@en, "počet indegree odkazů v dbpedii (stejné započítané opakovaně)"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfIntercommunality + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Department ; + rdfs:label "number of intercommunality"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfIsland + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Anzahl der Inseln"@de, "number of islands"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:numberOfIslands + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "Anzahl der Inseln"@de, "aantal eilanden"@nl, "number of islands"@en, "αριθμός νησιών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLanes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Anzahl der Fahrstreifen"@de, "nombre de voies"@fr, "number of lanes"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLaps + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacing ; + rdfs:label "Anzahl der Runden"@de, "number of laps"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLaunches + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Anzahl von Starts"@de, "number of launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLawyers + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of lawyers or attorneys in the company."@en ; + rdfs:domain :LawFirm ; + rdfs:label "Anzahl Rechtsanwälte"@de, "number of lawyers"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLifts + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of lifts."@en ; + rdfs:domain :SkiArea ; + rdfs:label "number of lifts"@en, "索道数"@ja ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLines + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de lignes dans le système de transport."@fr, "Number of lines in the transit system."@en ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "Anzahl der Linien"@de, "nombre de lignes"@fr, "number of lines"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLiveAlbums + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre d'albums enregistrés en public et réalisés par l'artiste de musique"@fr, "the number of live albums released by the musical artist"@en ; + rdfs:domain :MusicalArtist ; + rdfs:label "Anzahl von Live-Alben"@de, "nombre d'albums live"@fr, "number of live albums"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfLocations + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Anzahl der Standorte"@de, "nombre de sites"@fr, "number of locations"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMatches + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CareerStation ; + rdfs:label "number of matches or caps"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:numberOfMembers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Legislature ; + rdfs:label "Anzahl der Mitglieder"@de, "nombre de membres"@fr, "number of members"@en, "numero de miembros"@es, "número de membros"@pt, "αριθμός μελών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMembersAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "number of members as of"@en, "numero de membros em"@pt ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:numberOfMinistries + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "Zahl der Ministerien"@de, "number of ministries"@en, "numero de ministerios"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMunicipalities + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Aantal gemeenten"@nl, "Anzahl der Gemeinden"@de, "Number Of Municipalities"@en, "numero de municipios"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMusicalArtistEntities + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "number of MuscialArtist class (entities) in DBpedia"@en, "počet entit třídy MuscialArtist v DBpedii"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMusicalArtistInstrument + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Instrument ; + rdfs:label "number of all MuscialArtist playing the instrument"@en, "počet hudebních umělců hrající na konkrétní nástroj"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfMusicalArtistStyle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MusicGenre ; + rdfs:label "number of all MuscialArtist playing the style"@en, "počet hudebních umělců hrající konkrétní styl"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfNeighbourhood + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GermanSettlement ; + rdfs:label "number of neighbourhood"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfNewlyIntroducedSports + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Olympics ; + rdfs:label "number of newly introduced sports"@en, "numbre de sports nouvellement ajoutés"@fr, "numero de deportes nuevamente añadidos"@es ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfOffices + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of the company's offices."@en, "Αριθμός γραφείων εταιρείας."@el ; + rdfs:domain :LawFirm ; + rdfs:label "Anzahl Büros"@de, "number of offices"@en, "αριθμός γραφείων"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfOfficials + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "Zahl der Beamten"@de, "number of officials"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfOrbits + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Anzahl der Bahnen"@de, "number of orbits"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfOutdegree + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of all outdegrees in DBpedia (same ourdegrees are counting repeatedly). This number is equal to number of all links (every link is OutDegree link)"@en ; + rdfs:label "numberOfOutdegree"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPads + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LaunchPad ; + rdfs:label "number of pads"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPages + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de pages des livres."@fr, "The books number of pages."@en ; + rdfs:domain :WrittenWork ; + rdfs:label "Anzahl der Seiten"@de, "aantal pagina's"@nl, "nombre de pages"@fr, "number of pages"@en ; + rdfs:range xsd:positiveInteger ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:numberOfParkingSpaces + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Hotel ; + rdfs:label "Anzahl der Parkplätze"@de, "nombre de places de parking"@fr, "number of parking spaces"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfParticipatingAthletes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Olympics ; + rdfs:label "Anzahl der teilnehmenden Athleten"@de, "nombre d'athlètes participant"@fr, "number of participating athletes"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfParticipatingFemaleAthletes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Olympics ; + rdfs:label "Zahl der teilnehmenden Sportlerinnen"@de, "nombre d'athlètes participant féminins"@fr, "number of participating female athletes"@en, "αριθμός συμμετεχόντων γυναικών αθλητριών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfParticipatingMaleAthletes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Olympics ; + rdfs:label "Anzahl der teilnehmenden männlichen Athleten"@de, "nombre d'athlètes masculins participant"@fr, "number of participating male athletes"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfParticipatingNations + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Olympics ; + rdfs:label "Anzahl der teilnehmenden Nationen"@de, "number of participating nations"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPassengers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "aantal passagiers"@nl, "nombre de passagers"@fr, "number of passengers"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPeopleAttending + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Event ; + rdfs:label "Zahl der Teilnehmer"@de, "nombre de participants"@fr, "number of people attending"@en, "número de participantes"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPeopleLicensed + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de personnes ayant une license pour pratiquer cette activité"@en ; + rdfs:domain :Activity ; + rdfs:label "nombre de licenciés"@fr, "number of licensed"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPersonBornInPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "number of entities of Person class born in the place"@en, "počet entit třídy Osoba narozených na konkrétním místě"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPersonEntities + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "number of Person class (entities) in DBpedia"@en, "počet entit třídy Osoba v DBpedii"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPersonFromUniversity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :University ; + rdfs:label "number of entities of Person class who graduated from the university"@en, "počet entit třídy Osoba s vystudovanou konkrétní univerzitou"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPersonInOccupation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "number of person in one occupation"@en, "počet lidí v konkrétním zaměstnání"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPiersInWater + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of piers standing in a river or other water in normal conditions."@en ; + rdfs:domain :Bridge ; + rdfs:label "Anzahl der Pfeiler in Wasser"@de, "number of piers in water"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPixels + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Anzahl der Pixel (Millionen)"@de, "nombre de pixels (millions)"@fr, "number of pixels (millions)"@en ; + rdfs:range xsd:nonNegativeInteger ; + rdfs:subPropertyOf :number ; + prov:wasDerivedFrom . + +:numberOfPlatformLevels + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of levels of platforms at the station."@en ; + rdfs:domain :Station ; + rdfs:label "number of platform levels"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:numberOfPlayers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Activity ; + rdfs:label "Anzahl der Spieler"@de, "nombre de joueurs"@fr, "number of players"@en, "numero de jugadores"@es, "αριθμός παιχτών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPostgraduateStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :University ; + rdfs:label "number of postgraduate students"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPredicates + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de prédicats dans DBpedia (y compris les propriétés sans rdf:type de rdf:Property)"@fr, "number of predicates in DBpedia (including properties without rdf:type of rdf:Property)"@en ; + rdfs:label "nombre de prédicats"@fr, "numberOfPredicates"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfProfessionals + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of people who earns his living from a specified activity."@en ; + rdfs:domain :Activity ; + rdfs:label "Anzahl von Fachleuten"@de, "nombre de professionnels"@fr, "number of professionals"@en, "numero de profesionales"@es ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfProperties + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de propriétés défines dans l'ontologie DBpedia"@fr, "number of defined properties in DBpedia ontology"@en ; + rdfs:label "nombre de propriétés"@fr, "numberOfProperties"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfPropertiesUsed + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre total de propriétés utilisées comme prédicat dans DBpedia"@fr, "number of all properties used as predicate in DBpedia"@en ; + rdfs:label "nombre de propriétés utilisées"@fr, "numberOfPropertiesUsed"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfReactors + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :NuclearPowerStation ; + rdfs:label "Anzahl der Reaktoren"@de, "aantal reactoren"@nl, "nombre de réacteurs"@fr, "number of reactors"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfRedirectedResource + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de ressources qui redirigent vers d'autres ressources"@fr, "number of redirected resource to another one"@en, "počet redirectů - zdrojů přesměrovaných na jiný zdroj"@cs ; + rdfs:label "nombre de ressources redirigées"@fr, "numberOfRedirectedResource"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfResource + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of all resource in DBpedia (including disambiguation pages and rediretcs)"@en ; + rdfs:label "numberOfResource"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfResourceOfClass + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "celkový počet zdrojů / entit v dané tříde"@cs, "number of all resource / entities of a class"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfResourceOfType + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "number of resource / entities for concrete type of subject"@en, "počet zdrojů / entint pro konkrétní typ subjectu"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfResourceWithType + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of resource in DBpedia with Class type (= Class entity)"@en ; + rdfs:label "nmberOfResourceWithType"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfRestaurants + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Hotel ; + rdfs:label "Anzahl der Restaurants"@de, "nombre de restaurants"@fr, "number of restaurants"@en, "αριθμός εστιατορίων"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfRockets + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryAircraft ; + rdfs:label "Anzahl der Raketen"@de, "number of rockets"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfRooms + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Anzahl der Zimmer"@de, "aantal kamers"@nl, "nombre de pièces"@fr, "number of rooms"@en, "αριθμός δωματίων"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfRun + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "number of run"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSeasons + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "Anzahl der Staffeln"@de, "nombre de saisons"@fr, "number of seasons"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSeats + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Anzahl der Sitze"@de, "aantal plaatsen"@nl, "nombre de places"@fr, "number of seats"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSeatsInParliament + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "aantal zetels in Tweede-Kamer-achtig parlement"@nl, "number of seats in House of Commons-like parliaments"@en ; + rdfs:domain :PoliticalParty ; + rdfs:label "Anzahl der Sitze im Parlament"@de, "aantal zetels in parlement"@nl, "number of seats in parliament"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSettlement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Department ; + rdfs:label "Zahl der Siedlungen"@de, "number of settlement"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSettlementsInCountry + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "number of entities of Settlement class in country"@en, "počet entit třídy Sídlo v dané zemi"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSilverMedalsWon + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SportCompetitionResult ; + rdfs:label "Anzahl der Silbermedaillen"@de, "aantal gewonnen zilveren medailles"@nl, "cantidad de medallas de plata ganadas"@es, "nomber de médailles d'argent gagnées"@fr, "number of silver medals won"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSoccerPlayerInCountryRepre + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "celkový počet fotbalový hráčů v reprezentaci"@cs, "number of SoccerPlayers in Country Repre"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSoccerPlayersBornInPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "number of SoccerPlayers born in Place"@en, "počet fotbalistů narozen na daném místě"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSoccerPlayersInTeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "number of SoccerPlayers in entity of SoccerClub"@en, "počet fotbalových hráčů ve fotbalovém týmu"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSpans + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of spans or arches."@en ; + rdfs:domain :Bridge ; + rdfs:label "Anzahl der Bögen"@de, "number of spans"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSpeakers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Language ; + rdfs:label "Anzahl Sprecher"@de, "aantal sprekers"@nl, "number of speakers"@en, "የቋንቋ ተናጋሪዎች ብዛት"@am ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSports + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "number of sports"@en, "numbre de sports"@fr, "numero de deportes"@es ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSportsEvents + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Anzahl der Sportveranstaltungen"@de, "number of sports events"@en, "numbre d'épreuves sportives"@fr, "numero de pruebas deportivas"@es, "αριθμός αθλητικών γεγονότων"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStaff + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Personalbestand"@de, "aantal medewerkers"@nl, "number of staff"@en, "αριθμός προσωπικού"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStars + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Constellation ; + rdfs:label "Anzahl der Sterne"@de, "nombre d'étoiles"@fr, "number of stars"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStateDeputies + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Number Of State Deputies"@en, "numero de deputados estaduais"@pt ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStations + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de stations, gares ou arrêts."@fr, "Number of stations or stops."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Anzahl der Stationen"@de, "nombre de stations"@fr, "number of stations"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStores + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ShoppingMall ; + rdfs:label "Anzahl an Geschäften"@de, "number of sores"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Zahl der Studierenden"@de, "nombre d'étudiants"@fr, "number of students"@en, "αριθμός φοιτητών"@el ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty wikidata:P2196 ; + prov:wasDerivedFrom . + +:numberOfStudioAlbums + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre d'albums que l'artiste musical a réalisés en studio"@fr, "the number of studio albums released by the musical artist"@en ; + rdfs:domain :MusicalArtist ; + rdfs:label "Zahl der Studio-Alben"@de, "nombre d'albums studio"@fr, "number of studio albums"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfSuites + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Hotel ; + rdfs:label "number of suites"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfTeams + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SportsLeague ; + rdfs:label "Anzahl der Teams"@de, "nombre d'équipes"@fr, "number of teams"@en, "numero di squadre"@it ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfTracks + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de voies d'un chemin de fer ou d'une gare."@fr, "Number of tracks of a railway or railway station."@en ; + rdfs:domain :Infrastructure ; + rdfs:label "Anzahl der Gleise"@de, "nombre de voies"@fr, "number of tracks"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfTrails + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of trails in ski area."@en ; + rdfs:domain :SkiArea ; + rdfs:label "number of trails"@en, "コース数"@ja ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfTriples + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "nombre de triplets dans DBpedia"@fr, "number of triples in DBpedia"@en ; + rdfs:label "nombre de triplets"@fr, "numberOfTriples"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfTurns + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RaceTrack ; + rdfs:label "nombre de virages"@fr, "number of turns"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfUndergraduateStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Zahl der Studenten"@de, "number of undergraduate students"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfUniqeResources + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of unique resource without redirecting"@en ; + rdfs:label "numberOfUniqeResources"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfUseOfProperty + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "number of use of a property"@en, "počet použití property"@cs ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVehicles + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de véhicules dans le système de transition."@fr, "Number of vehicles used in the transit system."@en ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "Anzahl der Fahrzeuge"@de, "nombre de véhicules"@fr, "number of vehicles"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVillages + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :District ; + rdfs:label "Anzahl der Dörfer"@de, "jumlah desa/kelurahan"@in, "number of villages"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVineyards + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WineRegion ; + rdfs:label "Anzahl von Weinbergen"@de, "nombre de vignobles"@fr, "number of vineyards"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVisitors + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Besucherzahl"@de, "bezoekersaantal"@nl, "nombre de visiteurs"@fr, "number of visitors"@en, "αριθμός επισκεπτών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVisitorsAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The year in which number of visitors occurred."@en ; + rdfs:domain :HistoricPlace ; + rdfs:label "number of visitors as of"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:numberOfVolumes + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "nombre de volumes"@fr, "number of volumes"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfVolunteers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Anzahl der Freiwilligen"@de, "nombre de bénévoles"@fr, "number of volunteers"@en, "αριθμός εθελοντών"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberOfWineries + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WineRegion ; + rdfs:label "number of wineries"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:numberSold + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of things (eg vehicles) sold"@en ; + rdfs:domain :Sales ; + rdfs:label "number sold"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:nutsCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nomenclature of Territorial Units for Statistics (NUTS) is a geocode standard for referencing the subdivisions of countries for statistical purposes. The standard is developed and regulated by the European Union, and thus only covers the member states of the EU in detail."@en ; + rdfs:domain :Place ; + rdfs:label "NUTS code"@en, "NUTS-code:"@nl ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P605 ; + prov:wasDerivedFrom . + +:observatory + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "επιστημονικά ιδρύματα που παρατηρούν και μελετάνε ουράνια σώματα και φαινόμενα."@el ; + rdfs:domain :Island ; + rdfs:label "Observatorium"@de, "observatoire"@fr, "observatory"@en, "αστεροσκοπείο"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:occupation + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Beschäftigung"@de, "activité"@fr, "beroep"@nl, "occupation"@en, "職業"@ja ; + rdfs:range :PersonFunction ; + rdfs:subPropertyOf dul:hasRole ; + owl:equivalentProperty wikidata:P106 ; + prov:wasDerivedFrom . + +:oclc + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Online Computer Library Center number"@en ; + rdfs:domain :WrittenWork ; + rdfs:label "OCLC"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:odor + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Geruch"@de, "Odor"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:offeredClasses + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "offered classes"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:office + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "(political) office"@en, "(politisches) Amt"@de, "υπηρεσία"@el, "ቢሮ"@am ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:officerInCharge + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :University ; + rdfs:label "officer in charge"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:officialLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Amtssprache"@de, "langue officielle"@fr, "official language"@en, "ብሔራዊ ቋንቋ"@am ; + rdfs:range :Language ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:officialName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "nom officiel"@fr, "official name"@en, "offizieller Name"@de, "ይፋዊ ስም"@am ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:officialOpenedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Olympics ; + rdfs:label "official opened by"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:officialSchoolColour + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The official colour of the EducationalInstitution represented by the colour name (e.g.: red or green)."@en ; + rdfs:domain :EducationalInstitution ; + rdfs:label "official school colour"@en, "offizielle Schulfarbe"@de ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :ColourName ; + prov:wasDerivedFrom . + +:ofsCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Identifier used by the Swiss Federal Institute for Statistics"@en ; + rdfs:domain :Settlement ; + rdfs:label "ofs code of a settlement"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :isoCode ; + owl:equivalentProperty wikidata:P771 ; + prov:wasDerivedFrom . + +:oilSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "oil system"@en, "Ölsystem"@de ; + rdfs:subPropertyOf dul:hasComponent ; + prov:wasDerivedFrom . + +:okatoCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Code used to indentify populated places in Russia"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "okato code"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P721 ; + prov:wasDerivedFrom . + +:oldDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Altstadt"@de, "ancienne région"@fr, "old district"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:oldName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "alter Name"@de, "ancien nom"@fr, "old name"@en, "παλιό όνομα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:oldProvince + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "alte Provinz"@de, "ancienne province"@fr, "old province"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:oldTeamCoached + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "old team coached"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:oldcode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "ancien code"@fr, "oldcode"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:olivierAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Comedian ; + rdfs:label "Olivier Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:olympicGames + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Olympische Spelen"@nl, "olympic games"@en, "olympische Spiele"@de ; + rdfs:range :Tournament ; + prov:wasDerivedFrom . + +:olympicGamesBronze + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "brons op de Olympische Spelen"@nl, "olympic games bronze"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:olympicGamesGold + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "goud op de Olympische Spelen"@nl, "olympic games gold"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:olympicGamesSilver + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "olympic games silver"@en, "zilver op de Olympische Spelen"@nl ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:olympicGamesWins + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "olympic games wins"@en, "overwinningen op de Olympische Spelen"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:olympicOathSwornBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Olympics ; + rdfs:label "Olympischer Eid"@de, "lecteur du serment olympique"@fr, "olympic oath sworn by"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:olympicOathSwornByAthlete + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Olympics ; + rdfs:label "olympic oath sworn by athlete"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf :olympicOathSwornBy, dul:hasParticipant ; + prov:wasDerivedFrom . + +:olympicOathSwornByJudge + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Olympics ; + rdfs:label "olympic oath sworn by judge"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf :olympicOathSwornBy, dul:hasParticipant ; + prov:wasDerivedFrom . + +:omim + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "OMIM id"@en, "OMIM id"@ja, "OMIM id"@nl ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:onChromosome + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the number corresponding to the chromosome on which the gene is located"@en ; + rdfs:domain :GeneLocation ; + rdfs:label "chromosoom nummer"@nl, "on chromosome"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:ons + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "ONS ID (Office national des statistiques) Algeria"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:openAccessContent + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Availability of open access content."@en, "Verfügbarkeit von frei zugänglichem Inhalten."@de ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "frei zugänglicher Inhalten"@de, "open access content"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:openingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Eröffnungsdatum"@de, "date d'ouverture"@fr, "opening date"@en, "ημερομηνία ανοίγματος"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:openingFilm + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FilmFestival ; + rdfs:label "Eröffnungsfilm"@de, "opening film"@en ; + rdfs:range :Film ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:openingTheme + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "opening theme"@en ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:openingYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Eröffnungsjahr"@de, "opening year"@en, "openingsjaar"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:operatingIncome + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Company ; + rdfs:label "Betriebsergebnis ($)"@de, "operating income ($)"@en ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P3362 ; + prov:wasDerivedFrom . + +:operatingSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Software ; + rdfs:label "Betriebssystem"@de, "besturingssysteem"@nl, "operating system"@en, "λειτουργικό σύστημα"@el ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:operator + a rdf:Property, owl:ObjectProperty ; + rdfs:comment """Organisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. +Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated."""@en ; + rdfs:label "Betreiber"@de, "exploitant"@nl, "operator"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:opponent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Gegner"@de, "opponent"@en, "敵対者"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:opponents + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "\"opponent in a military conflict, an organisation, country, or group of countries. \""@en ; + rdfs:domain :MilitaryConflict ; + rdfs:label "Gegner"@de, "opponents"@en ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:orbitalEccentricity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "excentricité orbitale"@fr, "orbital eccentricity"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:orbitalFlights + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "orbital flights"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:orbitalInclination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Bahnneigung"@de, "orbital inclination"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:orbitalPeriod + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Umlaufzeit (s)"@de, "orbital period (s)"@en, "Περίοδος περιφοράς (s)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:orbits + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Bahnen"@de, "orbits"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:orcidId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Authority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range."@en ; + rdfs:label "ORCID Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P496 ; + prov:wasDerivedFrom . + +:order + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "Ordnung"@de, "orde"@nl, "order (taxonomy)"@en, "ordre (taxonomie)"@fr, "διαταγή"@el, "目_(分類学)"@ja ; + rdfs:subPropertyOf dul:isSpecializedBy ; + owl:equivalentProperty wikidata:P70 ; + prov:wasDerivedFrom . + +:orderDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "order date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:orderInOffice + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "order in office"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ordination + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Priest ; + rdfs:label "Ordination"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:organ + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Naam en/of beschrijving van het orgel"@nl, "Name and/or description of the organ"@en ; + rdfs:domain :ReligiousBuilding ; + rdfs:label "organ"@en, "orgel"@nl ; + rdfs:range :Organ ; + prov:wasDerivedFrom . + +:organSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the organ system that a anatomical structure belongs to"@en ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "organ system"@en ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:organisation + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Organisation"@de, "organisation"@en, "organisation"@fr ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:organisationMember + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Identify the members of an organisation."@en ; + rdfs:domain :Organisation ; + rdfs:label "Organisationsmitglied"@de, "organisation member"@en ; + rdfs:range :OrganisationMember ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:orientation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Orientierung"@de, "orientation"@en, "orientation"@fr ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P91 ; + prov:wasDerivedFrom . + +:origin + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Herkunft"@de, "oorsprong"@nl, "origem"@pt, "origin"@en, "origine"@fr, "προέλευση"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:originalDanseCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "original danse competititon"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:originalDanseScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "original danse score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:originalEndPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Canal ; + rdfs:label "original end point"@en, "πρωταρχικό_σημείο_τέλους"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:originalLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The original language of the work."@en ; + rdfs:domain :Work ; + rdfs:label "Originalsprache"@de, "idioma original"@es, "langue originale"@fr, "oorspronkelijke taal"@nl, "original language"@en ; + rdfs:range :Language ; + rdfs:subPropertyOf :language, dul:isExpressedBy ; + owl:equivalentProperty wikidata:P364 ; + prov:wasDerivedFrom . + +:originalMaximumBoatBeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "original maximum boat beam (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:originalMaximumBoatLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Canal ; + rdfs:label "original maximum boat length (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:originalName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The original name of the entity, e.g. film, settlement, etc."@en ; + rdfs:label "oorspronkelijke naam"@nl, "original name"@en, "ursprünglicher Namen"@de ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:originalNotLatinTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The original non latin title of the work"@en, "Titre original non latin de l'oeuvre"@fr ; + rdfs:domain :Work ; + rdfs:label "titre original non latin"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:originalStartPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Canal ; + rdfs:label "original start point"@en, "ursprünglicher Ausgangspunkt"@de, "πρωταρχική_αρχή"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:originalTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The original title of the work, most of the time in the original language as well"@en, "Titre original de l'oeuvre, le plus souvent aussi dans la langue d'origine"@fr ; + rdfs:domain :Work ; + rdfs:label "Originaltitel"@de, "oorspronkelijke titel"@nl, "original title"@en, "titre original"@fr ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:originallyUsedFor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Original use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose."@en ; + rdfs:label "oorspronkelijk gebruik"@nl, "originally used for"@en, "ursprünglich verwendet für"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:origo + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Muscle ; + rdfs:label "origo"@en ; + rdfs:range :AnatomicalStructure ; + prov:wasDerivedFrom . + +:orogeny + a rdf:Property, owl:ObjectProperty ; + rdfs:label "orogeny"@en, "orogenèse"@fr ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:orpha + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Disease ; + rdfs:label "ORPHA"@de, "ORPHA"@en, "ORPHA"@fr, "ORPHA"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:orthologousGene + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Gene ; + rdfs:label "Orthologous Gene"@en, "オーソロガス遺伝子"@ja ; + rdfs:range :Gene ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:other + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :University ; + rdfs:label "other"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:otherActivity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "andere Aktivität"@de, "autre activité"@fr, "other activity"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:otherAppearances + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "other appearances"@en ; + rdfs:range :OlympicResult ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:otherChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "other channel"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:otherFamilyBranch + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :NobleFamily ; + rdfs:label "other branch"@en, "zijtak"@nl ; + rdfs:range :Family ; + prov:wasDerivedFrom . + +:otherFuelType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PowerStation ; + rdfs:label "secondary/other fuel type"@en ; + prov:wasDerivedFrom . + +:otherFunction + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "andere Funktion"@de, "autre fonction"@fr, "other function"@en ; + prov:wasDerivedFrom . + +:otherInformation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "andere Informationen einer Siedlung"@de, "other information of a settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:otherLanguage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "anderen Sprache einer Siedlung"@de, "autre langue de la colonie"@fr, "other language of a settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:otherMedia + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "andere Medien"@de, "other media"@en ; + rdfs:range :PeriodicalLiterature ; + prov:wasDerivedFrom . + +:otherName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "anderer Name"@de, "other name"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:otherOccupation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "other occupation"@en ; + rdfs:range :PersonFunction ; + prov:wasDerivedFrom . + +:otherParty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OfficeHolder ; + rdfs:label "andere Partei"@de, "other party"@en ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:otherServingLines + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Connecting services that serve the station such as bus, etc."@en ; + rdfs:domain :Station ; + rdfs:label "andere Verbindungen"@de, "andere verbindingen"@nl, "other serving lines"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:otherSportsExperience + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "otherSportsExperience"@en, "スポーツ歴"@ja ; + rdfs:range :Athletics ; + prov:wasDerivedFrom . + +:otherWins + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "Sonstige Siege"@de, "other wins"@en ; + rdfs:range xsd:nonNegativeInteger ; + rdfs:subPropertyOf :Wins ; + prov:wasDerivedFrom . + +:otherWorks + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Indique l'existence d'autres oeuvres antérieures/postérieures."@fr, "Tells about existence of other works."@en ; + rdfs:domain :Work ; + rdfs:label "autres oeuvres"@fr, "other works"@en ; + rdfs:range :WorkSequence ; + prov:wasDerivedFrom . + +:outflow + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :BodyOfWater ; + rdfs:label "Abfluss"@de, "outflow"@en, "εκροή"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:output + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "output"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:outputHistory + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Existence of multiple output dates."@en, "Indique qu'il existe plusieurs dates de sortie. Valeur oui / non."@fr ; + rdfs:domain :MusicalWork ; + rdfs:label "historique de sortie"@fr, "output history"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:outskirts + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "outskirts"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:overallRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CollegeCoach ; + rdfs:label "Gesamtbilanz"@de, "overall record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:oversight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "oversight"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:owner + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Used as if meaning: owned by, has as its owner"@en ; + rdfs:label "Eigentümer"@de, "dueño"@es, "eigenaar"@nl, "owner"@en, "propriétaire"@fr, "właściciel"@pl, "úinéir"@ga, "ιδιοκτήτης"@el ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P127 ; + prov:wasDerivedFrom . + +:owningCompany + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Besitzerfirma"@de, "owning company"@en ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:owningOrganisation + a rdf:Property, owl:ObjectProperty ; + rdfs:label "owning organisation"@en, "οργανισμός"@el ; + rdfs:range :Organisation ; + rdfs:subPropertyOf :owner ; + owl:equivalentProperty wikidata:P1830 ; + prov:wasDerivedFrom . + +:owns + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Used as if meaning: has property rights over"@en ; + rdfs:domain :Agent ; + rdfs:label "in bezit van"@nl, "owns"@en ; + rdfs:range :Thing ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:painter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artwork ; + rdfs:label "Maler"@de, "painter"@en, "peintre"@fr, "ζωγράφος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:pandemic + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Epidémie globale de maladie infectieuse"@fr, "Global epidemic of infectious disease"@en, "也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病"@zh ; + rdfs:label "Pandemic"@en, "Pandémie"@fr, "瘟疫"@zh ; + rdfs:range :Disease ; + prov:wasDerivedFrom . + +:pandemicDeaths + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of deaths caused by pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Deaths"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:parent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Elternteil"@de, "ouder"@nl, "parent"@en, "parent"@fr, "親"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:parentCompany + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Muttergesellschaft"@de, "parent company"@en ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:parentMountainPeak + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Mountain ; + rdfs:label "parent mountain peak"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:parentOrganisation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "moederorganisatie"@nl, "parent organisation"@en ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:parentheses + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "haakjes"@nl, "parentheses"@en, "parenthèses"@fr ; + prov:wasDerivedFrom . + +:parish + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Gemeinde"@de, "parish"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:parkingInformation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Information on station's parking facilities."@en ; + rdfs:domain :Station ; + rdfs:label "Parkplatzinformationen"@de, "parking information"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:parkingLotsCars + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RestArea ; + rdfs:label "aantal parkeerplaatsen personenauto's"@nl, "number of parking lots for cars"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:parkingLotsTrucks + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RestArea ; + rdfs:label "aantal parkeerplaatsen vrachtwagens"@nl, "number of parking lots for trucks"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:parliament + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Parlament"@de, "parliament"@en ; + rdfs:range :Parliament ; + prov:wasDerivedFrom . + +:parliamentType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "parliament type"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:parliamentaryGroup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Fraktion"@de, "parliamentary group"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:part + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Teil"@de, "part"@en ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:partialFailedLaunches + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "total number of launches resulting in partial failure"@en ; + rdfs:label "partial failed launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:participant + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Event ; + rdfs:label "Teilnehmer"@de, "deelnemer"@nl, "participant"@en, "participant"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:participatingIn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MemberResistanceMovement ; + rdfs:label "neemt deel aan"@nl, "nimmt Teil an"@de, "participates/participated in"@en ; + rdfs:range :SocietalEvent ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:particularSign + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "particular sign"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:partitionCoefficient + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Partition coefficient"@en, "Verdelingscoëfficiënt"@nl, "Verteilungskoeffizient"@de ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:partner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Partner"@de, "partenaire"@fr, "partner"@en, "partner"@nl, "συνέταιρος"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:party + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Partei"@de, "partij"@nl, "party"@en, "πάρτυ"@el, "ፓርቲ"@am, "政党"@ja ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:isMemberOf ; + owl:equivalentProperty wikidata:P102 ; + prov:wasDerivedFrom . + +:partyNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "número do partido"@pt, "party number"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:passengersPerDay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de passagers par jour."@fr, "Number of passengers per day."@en ; + rdfs:domain :Infrastructure ; + rdfs:label "Passagiere pro Tag"@de, "passagers par jour"@fr, "passengers per day"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:passengersPerYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Nombre de passagers par an."@fr, "Number of passengers per year."@en ; + rdfs:domain :Infrastructure ; + rdfs:label "Passagiere pro Jahr"@de, "passagers par an"@fr, "passagiers per jaar"@nl, "passengers per year"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:passengersUsedSystem + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "System the passengers are using (from which the passenger statistics are)."@en ; + rdfs:domain :Station ; + rdfs:label "benutztes System der Passagiere"@de, "passengers used system"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:pastMember + a rdf:Property, owl:ObjectProperty ; + rdfs:label "past member"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:pastor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :HistoricBuilding ; + rdfs:label "pastor"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:patent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Patent"@de, "patent"@en, "patente"@pt ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:patron + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "Patron"@de, "patron"@en, "patrono"@pt ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:patronSaint + a rdf:Property, owl:ObjectProperty ; + rdfs:label "patron saint"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:pccSecretary + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "pcc secretary"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:pdb + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "gene entry for 3D structural data as per the PDB (Protein Data Bank) database"@en ; + rdfs:domain :Protein ; + rdfs:label "PDB ID"@en, "PDB ID"@ja ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P638 ; + prov:wasDerivedFrom . + +:peabodyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Comedian ; + rdfs:label "Peabody Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:penaltiesTeamA + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PenaltyShootOut ; + rdfs:label "Penalties Team A"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:penaltiesTeamB + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PenaltyShootOut ; + rdfs:label "Penalties Team B"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:penaltyScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PenaltyShootOut ; + rdfs:label "penalty score"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:pendamicDeaths + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of deaths caused by pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Deaths"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:penisLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "longeur du pénis"@fr, "penis length"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:peopleFullyVaccinated + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: Number of people fully vaccinated."@en ; + rdfs:label "People Fully Vaccinated"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:peopleName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Name for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "peopleName"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:peopleVaccinated + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: Number of people vaccinated."@en ; + rdfs:label "People Vaccinated"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:peopleVaccinatedPerHundred + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: total vaccination percent."@en ; + rdfs:label "People Vaccinated Per Hundred"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:perCapitaIncome + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Pro-Kopf-Einkommen ($)"@de, "per capita income ($)"@en, "renda per capita ($)"@pt ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:perCapitaIncomeAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "per capita income as of"@en, "renda per capita em"@pt ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:perCapitaIncomeRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "per capital income rank"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:percentage + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Prozent"@de, "percentage"@en, "percentage"@nl ; + prov:wasDerivedFrom . + +:percentageAlcohol + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "percentage of alcohol present in a beverage"@en ; + rdfs:domain :Beverage ; + rdfs:label "Anteil von Alkohol"@de, "alcoholpercentage"@nl, "percentage of alcohol"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:percentageFat + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "how much fat (as a percentage) does this food contain. Mostly applies to Cheese"@en ; + rdfs:domain :Food ; + rdfs:label "Fettgehalt"@de, "percentage of fat"@en, "vetgehalte"@nl ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:percentageLiteracyMen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "percentage of a place's male population that is literate, degree of analphabetism"@en, "percentage van de mannelijke bevolking dat geletterd is"@nl, "pourcentage de la population masculine alphabétisée d'un lieu, degré d'analphabétisme"@fr ; + rdfs:range xsd:float ; + rdfs:subPropertyOf :percentageLiterate ; + prov:wasDerivedFrom . + +:percentageLiteracyWomen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "percentage of a place's female population that is literate, degree of analphabetism"@en, "percentage van de vrouwelijke bevolking dat geletterd is"@nl, "pourcentage de la population féminine alphabétisée d'un lieu, degré d'analphabétisme"@fr ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:percentageLiterate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "percentage of a place's population that is literate, degree of analphabetism"@en, "percentage van de bevolking dat geletterd is"@nl ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:percentageOfAreaWater + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "percentage of area water"@en, "percentage wateroppervlak"@nl, "ποσοστό_υδάτων"@el, "የውሃ አካል መቶኛ"@am ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:performer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Künstler"@de, "performer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:periapsis + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "Periapsisdistanz (μ)"@de, "periapsis (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:perifocus + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "perifocus"@en, "perifocus"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:perimeter + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "omtrek (μ)"@nl, "perimeter (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:period + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Veranstaltungsdauer"@de, "event period"@en, "periode"@nl, "période"@fr ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:perpetrator + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Attack ; + rdfs:label "Täter"@de, "auteur"@fr, "dader"@nl, "perpetrator"@en ; + rdfs:range :Agent ; + prov:wasDerivedFrom . + +:person + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "Person"@de, "person"@en, "άτομο"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:isRoleOf ; + prov:wasDerivedFrom . + +:personFunction + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Amt"@de, "person function"@en, "persoon functie"@nl ; + rdfs:range :PersonFunction ; + rdfs:subPropertyOf dul:hasRole ; + prov:wasDerivedFrom . + +:personName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PersonFunction ; + rdfs:label "nom de personne"@fr, "personName"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1448 ; + prov:wasDerivedFrom . + +:personsFirstDosesCumul + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of persons received first vaccine doses"@en ; + rdfs:label "PersonsFirstDosesCumul"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty :vaccine ; + prov:wasDerivedFrom . + +:personsFullDosesCumul + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of persons received full vaccine doses"@en ; + rdfs:label "PersonsFullDosesCumul"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty :vaccine ; + prov:wasDerivedFrom . + +:pfizer + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "American multinational pharmaceutical corporation the COVID-19 vaccine Pfizer–BioNTech COVID-19 vaccine"@en, "Corporation pharmaceutique multinationale américaine, vaccin contre le COVID-19, vaccin Pfizer–BioNTech COVID-19"@fr, "辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市"@zh ; + rdfs:label "Pfizer"@en, "Pfizer"@fr, "辉瑞"@zh ; + rdfs:range xsd:string ; + owl:equivalentProperty :vaccine ; + prov:wasDerivedFrom . + +:pfizerCumul + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市"@en ; + rdfs:label "PfizerCumulativeDoses"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty :pfizer ; + prov:wasDerivedFrom . + +:pgaWins + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "pga wins"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:philosophicalSchool + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "philosophicalSchool"@en ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:phonePrefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Don't use this, use areaCode"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Telefonvorwahl"@de, "phone prefix"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:phonePrefixLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "phone prefix label of a settlement"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:photographer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionEpisode ; + rdfs:label "Fotograf"@de, "photographe"@fr, "photographer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:phylum + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A rank in the classification of organisms, below kingdom and above class; also called a division, especially in describing plants; a taxon at that rank."@en, "En systématique, l'embranchement (ou phylum) est le deuxième niveau de classification classique des espèces vivantes."@fr ; + rdfs:domain :Species ; + rdfs:label "Embranchement phylogénétique"@fr, "filo"@es, "phylum"@en, "門_(分類学)"@ja ; + rdfs:subPropertyOf dul:isSpecializedBy ; + prov:wasDerivedFrom . + +:picture + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A picture of something or someone."@en, "Image de quelque chose ou quelqu'un."@fr ; + rdfs:label "afbeelding"@nl, "bild"@de, "figura"@pt, "image"@fr, "picture"@en, "εικόνα"@el, "рисунок"@ru ; + rdfs:subPropertyOf dul:concretelyExpresses ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:pictureDescription + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Bildbeschreibung"@de, "picture description"@en ; + prov:wasDerivedFrom . + +:pictureFormat + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "Bildformat"@de, "format d'image"@fr, "picture format"@en ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:pictureSize + a rdf:Property, owl:ObjectProperty ; + rdfs:label "picture size"@en ; + prov:wasDerivedFrom . + +:picturesCommonsCategory + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Wikimedia CommonsCategory for pictures of this resource"@en ; + rdfs:label "pictures Commons category"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:piercing + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Piercing"@de, "piercing"@en, "piercing"@pt ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:pisciculturalPopulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "piscicultural population"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:pistonStroke + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "piston stroke (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:place + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Relates an entity to the populated place in which it is located."@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:placeOfBurial + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "De plaats waar een persoon is begraven."@nl, "The place where the person has been buried."@en, "Ο τόπος όπου το πρόσωπο έχει θαφτεί."@el ; + rdfs:domain :Person ; + rdfs:label "Ort der Bestattung"@de, "begraafplaats"@nl, "lloc d'enterrament"@ca, "miejsce pochówku"@pl, "place of burial"@en, "τόπος θαψίματος"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P119 ; + prov:wasDerivedFrom . + +:placeOfWorship + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A religious administrative body needs to know which places of worship it"@en, "Een kerkelijke organisatie houdt bij welke gebedshuizen ze heeft"@nl, "Une structure administrative religieuse doit connaître ses lieux de culte"@fr ; + rdfs:domain :ClericalAdministrativeRegion ; + rdfs:label "Kultstätte"@de, "gebedsplaats"@nl, "lieu de culte"@fr, "place of worship"@en ; + rdfs:range :ReligiousBuilding ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:plant + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Pflanze"@de, "plant"@en, "φυτό"@el, "植物"@ja ; + rdfs:range :Plant ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:playRole + a rdf:Property, owl:ObjectProperty ; + rdfs:label "play role"@en ; + rdfs:subPropertyOf :uses, dul:hasRole ; + prov:wasDerivedFrom . + +:playerInTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A person playing for a sports team. inverseOf team"@en, "Άτομο που παίζει για αθλητική ομάδα."@el ; + rdfs:domain :SportsTeam ; + rdfs:label "Spieler im Team"@de, "player in team"@en, "παίχτης σε ομάδα"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:playerSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "player season"@en ; + prov:wasDerivedFrom . + +:playerStatus + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Spielerstatus"@de, "player status"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:playingTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Spielzeit (s)"@de, "playing time (s)"@en, "speeltijd (s)"@nl ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:plays + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "plays"@en, "slaghand"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:pleochroism + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Pleochroism is an optical phenomenon in which a substance has different colors when observed at different angles, especially with polarized light"@en ; + rdfs:label "pleochroism"@en, "pleochroismus"@de, "pleohroisms"@lv, "pléochroïsme"@fr, "πλεοχρωισμός"@el, "多色性"@nl, "色"@ja ; + prov:wasDerivedFrom . + +:pluviometry + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Regenmessung"@de, "pluviometry"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:podium + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Podest"@de, "podium"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:podiums + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "Podestplätze"@de, "podiums"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:pole + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Pol"@de, "pole"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:poleDriver + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "pole driver"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:poleDriverCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "pole driver country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:poleDriverTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "pole driver team"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:polePosition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "pole position"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:poles + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "Pole"@de, "poles"@en, "pôle"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:policeName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The police detachment serving a UK place, eg Wakefield -> \"West Yorkshire Police\""@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "police name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:polishFilmAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Polish Film Award"@en, "Polnischer Filmpreis"@de, "Polska Nagroda Filmowa (Orzeł)"@pl ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:politicGovernmentDepartment + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "ministerio do politico"@pt, "politic government department"@en ; + rdfs:subPropertyOf :Department, dul:hasPart ; + prov:wasDerivedFrom . + +:politicalFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "political function"@en, "politische Funktion"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:politicalLeader + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "political leader"@en, "politischer Führer"@de ; + rdfs:range :PersonFunction ; + prov:wasDerivedFrom . + +:politicalMajority + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "political majority"@en, "politische Mehrheit"@de ; + rdfs:range :PoliticalParty ; + prov:wasDerivedFrom . + +:politicalPartyInLegislature + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Political party in the legislature (eg.: European People's Party in the European Parliament)."@en ; + rdfs:domain :Legislature ; + rdfs:label "political party in legislature"@en, "politische Partei in der Legislative"@de ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:politicalPartyOfLeader + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The Political party of leader."@en ; + rdfs:domain :Legislature ; + rdfs:label "political party of leader"@en, "politische Partei des Vorsitzenden"@de ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:politicalSeats + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "political seats"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:politician + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Der Politiker welcher dieses Amt hält (hielt)."@de, "The politician exercising this function."@en ; + rdfs:domain :PoliticalFunction ; + rdfs:label "Politiker"@de, "politician"@en ; + rdfs:range :Politician ; + prov:wasDerivedFrom . + +:popularVote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Election ; + rdfs:label "Anzahl der Stimmen für Kandidaten"@de, "Number of votes given to candidate"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:population + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "all the inhabitants of a particular place; ex: 14200"@en, "nombre total d'habitants du lieu; ex: 14200"@fr ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population"@en, "population"@fr ; + rdfs:range :Population ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:populationAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "bevolking vanaf"@nl, "population as of"@en, "population en date de"@fr, "χρονιά_απογραφής"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:populationDensity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Bevölkerungsdichte (/sqkm)"@de, "bevolkingsdichtheid (/sqkm)"@nl, "population density (/sqkm)"@en, "πυκνότητα_πληθυσμού (/sqkm)"@el, "घनत्व (/sqkm)"@hi ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:populationMetro + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population metro"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationMetroDensity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "bevolkingsdichtheid (/sqkm)"@nl, "population metro density (/sqkm)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:populationPctChildren + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population percentage under 12 years"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationPctMen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population percentage male"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationPctWomen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population percentage female"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "a place were members of an ethnic group are living"@en ; + rdfs:domain :EthnicGroup ; + rdfs:label "population place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:populationQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "population quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:populationRural + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population rural"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationRuralDensity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population density rural (/sqkm)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:populationTotal + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Einwohnerzahl"@de, "inwonersaantal"@nl, "population total"@en, "population totale"@fr, "população total"@pt, "συνολικός_πληθυσμός"@el ; + rdfs:range xsd:nonNegativeInteger ; + owl:equivalentProperty wikidata:P1082 ; + prov:wasDerivedFrom . + +:populationTotalRanking + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "posição no ranking do total da populacao"@pt, "total population ranking"@en, "የህዝብ ብዛት ደረጃ"@am ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:populationTotalReference + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "referencia do total da populacao"@pt, "total population reference"@en ; + prov:wasDerivedFrom . + +:populationUrban + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Stadtbevölkerung"@de, "population urban"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:populationUrbanDensity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population urban density (/sqkm)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:populationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "population year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:portfolio + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Portfolio"@de, "portfolio"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:portrayer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "portrayer"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:position + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Position"@de, "positie"@nl, "position"@en, "Θέση"@el, "ポジション"@ja ; + owl:equivalentProperty , wikidata:P413 ; + prov:wasDerivedFrom . + +:postalCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A postal code (known in various countries as a post code, postcode, or ZIP code) is a series of letters and/or digits appended to a postal address for the purpose of sorting mail."@en ; + rdfs:label "Postleitzahl"@de, "code postal"@fr, "código postal"@pt, "postal code"@en, "postcode"@nl, "ταχυδρομικός κώδικας"@el ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty , , wikidata:P281, ; + prov:wasDerivedFrom . + +:power + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Macht"@de, "power"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:powerOutput + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Engine ; + rdfs:label "Ausgangsleistung (W)"@de, "power output (W)"@en, "puissance de sortie (W)"@fr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:powerType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "power type"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:precursor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Vorläufer"@de, "precursor"@en ; + rdfs:range :Embryology ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:predecessor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Vorgänger"@de, "predecessor"@en, "voorganger"@nl, "ቀዳሚ"@am, "前任者"@ja ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:prefaceBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrittenWork ; + rdfs:label "Autor des Vorworts"@de, "author of preface"@en, "schrijver voorwoord"@nl ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:prefect + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Politician ; + rdfs:label "Präfekt"@de, "prefect"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:prefectMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RomaniaSettlement ; + rdfs:label "mandate of a prefect of a romanian settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:prefecture + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Department ; + rdfs:label "Präfektur"@de, "prefecture"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:prefix + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Präfix"@de, "prefix"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:premiereDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date the play was first performed."@en ; + rdfs:domain :Play ; + rdfs:label "premiere date"@en ; + rdfs:range xsd:date ; + rdfs:subPropertyOf :releaseDate ; + prov:wasDerivedFrom . + +:premierePlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The theatre and/or city the play was first performed in."@en ; + rdfs:domain :Play ; + rdfs:label "premiere place"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:premiereYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Year the play was first performed."@en ; + rdfs:domain :Play ; + rdfs:label "premiere year"@en ; + rdfs:range xsd:gYear ; + rdfs:subPropertyOf :releaseYear ; + prov:wasDerivedFrom . + +:presentMunicipality + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :FormerMunicipality ; + rdfs:label "aktuelle Gemeinde"@de, "ligt nu in gemeente"@nl, "present municipality"@en ; + rdfs:range :Municipality ; + prov:wasDerivedFrom . + +:presentName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormerMunicipality ; + rdfs:label "a municipality's present name"@en, "heutiger Name einer Gemeinde"@de, "huidige gemeentenaam"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:presenter + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "Moderator"@de, "presenter"@en, "παρουσιαστής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:president + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Präsident"@de, "president"@en, "president"@nl, "presidente"@pt, "président"@fr, "πρόεδρος"@el, "ፕሬዝዳንት"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:presidentGeneralCouncil + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TermOfOffice ; + rdfs:label "president general council"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:presidentGeneralCouncilMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "mandate of the president of the general council"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:presidentRegionalCouncil + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TermOfOffice ; + rdfs:label "president regional council"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:presidentRegionalCouncilMandate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "mandate of the president council of the regional council"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:previousDemographics + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "frühere Demografie"@de, "previous demographics"@en ; + rdfs:range :Demographics ; + prov:wasDerivedFrom . + +:previousEditor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Magazine ; + rdfs:label "previous editor"@en, "πρώην συντάκτης"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:previousEntity + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "previous entity"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:previousEvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Event ; + rdfs:label "Vorveranstaltung"@de, "evento anterior"@pt, "previous event"@en, "vorige evenement"@nl, "événement précédent"@fr ; + rdfs:range :Event ; + rdfs:subPropertyOf dul:follows ; + prov:wasDerivedFrom . + +:previousInfrastructure + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "previous infrastructure"@en, "vorherige Infrastruktur"@de, "vorige infrastructuur"@nl ; + rdfs:range :Infrastructure ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:previousMission + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "frührere Mission"@de, "previous mission"@en ; + rdfs:range :SpaceMission ; + rdfs:subPropertyOf dul:follows ; + prov:wasDerivedFrom . + +:previousName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "früheren Namen"@de, "previous name"@en, "vorige naam"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:previousPopulation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "previous population"@en ; + rdfs:range :Population ; + prov:wasDerivedFrom . + +:previousPopulationTotal + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "previous population total"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:previousTrackNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of the previous track of the recorded work."@en, "numéro de la piste précédente du support."@fr ; + rdfs:domain :Work ; + rdfs:label "number of the previous track"@en, "numéro de la piste précédente"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:previousWork + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "früheren Arbeiten"@de, "oeuvre précédente"@fr, "previous work"@en, "vorig werk"@nl, "προηγούμενη δημιουργία"@el ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:previousWorkDate + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Année de sortie de l'oeuvre précédente"@fr, "Year when previous work was released"@en ; + rdfs:domain :Work ; + rdfs:label "année de sortie oeuvre précédente"@fr, "previous work date"@en ; + rdfs:range :year ; + prov:wasDerivedFrom . + +:price + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The price of something, eg a journal. For \"total money earned by an Athlete\" use gross"@en ; + rdfs:label "Preis ($)"@de, "price ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:primaryFuelType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PowerStation ; + rdfs:label "primary fuel type"@en ; + prov:wasDerivedFrom . + +:primate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChristianDoctrine ; + rdfs:label "Primite"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:primeMinister + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Premierminister"@de, "minister-president"@nl, "prime minister"@en, "ጠቅላይ ሚኒስትር"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P6 ; + prov:wasDerivedFrom . + +:primogenitor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Family ; + rdfs:label "primogenitor, first forebear"@en, "stamvader"@nl ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:principal + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Principal of an educational institution (school)"@en, "Директор на училище"@bg ; + rdfs:domain :EducationalInstitution ; + rdfs:label "principal"@en, "директор (на училище)"@bg ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:principalArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Hauptbereich"@de, "principal area"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:principalEngineer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Canal ; + rdfs:label "principal engineer"@en, "πρώτος_μηχανικός"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:proTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "pro team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:probowlPick + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "pro bowl pick"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:procedure + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "De naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak"@nl, "The name designating a formal collection of steps to be taken to complete the case"@en ; + rdfs:domain :Case ; + rdfs:label "Verfahren"@de, "procedure"@en, "procedure"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:producedBy + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Film ; + rdfs:label "hergestellt durch"@de, "produced by"@en ; + rdfs:range :Company ; + prov:wasDerivedFrom . + +:producer + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Producteur de l'oeuvre créative."@fr, "The producer of the creative work."@en ; + rdfs:domain :Work ; + rdfs:label "Produzent"@de, "producent"@nl, "producent"@pl, "producer"@en, "producteur"@fr, "παραγωγός"@el, "продюсер"@ru, "አዘጋጅ"@am ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:produces + a rdf:Property, owl:ObjectProperty ; + rdfs:label "produces"@en, "produziert"@de ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:product + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Produkt"@de, "product"@en, "product"@nl, "produit"@fr, "προϊόν"@el ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:productShape + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Food ; + rdfs:label "product shape"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:production + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Produktion"@de, "production"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:productionCompany + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the company that produced the work e.g. Film, MusicalWork, Software"@en ; + rdfs:domain :Work ; + rdfs:label "Produktionsfirma"@de, "productiebedrijf"@nl, "production company"@en, "አዘጋጅ ድርጅት"@am ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:productionEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "production end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:productionEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "dernière année de production"@fr, "productie eindjaar"@nl, "production end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:productionStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Produktionsbeginn"@de, "production start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:productionStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "productie beginjaar"@nl, "production start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:productionYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Produktionsjahre"@de, "années de production"@fr, "production years"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:profession + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Beruf"@de, "beroep"@nl, "profession"@en, "profession"@fr, "επάγγελμα"@el, "ሙያ"@am ; + rdfs:subPropertyOf dul:hasRole ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:programCost + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "program cost ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:programmeFormat + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The programming format describes the overall content broadcast on a radio or television station."@en ; + rdfs:domain :Broadcaster ; + rdfs:label "programme format"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:programmingLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Software ; + rdfs:label "Programmiersprache"@de, "langage de programmation"@fr, "programmeringssprog"@da, "programming language"@en ; + rdfs:subPropertyOf dul:isExpressedBy ; + prov:wasDerivedFrom . + +:project + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Projekt"@de, "project"@en, "projet"@fr ; + rdfs:range :Project ; + prov:wasDerivedFrom . + +:projectBudgetFunding + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The part of the project budget that is funded by the Organistaions given in the \"FundedBy\" property."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "project budget funding ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:projectBudgetTotal + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The total budget of the research project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "Gesamtprojektbudget ($)"@de, "project budget total ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:projectCoordinator + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Organisation coordinatrice du project."@fr, "The coordinating organisation of the project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "Projektkoordinator"@de, "project coordinator"@en, "régisseur"@fr ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:projectEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The end date of the project."@en ; + rdfs:domain :Project ; + rdfs:label "Projektende"@de, "project end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:projectKeyword + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A key word of the project."@en ; + rdfs:domain :Project ; + rdfs:label "project keyword"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:projectObjective + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A defined objective of the project."@en ; + rdfs:domain :Project ; + rdfs:label "Projektziel"@de, "project objective"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:projectParticipant + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A participating organisation of the project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "Projektteilnehmer"@de, "project participant"@en ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:projectReferenceID + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The reference identification of the project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "project reference ID"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:projectStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The start date of the project."@en ; + rdfs:domain :Project ; + rdfs:label "Projektstart"@de, "project start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:projectType + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The type of the research project. Mostly used for the funding schemes of the European Union, for instance: Specific Targeted Research Projects (STREP), Network of Excellence (NoE) or Integrated Project."@en ; + rdfs:domain :ResearchProject ; + rdfs:label "Projekttyp"@de, "project type"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:prominence + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "prominence (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:promotion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WrestlingEvent ; + rdfs:label "Förderung"@de, "promotion"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:pronunciation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Aussprache"@de, "pronunciation"@en, "አጠራር"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P443 ; + prov:wasDerivedFrom . + +:prospectLeague + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "prospect league"@en ; + rdfs:range :SportsLeague ; + prov:wasDerivedFrom . + +:prospectTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "prospect team"@en ; + rdfs:range :HockeyTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:protectionStatus + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk"@nl, "The sort of status that is granted to a protected Building or Monument. This is not about being protected or not, this is about the nature of the protection regime. E.g., in the Netherlands the protection status 'rijksmonument' points to more elaborate protection than other statuses."@en ; + rdfs:domain :Place ; + rdfs:label "monument protection status"@en, "monumentStatus"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :Status ; + prov:wasDerivedFrom . + +:protein + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Amount of proteins per servingSize of a Food"@en ; + rdfs:domain :Food ; + rdfs:label "protein (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:protestantPercentage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "protestant percentage"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + + + a owl:Class ; + rdfs:comment "http://www.w3.org/ns/prov#Entity"@en, "http://www.w3.org/ns/prov#Entity"@fr ; + rdfs:label "Entity"@en, "Entity"@fr, "ہستی"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + + + a owl:Class ; + rdfs:comment "http://www.w3.org/ns/prov#Revision"@en, "http://www.w3.org/ns/prov#Revision"@fr ; + rdfs:label "Revision"@en, "Révision"@fr, "نظر ثانی"@ur ; + rdfs:subClassOf owl:Thing ; + prov:wasDerivedFrom . + +:provCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "prove code"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:provides + a rdf:Property, owl:ObjectProperty ; + rdfs:label "bietet"@de, "provides"@en ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:province + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Provinz"@de, "province"@en, "provincie"@nl, "επαρχία"@el ; + rdfs:range :Province ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P131, ; + prov:wasDerivedFrom . + +:provinceIsoCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "iso code of a province"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :isoCode ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:provinceLink + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "province link"@en ; + rdfs:range :Province ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:provost + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :University ; + rdfs:label "provost"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:pseudonym + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Pseudonym"@de, "pseudoniem"@nl, "pseudonym"@en, "pseudonyme"@fr ; + rdfs:range rdf:langString ; + owl:equivalentProperty wikidata:P742 ; + prov:wasDerivedFrom . + +:pubchem + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "PubChem"@en, "PubChem"@fr, "PubChem"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:publication + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Veröffentlichung"@de, "publication"@en, "publication"@fr ; + rdfs:range xsd:string ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:publicationDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Veröffentlichungsdatum"@de, "publicatiedatum"@nl, "publication date"@en ; + rdfs:range xsd:date ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:publiclyAccessible + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "describes in what way this site is accessible for public"@en ; + rdfs:label "publicly accessible"@en, "öffentlich zugänglich"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:publisher + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Editeur d'une oeuvre. Pour le littéral (string) utilisez dc:publisher; pour l'objet (URL) utilisez l'éditeur"@fr, "Publisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher"@en ; + rdfs:domain :Work ; + rdfs:label "Herausgeber"@de, "publisher"@en, "uitgever"@nl, "éditeur"@fr, "εκδότης"@el ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:purchasingPowerParity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "purchasing power parity"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:purchasingPowerParityRank + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "purchasing power parity rank"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:purchasingPowerParityYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "purchasing power parity year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:purpose + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Zweck"@de, "doel"@nl, "objectif"@fr, "purpose"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:qatarClassic + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "qatar classic"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:quebecerTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "quebecer title"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:quotation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A quotation is the repetition of one expression as part of another one, particularly when the quoted expression is well-known or explicitly attributed by citation to its original source."@en, "En su acepción más amplia, una cita es un recurso retórico que consiste en reproducir un fragmento de una expresión humana respetando su formulación original."@es, "Une citation est la reproduction d'un court extrait d'un propos ou d'un écrit antérieur dans la rédaction d'un texte ou dans une forme d'expression orale."@fr ; + rdfs:label "Zitat"@de, "cita"@es, "citation"@fr, "quotation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:quote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ra + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "ra"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:race + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Rennen"@de, "race"@en ; + rdfs:range :Race ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:raceHorse + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Rennpferd"@de, "race horse"@en ; + rdfs:range :Horse ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:raceLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacing ; + rdfs:label "Rennlänge (μ)"@de, "race length (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:raceResult + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Result of one racer in a sport competition"@en ; + rdfs:domain :Race ; + rdfs:label "race result"@en ; + rdfs:range :SportCompetitionResult ; + prov:wasDerivedFrom . + +:raceTrack + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsEvent ; + rdfs:label "Rennstrecke"@de, "circuit"@fr, "race track"@en ; + rdfs:range :RaceTrack ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:raceWins + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Siege"@de, "race wins"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:races + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FormulaOneRacer ; + rdfs:label "Rennen"@de, "races"@en, "αγώνας"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:racketCatching + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "racket catching"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:radio + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "To ραδιόφωνο είναι η συσκευή που λειτουργεί ως \"ραδιοδέκτης - μετατροπέας\" όπου λαμβάνοντας τις ραδιοφωνικές εκπομπές των ραδιοφωνικών σταθμών τις μετατρέπει σε ήχο."@el ; + rdfs:domain :Person ; + rdfs:label "Radio"@de, "radio"@en, "radio"@fr, "ραδιόφωνο"@el ; + rdfs:range :RadioStation ; + prov:wasDerivedFrom . + +:radioStation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RadioStation ; + rdfs:label "radio station"@en, "radiozender"@nl, "station de radio"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:radius_ly + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Globularswarm ; + rdfs:label "Radius_ly"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:railGauge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Spurweite Eisenbahn (μ)"@de, "rail gauge (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:railwayLineUsingTunnel + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Railway line that is using the tunnel."@en ; + rdfs:domain :RailwayTunnel ; + rdfs:label "Tunnel benutzende Eisenbahnlinie"@de, "railway line using tunnel"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:railwayPlatforms + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Information on the type of platform(s) at the station."@en ; + rdfs:domain :Station ; + rdfs:label "Bahnsteige"@de, "perrons"@nl, "railway platforms"@en, "αποβάθρα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:railwayRollingStock + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Operierende Schienenfahrzeuge"@de, "railway rolling stock"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:range + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Maximum distance without refueling"@en ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "bereik"@nl, "range"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:rank + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Rang d'un élément parmi d'autres éléments du même type, par ex. les constellations par zone; les albums de musique par popularité, etc..."@fr, "Rank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etc"@en ; + rdfs:label "Platzierung"@de, "rang"@fr, "rank"@en, "ደረጃ"@am ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:rankAgreement + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "rank of an agreement"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rankArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "rank of an area"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rankInFinalMedalCount + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "rank in final medal count"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:rankPopulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "rank of a population"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:ranking + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Rangliste"@de, "classement"@fr, "ranking"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:rankingWins + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SnookerPlayer ; + rdfs:label "Siege in Ranglistenturnieren"@de, "ranking wins"@en ; + rdfs:range xsd:nonNegativeInteger ; + rdfs:subPropertyOf :Wins ; + prov:wasDerivedFrom . + +:rankingsDoubles + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Doppelrangliste"@de, "doubles rankings"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rankingsSingles + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Einzelrangliste"@de, "single rankings"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rating + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Wertung"@de, "cijfer"@nl, "rating"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:ratio + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "ratio"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:realm + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "realm"@en, "ግዛት"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:isPartOf ; + owl:equivalentProperty wikidata:P131, ; + prov:wasDerivedFrom . + +:rebuildDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "herbouw datum"@nl, "rebuild date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:rebuilder + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "rebuilder"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:rebuildingDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "rebuilding date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:rebuildingYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "herbouw jaar"@nl, "rebuilding year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:recentWinner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Race ; + rdfs:label "letzter Gewinner"@de, "recent winner"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:recommissioningDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "recommissioning date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:recordDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MusicalWork ; + rdfs:label "Stichtag"@de, "date d'enregistrement"@fr, "opname datum"@nl, "record date"@en, "ηχογράφηση"@el ; + rdfs:range xsd:date ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:recordLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:label "compañía discográfica"@es, "label discographique"@fr, "platenlabel"@nl, "record label"@en, "δισκογραφική"@el ; + rdfs:range :RecordLabel ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P264 ; + prov:wasDerivedFrom . + +:recordedIn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicalWork ; + rdfs:label "enregistré à"@fr, "opgenomen in"@nl, "recorded in"@en, "ηχογράφηση"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:recoveryCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of recovered cases in a pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Recovery Cases"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:rector + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :EducationalInstitution ; + rdfs:label "Rektor"@de, "rector"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:redListIdNL + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "red list code for treatened species NL (different from IUCN)"@en, "rode lijst ID van bedreigde soorten in Nederland"@nl ; + rdfs:domain :Species ; + rdfs:label "red list ID NL"@en, "rode lijst ID NL"@nl ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:redLongDistancePisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "red long distance piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:redSkiPisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "red ski piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:redline + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "redline (kmh)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:refcul + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "reference for cultural data"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:reference + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Structured reference providing info about the subject"@en ; + rdfs:domain :Reference ; + rdfs:label "Referenz"@de, "reference"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:reffBourgmestre + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "referent bourgmestre"@en ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:refgen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Referenz für allgemeine Daten"@de, "reference for general data"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:refgeo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Referenz für geographische Daten"@de, "geometrie"@nl, "reference for geographic data"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:refpol + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Referenz für politische Daten"@de, "reference for politic data"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:refseq + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Protein ; + rdfs:label "RefSeq"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:refseqmrna + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "refseq mRNA"@en, "refseq mRNA"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:refseqprotein + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "refseq protein"@en, "refseq protein"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:regency + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Regentschaft"@de, "kabupaten"@in, "regency"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:regentOf + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Subject has served as the regent of another monarch"@en ; + rdfs:domain :Monarch ; + rdfs:label "regent of"@en ; + rdfs:range :Monarch ; + prov:wasDerivedFrom . + +:regime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "regime"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:region + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The regin where the thing is located or is connected to."@en ; + rdfs:label "Region"@de, "regio"@nl, "region"@en, "region"@pl, "περιοχή"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:regionLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "region link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:regionServed + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "region served"@en, "werkgebied"@nl ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:regionType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "regio-type"@nl, "region type"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:regionalCouncil + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "Gemeinderat"@de, "regional council"@en ; + rdfs:range :TermOfOffice ; + prov:wasDerivedFrom . + +:regionalLanguage + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Regionalsprache"@de, "regional language"@en ; + rdfs:range :Language ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:regionalPrefecture + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "regional prefecture"@en, "regionale Präfektur"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:registration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Anmeldung"@de, "enregistrement"@fr, "registration"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:registry + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A registry recording entires with associated codes."@en, "Ein Register welches Einträge mit Kennungen versieht."@de ; + rdfs:label "Register"@de, "registre"@fr, "registry"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:registryNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Identification of the registry a document is in"@en ; + rdfs:domain :Document ; + rdfs:label "Registrierungsnummer"@de, "registernummer"@nl, "registry number"@en ; + rdfs:range xsd:string ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:reign + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "reign"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:reignName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "reign name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:reigningPope + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Cleric ; + rdfs:label "regerende paus"@nl, "reigning pope"@en ; + rdfs:range :Pope ; + prov:wasDerivedFrom . + +:related + a rdf:Property, owl:ObjectProperty ; + rdfs:label "gerelateerd"@nl, "related"@en, "verbunden"@de ; + rdfs:subPropertyOf dul:associatedWith ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:relatedFunctions + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Deze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed"@nl, "This property is to accommodate the list field that contains a list of related personFunctions a person holds or has held"@en ; + rdfs:domain :Person ; + rdfs:label "related functions"@en, "soortgelijke functies"@nl ; + rdfs:range :List ; + rdfs:subPropertyOf dul:unifies ; + prov:wasDerivedFrom . + +:relatedMeanOfTransportation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "related mean of transportation"@en ; + rdfs:range :MeanOfTransportation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:relatedPlaces + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Deze property is voor de lijst van monumenten die horen bij het monument van de infobox"@nl, "This property is to accommodate the list field that contains a list of, e.g., monuments in the same town"@en ; + rdfs:domain :Place ; + rdfs:label "related places"@en, "soortgelijke plaatsen"@nl ; + rdfs:range :List ; + rdfs:subPropertyOf dul:unifies ; + prov:wasDerivedFrom . + +:relation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Beziehung"@de, "relatie"@nl, "relation"@en, "σχέση"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:relative + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Verwandter"@de, "parente"@gl, "relative"@en, "συγγενής"@el, "親戚"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:relativeAtomicMass + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Maiseanna adamh, a chuirtear síos i dtéarmaí aonaid maise adamhaí u."@ga, "the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12"@en ; + rdfs:domain :ChemicalElement ; + rdfs:label "Mais adamhach choibhneasta"@ga, "atomic weight"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:releaseDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date de sortie d'un travail ou d'un autre produit (un avion, d'autres moyens de transport..."@fr, "Release date of a Work or another product (eg Aircraft or other MeansOfTransportation"@en ; + rdfs:label "data wydania"@pl, "date de sortie"@fr, "release date"@en, "release datum"@nl, "udgivet"@da, "ημερομηνία κυκλοφορίας"@el, "የተለቀቀበት ዓመት"@am ; + rdfs:range xsd:date ; + owl:equivalentProperty wikidata:P577 ; + prov:wasDerivedFrom . + +:releaseLocation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Usually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here..."@en ; + rdfs:domain :Work ; + rdfs:label "release location"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:relics + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Physical remains or personal effects of a saint or venerated person, preserved in a religious building"@en ; + rdfs:domain :ReligiousBuilding ; + rdfs:label "relics"@en, "реликви"@bg ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:relief + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "relief"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:religion + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Religion"@de, "religie"@nl, "religion"@en, "religion"@fr, "religião"@pt, "θρησκεία"@el, "ሀይማኖት"@am, "宗教"@ja ; + rdfs:subPropertyOf dul:conceptualizes ; + owl:equivalentProperty wikidata:P140 ; + prov:wasDerivedFrom . + +:religiousHead + a rdf:Property, owl:ObjectProperty ; + rdfs:label "religious head"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:religiousHeadLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "religious head label"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:religiousOrder + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Monastry ; + rdfs:label "religieuze orde"@nl, "religious order"@en ; + rdfs:range :ClericalOrder ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:reopened + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "reopened"@en, "wieder eröffnet"@de ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:reopeningDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date of reopening the architectural structure."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Wiedereröffnungdatum"@de, "reopening date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:reopeningYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Year of reopening the architectural structure."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "heropening jaar"@nl, "reopening year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:reportingMark + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A reporting mark is a two-, three-, or four-letter alphabetic code used to identify owners or lessees of rolling stock and other equipment used on the North American railroad network."@en ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "reporting mark"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:representative + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Zahl der Vertreter"@de, "number of representatives"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:requirement + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Anforderung"@de, "requirement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:reservations + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Are reservations required for the establishment or event?"@en ; + rdfs:domain :Restaurant ; + rdfs:label "Reservierungen"@de, "reservations"@en ; + rdfs:range xsd:boolean ; + prov:wasDerivedFrom . + +:residence + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Place of residence of a person."@en ; + rdfs:domain :Person ; + rdfs:label "Residenz"@de, "miejsce zamieszkania"@pl, "residence"@en, "verblijfplaats"@nl, "κατοικία"@el, "居住地"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P551 ; + prov:wasDerivedFrom . + +:resolution + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Native Resolution"@en ; + rdfs:domain :Software ; + rdfs:label "Auflösung"@de, "resolution"@en, "résolution"@fr, "ανάλυση"@el ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:restaurant + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Hotel ; + rdfs:label "hotel"@en, "hotêl"@fr ; + rdfs:range :Building ; + prov:wasDerivedFrom . + +:restingDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Person ; + rdfs:label "Bestattungsdatum"@de, "resting date"@en, "埋葬年月日"@ja ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:restingPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Ruhestätte"@de, "resting place"@en, "埋葬地"@ja ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:restingPlacePosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "resting place position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:restoreDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "restore date"@en, "ημερομηνία ανακαίνισης"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:restriction + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Die Verwendung von etwas ist beschränkt."@de, "The use of a thing is restricted in a way."@en ; + rdfs:label "Beschränkung"@de, "restriction"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:result + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryConflict ; + rdfs:label "Folge"@de, "result"@en, "αποτέλεσμα"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:retentionTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "relation time"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:retired + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "retired"@en, "συνταξιούχος"@el ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:retiredRocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "retired rocket"@en ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:retirementDate + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Person ; + rdfs:label "pensioendatum"@nl, "retirement date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:revenue + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Einnahmen ($)"@de, "chiffre d'affaire ($)"@fr, "revenue ($)"@en, "έσοδα ($)"@el, "ገቢ ($)"@am ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2139 ; + prov:wasDerivedFrom . + +:revenueYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organization ; + rdfs:label "year of reported revenue"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:review + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Album ; + rdfs:label "Rezension"@de, "review"@en, "évaluation"@fr ; + rdfs:range xsd:anyURI ; + prov:wasDerivedFrom . + +:rgbCoordinateBlue + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "bluecoordinate in the RGB space"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rgbCoordinateGreen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "green coordinate in the RGB space"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rgbCoordinateRed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "red coordinate in the RGB space"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:ridId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "An identifying system for scientific authors. The system was introduced in January 2008 by Thomson Reuters. The combined use of the Digital Object Identifier with the ResearcherID allows for a unique association of authors and scientific articles."@en ; + rdfs:label "RID Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:rightAscension + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "right ascension"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rightChild + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "right child"@en ; + rdfs:range :Island ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:rightTributary + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "rechter Nebenfluss"@de, "right tributary"@en, "δεξιοί_παραπόταμοι"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:rivalSchool + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "Rivale"@de, "rival"@en ; + rdfs:range :School ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:river + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Fluss"@de, "river"@en, "rivière"@fr, "ποτάμι"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:riverBranch + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "branch"@en, "riviertak"@nl, "διακλαδώσεις"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:riverBranchOf + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "branch of"@en, "διακλάδωση_του"@el ; + rdfs:range :River ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:riverMouth + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "Flussmündung"@de, "river mouth"@en, "riviermonding"@nl, "εκβολές"@el, "የወንዝ መድረሻ"@am ; + rdfs:range :BodyOfWater ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:rkdArtistsId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment """Rijksbureau voor Kunsthistorische Documentatie (RKD) artists database id. +http://rkd.nl/explore/artists/$1"""@en ; + rdfs:label "RKDartists id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P650 ; + prov:wasDerivedFrom . + +:road + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "road"@en, "weg"@nl ; + rdfs:range :Road ; + prov:wasDerivedFrom . + +:rocket + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Rakete"@de, "fusée"@fr, "rocket"@en, "ρουκέτα"@el ; + rdfs:range :Rocket ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:rocketFunction + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "purpose of the rocket"@en ; + rdfs:domain :Rocket ; + rdfs:label "rocket function"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:rocketStages + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of stages, not including boosters"@en ; + rdfs:domain :Rocket ; + rdfs:label "Anzahl von Raketenstufen"@de, "number of rocket stages"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rolandGarrosDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "roland garros double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:rolandGarrosMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "roland garros mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:rolandGarrosSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "roland garros single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:role + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Rolle"@de, "role"@en, "rôle"@fr, "ρόλος"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty , ; + prov:wasDerivedFrom . + +:roleInEvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "A Person's role in an event"@en, "Rol van een persoon in een gebeurtenis"@nl, "rôle d'une personne dans un événement"@fr ; + rdfs:range :Event ; + prov:wasDerivedFrom . + +:roofHeight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Skyscraper ; + rdfs:label "Höhe Dach"@de, "roof height"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:rotationPeriod + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "rotation period (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:route + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Route"@de, "route"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:routeActivity + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "details of the activity for a road."@en, "détail de l'activité sur une route."@fr ; + rdfs:domain :RouteStop ; + rdfs:label "activité de route"@fr, "route activity"@en ; + prov:wasDerivedFrom . + +:routeDirection + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Himmelsrichtung des Verkehrsweges (z.B. North-South)."@de, "The general direction of the route (eg. North-South)."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Himmelsrichtung des Verkehrsweges"@de, "route direction"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:routeEnd + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "End of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus."@en, "Ende des Verkehrswegs."@de ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Wegende"@de, "route end"@en ; + rdfs:range :Station ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:routeEndDirection + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "End of the route. The opposite of OntologyProperty:routeStartDirection."@en, "Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection."@de ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Himmelsrichtung des Wegendes"@de, "road end direction"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:routeEndLocation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "End-Ort des Verkehrswegs."@de, "The end location of the route."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Ort des Wegendes"@de, "route end location"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:routeJunction + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A junction or cross to another route."@en, "Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg."@de ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Wegabzweigung"@de, "route junction"@en ; + rdfs:range :Station ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:routeLine + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "ligne d'un arrêt sur une route."@fr, "line of a stop on a route."@en ; + rdfs:domain :RouteStop ; + rdfs:label "ligne"@fr, "line"@en ; + prov:wasDerivedFrom . + +:routeNext + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "arrêt suivant sur une route."@fr, "next stop on a route."@en ; + rdfs:domain :RouteStop ; + rdfs:label "arrêt suivant"@fr, "route next stop"@en ; + rdfs:range :RouteStop ; + prov:wasDerivedFrom . + +:routeNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The number of the route."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Routennummer"@de, "route number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:routePrevious + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "arrêt précédent sur une route."@fr, "previous stop on a route."@en ; + rdfs:domain :RouteStop ; + rdfs:label "arrêt précédent"@fr, "route previous stop"@en ; + rdfs:range :RouteStop ; + prov:wasDerivedFrom . + +:routeStart + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Anfang des Verkehrswegs."@de, "Start of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus."@en, "point de départ d'une route."@fr ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Weganfang"@de, "point de départ"@fr, "route start"@en ; + rdfs:range :Station ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:routeStartDirection + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "End of the route. For U.S. roads, this should be either \"South\" or \"West\" per the standards set by the U.S. Roads project."@en, "Himmelsrichtung des Anfangs des Verkehrsweges."@de ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Himmelsrichtung des Wegstarts"@de, "road start direction"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:routeStartLocation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Der Startort des Verkehrswegs."@de, "The start location of the route."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Ort des Weganfangs"@de, "route start location"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:routeTypeAbbreviation + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route)."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "route type abbreviation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:royalAnthem + a rdf:Property, owl:ObjectProperty ; + rdfs:label "royal anthem"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:ruling + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Ruling referred to in this legal case"@en ; + rdfs:domain :LegalCase ; + rdfs:label "Entscheidung"@de, "relevante regelgeving"@nl, "ruling"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:runningMate + a rdf:Property, owl:ObjectProperty ; + rdfs:label "compañero de candidatura"@es, "running mate"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:runtime + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Work ; + rdfs:label "Laufzeit (s)"@de, "durée (s)"@fr, "duur (s)"@nl, "runtime (s)"@en, "διάρκεια (s)"@el ; + rdfs:range xsd:double ; + rdfs:subPropertyOf ; + owl:equivalentProperty wikidata:P2047 ; + prov:wasDerivedFrom . + +:runwayDesignation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "designation of runway"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:runwayLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "Start- und Landebahnlänge (μ)"@de, "length of runway (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:runwaySurface + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "surface of runway"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:runwayWidth + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Airport ; + rdfs:label "width of runway (μ)"@en, "滑走路の全幅 (μ)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:ruralMunicipality + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Road ; + rdfs:label "Landgemeinde"@de, "rural municipality"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:saint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Heiliger"@de, "heilige"@nl, "saint"@en, "santo"@pt, "άγιος"@el ; + rdfs:range :Saint ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:salary + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Gehalt ($)"@de, "salary ($)"@en, "μισθός ($)"@el, "給料 ($)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:sales + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "This property holds an intermediate node of the type Sales."@en ; + rdfs:label "Vertrieb"@de, "sales"@en, "vente"@fr, "πώληση"@el ; + rdfs:range :Sales ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:sameName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "gleicher Name"@de, "same name"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:satScore + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "most recent average SAT scores"@en ; + rdfs:domain :School ; + rdfs:label "SAT score"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:satcat + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "satellite catalogue number, omit leading zeroes (e.g. 25544)"@en ; + rdfs:domain :SpaceMission ; + rdfs:label "SATCAT"@de, "SATCAT"@en, "SATCAT"@fr, "SATCAT"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:satellite + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Satellit"@de, "satellite"@en, "δορυφόρος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:satellitesDeployed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceShuttle ; + rdfs:label "satellites deployed"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:scale + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Maßstab"@de, "scale"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:scaleFactor + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Facteur d'échelle (par exemple pour des images) pour aggrandir (valeur > 1) ou réduire (0 < valeur < 1 les proportions. Pour les nombres décimaux, utiliser un point comme séparateur; ex : 0.75"@fr, "Scale factor (ex: for images) to zoom out (value > 1) or reduce (0 < value < 1) the proportions. Decimal numbers use dot séparator; ex : 0.75"@en ; + rdfs:label "facteur d'échelle"@fr, "scale factor"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:scene + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Szene"@de, "scene"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:school + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "school a person goes or went to"@en, "σχολείο στο οποίο πηγαίνει ή πήγε κάποιος"@el ; + rdfs:domain :Person ; + rdfs:label "school"@en, "school"@nl, "schule"@de, "scuola"@it, "école"@fr, "σχολείο"@el ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:schoolBoard + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "school board"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:schoolCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "school code"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:schoolNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "school number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:schoolPatron + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "school patron"@en ; + rdfs:range :Agent ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:scientificName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Species ; + rdfs:label "scientific name"@en, "wetenschappelijke naam"@nl, "wissenschaftlicher Name"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:score + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Score or points of something (eg a SportCompetitionResult)"@en ; + rdfs:label "score"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:screenActorsGuildAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Actor ; + rdfs:label "Screen Actors Guild Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:sea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Meer"@de, "mer"@fr, "sea"@en ; + rdfs:range :Sea ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:season + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Agent ; + rdfs:label "Saison"@de, "season"@en, "σαιζόν"@el ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:seasonManager + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "season manager"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:seasonNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The season number to which the TelevisionEpisode belongs."@en ; + rdfs:domain :TelevisionEpisode ; + rdfs:label "season number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:seatNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AdministrativeRegion ; + rdfs:label "number of seats in the land parlement"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:seatingCapacity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Sitzplatzkapazität"@de, "seating capacity"@en, "zitplaatsen"@nl ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:second + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "second"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:secondCommander + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "second commander"@en, "zweiter Kommandant"@de ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:secondDriver + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "second driver"@en, "secondo pilota"@it, "zweiter Fahrer"@de, "δεύτερος οδηγός"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:secondDriverCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "second driver country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:secondLeader + a rdf:Property, owl:ObjectProperty ; + rdfs:label "secondLeader"@en, "vice-voorzitter"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:secondPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "second place"@en, "zweiter Platz"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:secondPopularVote + a rdf:Property, owl:ObjectProperty ; + rdfs:label "secondPopularVote"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:secondTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "second team"@en, "zweites Team"@de, "δεύτερη ομάδα"@el ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:secretaryGeneral + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Sekretärin"@de, "secretario"@pt, "secretaris"@nl, "secretary"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:security + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Safety precautions that are used in the building."@en, "Sicherheitsmaßnahmen, die für das Gebäude getroffen wurden."@de, "Μέτρα ασφαλείας για την προστασία ενός κτιρίου."@el ; + rdfs:domain :Building ; + rdfs:label "Sicherheit"@de, "security"@en, "ασφάλεια"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:seiyu + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "seiyu"@en ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:selection + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "when (or in which project) the person was selected to train as an astronaut"@en ; + rdfs:domain :Astronaut ; + rdfs:label "Auswahl"@de, "selection"@en ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:selectionPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "selection point"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:selectionYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Auswahljahr"@de, "selection year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:selibrId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Authority data from the National Library of Sweden"@en ; + rdfs:label "SELIBR Id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P906 ; + prov:wasDerivedFrom . + +:senator + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Senator"@de, "senador"@pt, "senator"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf :MemberOfParliament, dul:sameSettingAs ; + prov:wasDerivedFrom . + +:senior + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "senior"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:seniority + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "seniority"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:seniunija + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "seniunija"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sentence + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Satz"@de, "sentence"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:series + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Serie"@de, "reeks"@nl, "series"@en, "série"@fr, "σειρά"@el ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:service + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Dienst"@de, "service"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:serviceEndDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "service end date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:serviceEndYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "service end year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:serviceModule + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "service module"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:serviceNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The service number held by the individual during military service."@en ; + rdfs:domain :MilitaryPerson ; + rdfs:label "service number"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:serviceStartDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "service start date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:serviceStartYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "service start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:servingRailwayLine + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Railway services that serve the station."@en ; + rdfs:domain :Station ; + rdfs:label "angebundene Eisenbahnlinie"@de, "serving railway line"@en, "spoorlijnen"@nl ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:servingSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Default serving size (eg \"100 g\" for the standard 100 g serving size). approximateCalories apply to this serving size"@en ; + rdfs:domain :Food ; + rdfs:label "serving size (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:servingTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Serving temperature for the food (e.g.: hot, cold, warm or room temperature)."@en ; + rdfs:domain :Food ; + rdfs:label "serving temperature"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sessionNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "número da sessão"@pt, "session number"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:setDesigner + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person who is responsible for the film set design"@en ; + rdfs:domain :Film ; + rdfs:label "Bühnenbildner"@de, "scenografo"@it, "set designer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:settingOfPlay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The places and time where the play takes place."@en ; + rdfs:domain :Play ; + rdfs:label "setting of play"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:settlement + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Siedlung"@de, "luogo abitato (insediamento)"@it, "settlement"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + owl:equivalentProperty wikidata:P131 ; + prov:wasDerivedFrom . + +:settlementAttached + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "settlement attached"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:setupTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "setup time (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:severeCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of severe cases in a pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Severe Cases"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:sex + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Geschlecht"@de, "sex"@en, "sexe"@fr, "φύλο"@el ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P21 ; + prov:wasDerivedFrom . + +:sexualOrientation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "orientação sexual"@pt, "sexual orientation"@en, "sexuelle Orientierung"@de ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:shape + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Intercommunality ; + rdfs:label "intercommunality shape"@en ; + rdfs:range :Community ; + rdfs:subPropertyOf dul:hasQuality ; + prov:wasDerivedFrom . + +:shareDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "share date"@en ; + rdfs:range xsd:gYearMonth ; + prov:wasDerivedFrom . + +:shareOfAudience + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "Anteil der Zuschauer/Zuhörer"@de, "share of audience"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:shareSource + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "share source"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sharingOutPopulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "sharing out population"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:sharingOutPopulationYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "sharing out year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sheading + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "sheading"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:shipBeam + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The beam of a ship is its width at the widest point."@en ; + rdfs:domain :Ship ; + rdfs:label "ship beam (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:shipCrew + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Ship ; + rdfs:label "Crew"@de, "crew"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:shipDisplacement + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A ship's displacement is its mass at any given time."@en ; + rdfs:domain :Ship ; + rdfs:label "Deplacement (g)"@de, "displacement (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:shipDraft + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The draft (or draught) of a ship's hull is the vertical distance between the waterline and the bottom of the hull (keel), with the thickness of the hull included; in the case of not being included the draft outline would be obtained."@en ; + rdfs:domain :Ship ; + rdfs:label "Schiffsentwurf (μ)"@de, "ship draft (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:shipLaunch + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Ship ; + rdfs:label "ship launched"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:shoeNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "número do sapato"@pt, "pointure"@fr, "schoenmaat"@nl, "shoe number"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:shoeSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Schuhgröße"@de, "número do sapato"@pt, "pointure"@fr, "schoenmaat"@nl, "shoe size"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:shoot + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "shoot"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:shoots + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "shoots"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:shoreLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BodyOfWater ; + rdfs:label "Uferlänge (μ)"@de, "shore length (μ)"@en, "μήκος_όχθης (μ)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:shortProgCompetition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "short prog competition"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:shortProgScore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "short prog score"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:show + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Sendung"@de, "show"@en, "spectacle"@fr ; + rdfs:range :TelevisionShow ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:showJudge + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "showJudge"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:shuttle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "shuttle"@en ; + rdfs:range :SpaceShuttle ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:sibling + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Geschwister"@de, "broer of zus"@nl, "frère ou soeur"@fr, "sibling"@en, "兄弟"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P3373 ; + prov:wasDerivedFrom . + +:signName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :HungarySettlement ; + rdfs:label "sign name of a hungarian settlement"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:signature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Unterschrift"@de, "signature"@en, "ፊርማ"@am ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P109 ; + prov:wasDerivedFrom . + +:significantBuilding + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Architect ; + rdfs:label "bedeutendes Gebäude"@de, "significant building"@en ; + rdfs:range :Building ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:significantDesign + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Architect ; + rdfs:label "bedeutendes Design"@de, "significant design"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:significantProject + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A siginificant artifact constructed by the person."@en ; + rdfs:domain :Person ; + rdfs:label "bedeutendes Projekt"@de, "istotne osiągnięcie"@pl, "significant project"@en ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:silCode + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Language ; + rdfs:label "SIL code"@en, "SIL-code"@nl, "kod SIL"@pl ; + rdfs:subPropertyOf :LanguageCode, dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:silverMedalDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Silbermedaille Doppel"@de, "silver medal double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:silverMedalMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Silbermedaille gemischt"@de, "silver medal mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:silverMedalSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Silbermedaille Einzel"@de, "silver medal single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:silverMedalist + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SportsEvent ; + rdfs:label "Silbermedaillengewinner"@de, "medalha de prata"@pt, "siler medalist"@en, "zilveren medaille drager"@nl ; + rdfs:range :Person ; + rdfs:subPropertyOf :Medalist, dul:hasParticipant ; + prov:wasDerivedFrom . + +:simcCode + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Should be a datatype property"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "SIMC code"@en ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:similar + a rdf:Property, owl:ObjectProperty ; + rdfs:label "podobny"@pl, "similar"@en, "ähnlich"@de, "παρόμοιος"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:singleList + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "set of singles"@en, "suite de disques 45tours"@fr ; + rdfs:domain :Album ; + rdfs:label "list of singles"@en, "liste de singles"@fr ; + rdfs:range :SingleList ; + prov:wasDerivedFrom . + +:singleOf + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "single extrait d'un album"@fr, "single produced from an album"@en ; + rdfs:domain :SingleList ; + rdfs:label "single extrait"@fr, "singleOf"@en ; + rdfs:range :Work ; + prov:wasDerivedFrom . + +:sire + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Animal ; + rdfs:label "sire"@en ; + rdfs:range :Animal ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:siren + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "siren number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:sister + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Woman ; + rdfs:label "Schwester"@de, "sister"@en, "zus"@nl, "αδελφή"@el, "أخت"@ar, "シスター"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:sisterCollege + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :College ; + rdfs:label "sister college"@en ; + rdfs:range :College ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sisterNewspaper + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Newspaper ; + rdfs:label "sister newspaper"@en ; + rdfs:range :Newspaper ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sisterStation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "sister station"@en ; + rdfs:range :Broadcaster ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sixthFormStudents + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "Schüler der Oberstufe"@de, "sixth form students"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sizeBlazon + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "size blazon"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sizeLogo + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "size logo"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:sizeMap + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Größe der Karte"@de, "size map"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sizeThumbnail + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "size thumbnail"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:size_v + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Openswarm ; + rdfs:label "size_v"@en, "μέγεθος"@el ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:skiLift + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Skilift"@de, "ski lift"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:skiPisteKilometre + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Skipiste km (μ)"@de, "ski piste kilometre (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:skiPisteNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Skipistennummer"@de, "ski piste number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:skiTow + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "ski tow"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:skills + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Fähigkeiten"@de, "bekwaamheden"@nl, "compétences"@fr, "skills"@en ; + rdfs:subPropertyOf dul:isDescribedBy ; + prov:wasDerivedFrom . + +:skinColor + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "couleur de peau"@fr, "skin color"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:slogan + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Slogan"@de, "slogan"@en, "slogan"@nl, "Девиз"@bg ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:smiles + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The Simplified Molecular-Input Line-Entry System or SMILES is a specification in form of a line notation for describing the structure of chemical molecules using short ASCII strings."@en ; + rdfs:domain :ChemicalCompound ; + rdfs:label "SMILES"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:snowParkNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "snow park number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:soccerLeaguePromoted + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerLeagueSeason ; + rdfs:label "promoted"@en, "yükselenler"@tr ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerLeagueRelegated + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerLeagueSeason ; + rdfs:label "Absteiger"@de, "düşenler"@tr, "relegated teams"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerLeagueSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerLeagueSeason ; + rdfs:label "Saison"@de, "season"@en, "sezon"@tr ; + rdfs:range :SoccerLeagueSeason ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:soccerLeagueWinner + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerLeagueSeason ; + rdfs:label "Liga-Meister"@de, "league champion"@en, "şampiyon"@tr ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerTournamentClosingSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "closing season"@en, "kapanış sezonu"@tr ; + rdfs:range :SoccerTournament ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:soccerTournamentLastChampion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "last champion"@en, "letzter Sieger"@de, "son şampiyon"@tr ; + rdfs:range :SoccerClub ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerTournamentMostSteady + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "en istikrarlı"@tr, "most steady"@en ; + rdfs:range :SoccerClub ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerTournamentMostSuccesfull + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "am erfolgreichsten"@de, "en başarılı"@tr, "most successfull"@en ; + rdfs:range :SoccerClub ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:soccerTournamentOpeningSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "açılış sezonu"@tr, "opening season"@en ; + rdfs:range :SoccerTournament ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:soccerTournamentThisSeason + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "bu sezon"@tr, "this season"@en ; + rdfs:range :SoccerTournament ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:soccerTournamentTopScorer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerTournament ; + rdfs:label "Torschützenkönig"@de, "en golcü"@tr, "top scorer"@en ; + rdfs:range :SoccerPlayer ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:solicitorGeneral + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "de advocaat-generaal"@nl, "high-ranking solicitor"@en ; + rdfs:domain :LegalCase ; + rdfs:label "Generalstaatsanwalt"@de, "advocaat-generaal"@nl, "solicitor general"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:solubility + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Löslichkeit"@de, "oplosbaarheid"@nl, "solubility"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:solvent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Lösungsmittel"@de, "solvent"@en ; + rdfs:range :ChemicalSubstance ; + prov:wasDerivedFrom . + +:solventWithBadSolubility + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Lösungsmittel mit schlechter Löslichkeit"@de, "slecht oplosbaar in"@nl, "solvent with bad solubility"@en ; + rdfs:range :ChemicalSubstance ; + prov:wasDerivedFrom . + +:solventWithGoodSolubility + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Lösungsmittel mit guter Löslichkeit"@de, "goed oplosbaar in"@nl, "solvent with good solubility"@en ; + rdfs:range :ChemicalSubstance ; + prov:wasDerivedFrom . + +:solventWithMediocreSolubility + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "Lösungsmittel mit mittelmäßiger Löslichkeit"@de, "matig oplosbaar in"@nl, "solvent with mediocre solubility"@en ; + rdfs:range :ChemicalSubstance ; + prov:wasDerivedFrom . + +:son + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Man ; + rdfs:label "Sohn"@de, "son"@en, "zoon"@nl, "υιός"@el, "ابن"@ar, "息子"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:soundRecording + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Sound recording somehow related to the subject"@en ; + rdfs:label "sound recording"@en ; + rdfs:range :Sound ; + prov:wasDerivedFrom . + +:source + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Quelle"@de, "source"@en, "πηγή"@el ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:sourceConfluence + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "lugar de nacimiento"@es, "source confluence"@en, "πηγές"@el ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:sourceConfluenceCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceConfluenceElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "source confluence elevation (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:sourceConfluenceMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:nearTo ; + prov:wasDerivedFrom . + +:sourceConfluencePlace + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence place"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceConfluencePosition + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceConfluenceRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence region"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceConfluenceState + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :River ; + rdfs:label "source confluence state"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Stream ; + rdfs:label "source country"@en ; + rdfs:range :Country ; + owl:equivalentProperty dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceDistrict + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source district"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceElevation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "source elevation (μ)"@en, "የመነሻ ከፍታ (μ)"@am ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:sourceMountain + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source mountain"@en ; + rdfs:range :Mountain ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceName + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: Source Authority name."@en ; + rdfs:label "Source Name"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:sourcePlace + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source place"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourcePosition + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source position"@en ; + rdfs:range wgs84pos:SpatialThing ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source region"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceState + a rdf:Property, owl:ObjectProperty ; + rdfs:label "source state"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:sourceText + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Source of something (eg an image) as text. Use dct:source if the source is described using a resource"@en ; + rdfs:label "sourceText"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:sourceWebsite + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: source website."@en ; + rdfs:label "Source Website"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:southEastPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated south-east."@en, "indique un autre lieu situé au sud-est."@fr, "በደቡብ-ምስራቅ የሚገኝ ሌላ ቦታ ያመለክታል."@am ; + rdfs:domain :Place ; + rdfs:label "lieu au sud-est"@fr, "south-east place"@en, "ደቡብ ምስራቅ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:southPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated south."@en, "indique un autre lieu situé au sud."@fr, "በደቡብ የሚገኝ ሌላ ቦታ ያመለክታል"@am ; + rdfs:domain :Place ; + rdfs:label "lieu au sud"@fr, "south place"@en, "ደቡብ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:southWestPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated south-west."@en, "indique un autre lieu situé au sud-ouest."@fr, "በደቡብ-ምዕራብ የሚገኝ ሌላ ቦታ ያመለክታል."@am ; + rdfs:domain :Place ; + rdfs:label "lieu au sud-ouest"@fr, "south-west place"@en, "ደቡብ ምዕራብ"@am ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:sovereignCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "souveräner Staat"@de, "sovereign country"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:isPartOf ; + prov:wasDerivedFrom . + +:space + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Raum"@de, "space"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:spacecraft + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Raumfahrzeug"@de, "spacecraft"@en, "véhicule spatial"@fr, "διαστημόπλοιο"@el ; + rdfs:range :Spacecraft ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:spacestation + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Raumstation, die während einer Raummission besucht wurde"@de, "space station that has been visited during a space mission"@en ; + rdfs:domain :SpaceMission ; + rdfs:label "raumstation"@de, "spacestation"@en ; + rdfs:range :SpaceStation ; + prov:wasDerivedFrom . + +:spacewalkBegin + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Beginn Weltraumspaziergang"@de, "spacewalk begin"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:spacewalkEnd + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "Ende Weltraumspaziergang"@de, "spacewalk end"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:speaker + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of office holder"@en ; + rdfs:label "speaker"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:specialEffects + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person who is responsible for the film special effects"@en ; + rdfs:domain :Film ; + rdfs:label "Spezialeffekte"@de, "special effects"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:specialTrial + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "special trial"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:specialist + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Spezialist"@de, "specialist"@en ; + rdfs:range :PersonFunction ; + prov:wasDerivedFrom . + +:speciality + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Spezialität"@de, "speciality"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:specialization + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Points out the subject or thing someone or something is specialized in (for)."@en, "Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas spezialisiert ist."@de ; + rdfs:label "Spezialisierung"@de, "specialization"@en ; + prov:wasDerivedFrom . + +:species + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "Spezies"@de, "espèce"@fr, "soort"@nl, "species"@en, "種_(分類学)"@ja ; + rdfs:range :Species ; + rdfs:subPropertyOf dul:specializes ; + prov:wasDerivedFrom . + +:speedLimit + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Tempolimit (kmh)"@de, "speed limit (kmh)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:spike + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :VolleyballPlayer ; + rdfs:label "schmettern"@de, "smaç"@tr, "spike"@en, "καρφί"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:splitFromParty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "Abspaltung von Partei"@de, "split from party"@en ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:spokenIn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Language ; + rdfs:label "gesprochen in"@de, "gesproken in"@nl, "spoken in"@en, "የሚነገርበት ቦታ"@am ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:spokesperson + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "Sprecher"@de, "porta-voz"@pt, "spokesperson"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sport + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Sport"@de, "sport"@en, "sport"@fr, "άθλημα"@el ; + rdfs:range :Sport ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:sportCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Das Land, für das der Sportler an Wettkämpfen teilnimmt"@de, "The country, for which the athlete is participating in championships"@en ; + rdfs:domain :Athlete ; + rdfs:label "Sportnation"@de, "sport country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:sportDiscipline + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at"@en ; + rdfs:domain :Person ; + rdfs:label "Sportdisziplin"@de, "discipline sportive"@fr, "sport discipline"@en, "tak van sport"@nl ; + rdfs:range :Sport ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:sportGoverningBody + a rdf:Property, owl:ObjectProperty ; + rdfs:label "sport governing body"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sportSpecialty + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete"@en ; + rdfs:domain :Athlete ; + rdfs:label "sport specialiteit"@nl, "sport specialty"@en ; + rdfs:range :Sport ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:sportsFunction + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "sports function"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:spouse + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "the person they are married to"@en, "Το άτομο με το οποίο κάποιος είναι παντρεμένος"@el ; + rdfs:domain :Person ; + rdfs:label "Ehepartner"@de, "echtgenoot"@nl, "spouse"@en, "σύζυγος"@el, "የትዳር አጋር"@am, "配偶者"@ja ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty , wikidata:P26 ; + prov:wasDerivedFrom . + +:spouseName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Name des Ehepartners"@de, "spouse name"@en, "όνομα συζύγου"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:spurOf + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Road ; + rdfs:label "spur of"@en ; + rdfs:range :Road ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:spurType + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Road ; + rdfs:label "spur type"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:squadNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The number that an athlete wears in a team sport."@en ; + rdfs:domain :SportsTeamMember ; + rdfs:label "squad number"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:stadium + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Stadion"@de, "Stadium"@en, "στάδιο"@el, "ስታዲየም"@am ; + rdfs:range :Stadium ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:staff + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Organisation ; + rdfs:label "Personal"@de, "staff"@en, "προσωπικό"@el ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:starRating + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Hotel ; + rdfs:label "star rating"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:starring + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "acteur"@fr, "met in de hoofdrol"@nl, "skuespillere"@da, "starring"@en, "ηθοποιοί"@el, "ተዋንያን"@am ; + rdfs:range :Actor ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty , , wikidata:P161 ; + prov:wasDerivedFrom . + +:start + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TimePeriod ; + rdfs:label "Start"@de, "start"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:startCareer + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "start career"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:startDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The start date of the event."@en ; + rdfs:domain :Event ; + rdfs:label "Startdatum"@de, "date de début"@fr, "fecha de inicio"@es, "start date"@en, "startdatum"@nl ; + rdfs:range xsd:date ; + owl:equivalentProperty , wikidata:P580, ; + prov:wasDerivedFrom . + +:startDateTime + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The start date and time of the event."@en ; + rdfs:domain :Event ; + rdfs:label "datum en tijd van begin"@nl, "start date and time"@en ; + rdfs:range xsd:dateTime ; + prov:wasDerivedFrom . + +:startOccupation + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "start occupation"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:startPoint + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Startpunkt"@de, "point de départ"@fr, "start point"@en, "σημείο_αρχής"@el ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:startReign + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "start reign"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:startWct + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "start xct"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:startWqs + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "start wqs"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:startYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Startjahr"@de, "start year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:startYearOfInsertion + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "start year of insertion"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:startYearOfSales + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Sales ; + rdfs:label "start year of sales"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:statName + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "stat name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:statValue + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "stat value"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:state + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Staat"@de, "staat"@nl, "stan"@pl, "state"@en, "νομός"@el ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:stateDelegate + a rdf:Property, owl:ObjectProperty ; + rdfs:label "state delegate"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:stateOfOrigin + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "state of origin"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:stateOfOriginPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "state of origin point"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:stateOfOriginTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "state of origin team"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:stateOfOriginYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "state of origin year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:stationEvaDuration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "station EVA duration (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:stationStructure + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Type of station structure (underground, at-grade, or elevated)."@en ; + rdfs:domain :Station ; + rdfs:label "station structure"@en, "station structuur"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:stationVisitDuration + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SpaceMission ; + rdfs:label "station visit duration (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:statistic + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Statistic ; + rdfs:label "statistic"@en, "statistisch"@de ; + prov:wasDerivedFrom . + +:statisticLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :BaseballPlayer ; + rdfs:label "statistic label"@en ; + prov:wasDerivedFrom . + +:statisticValue + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BaseballPlayer ; + rdfs:label "Statistikwert"@de, "statistic value"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:statisticYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BaseballPlayer ; + rdfs:label "statistic year"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:status + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Status"@de, "estatus"@es, "status"@en, "status"@nl, "statut"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:statusManager + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "status manager"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:statusYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "status year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:stellarClassification + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "spectraalklasse"@nl, "stellar classification"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:stockExchange + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Registered at Stock Exchange"@en, "beurs waaraan genoteerd"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:storyEditor + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "story editor"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:strength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryConflict ; + rdfs:label "Stärke"@de, "strength"@en, "δύναμη"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:structuralSystem + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Building ; + rdfs:label "Tragsystem"@de, "bouwmethode"@nl, "structural system"@en, "κατασκευαστικό σύστημα"@el ; + rdfs:subPropertyOf dul:hasConstituent ; + prov:wasDerivedFrom . + +:student + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "student"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:style + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "estilo"@es, "stil"@de, "stile"@it, "style"@en ; + prov:wasDerivedFrom . + +:stylisticOrigin + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MusicGenre ; + rdfs:label "origens estilísticas"@pt, "stilistische Herkunft"@de, "stylistic origin"@en ; + rdfs:range :MusicGenre ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:subClassis + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "a subdivision within a Species classis"@en ; + rdfs:domain :Species ; + rdfs:label "onderklasse"@nl, "sub-classis"@en ; + rdfs:subPropertyOf :classis ; + prov:wasDerivedFrom . + +:subFamily + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "Unterfamilie"@de, "onderfamilie"@nl, "sub-family"@en ; + rdfs:range :Taxon ; + prov:wasDerivedFrom . + +:subGenus + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A rank in the classification of organisms, below genus ; a taxon at that rank"@en ; + rdfs:domain :Species ; + rdfs:label "Untergattung"@de, "ondergeslacht"@nl, "subgenus"@en ; + rdfs:subPropertyOf dul:specializes ; + prov:wasDerivedFrom . + +:subMunicipalityType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SubMunicipality ; + rdfs:label "Art der Gemeinde"@de, "type gemeente"@nl, "type of municipality"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subOrder + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "onderorde"@nl, "sous-ordre"@fr, "sub-order"@en ; + prov:wasDerivedFrom . + +:subPrefecture + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "subprefecture"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subTribus + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "onderstam"@nl, "subtribus"@en ; + rdfs:range :Species ; + rdfs:subPropertyOf :Tribus ; + prov:wasDerivedFrom . + +:subdivision + a rdf:Property, owl:ObjectProperty ; + rdfs:label "subdivision"@en ; + prov:wasDerivedFrom . + +:subdivisionLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "subdivision link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subdivisionName + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Island ; + rdfs:label "subdivision name of the island"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:subdivisions + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "sous-divisions"@fr, "subdivisions"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:subjectOfPlay + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The overall subject matter dealt with by the play."@en ; + rdfs:domain :Play ; + rdfs:label "subject of play"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subjectTerm + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The subject as a term, possibly a term from a formal classification"@en ; + rdfs:domain :Work ; + rdfs:label "onderwerpsaanduiding"@nl, "subject term"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:sublimationPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "sublimation point (K)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:suborbitalFlights + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "suborbital flights"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:subprefecture + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Department ; + rdfs:label "subprefecture"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:subregion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "subregion"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:subsequentInfrastructure + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Infrastructure ; + rdfs:label "spätere Infrastruktur"@de, "subsequent infrastructure"@en, "volgende infrastructuur"@nl ; + rdfs:range :Infrastructure ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:subsequentWork + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "nachfolgende Arbeiten"@de, "oeuvre suivante"@fr, "subsequent work"@en, "vervolg werk"@nl, "επόμενη δημιουργία"@el ; + rdfs:range :Work ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:subsequentWorkDate + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Année de sortie de l'oeuvre suivante"@fr, "Year when subsequent work is released"@en ; + rdfs:domain :Work ; + rdfs:label "année de sortie oeuvre suivante"@fr, "subsequent work date"@en ; + rdfs:range :year ; + prov:wasDerivedFrom . + +:subsidiary + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Company ; + rdfs:label "filiale"@fr, "subsidiary"@en, "treinador"@pt ; + rdfs:range :Company ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:subsystem + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Teilsystem"@de, "subsystem"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subsystemLink + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "subsystem link"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:subtitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Untertitel"@de, "legenda"@pt, "onderschrift"@nl, "subtitle"@en, "υπότιτλος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:successfulLaunches + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "erfolgreiche Starts"@de, "successful launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:successor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Nachfolger"@de, "opvolger"@nl, "successor"@en, "ተከታይ"@am, "後任者"@ja ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:sudocId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment """Système universitaire de documentation id (French collaborative library catalog). +http://www.idref.fr/$1"""@en ; + rdfs:label "SUDOC id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P269 ; + prov:wasDerivedFrom . + +:summerAppearances + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "summer appearances"@en ; + rdfs:range :OlympicResult ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:summerTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "summer temperature (K)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:superFamily + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "super-family"@en, "superfamilie"@nl ; + rdfs:range :Taxon ; + prov:wasDerivedFrom . + +:superOrder + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "bovenorde"@nl, "super-order"@en ; + prov:wasDerivedFrom . + +:superTribus + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "bovenstam"@nl, "supertribus"@en ; + rdfs:range :Species ; + rdfs:subPropertyOf :Tribus ; + prov:wasDerivedFrom . + +:superbowlWin + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "superbowl win"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:superintendent + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Leiter"@de, "opzichter"@nl, "superintendent"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:supplementalDraftRound + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "supplemental draft round"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:supplementalDraftYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GridironFootballPlayer ; + rdfs:label "supplemental draft year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:supplies + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artery ; + rdfs:label "supplies"@en, "παροχές"@el ; + rdfs:range :AnatomicalStructure ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:supply + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "supply"@en ; + rdfs:range :Place ; + prov:wasDerivedFrom . + +:suppreddedDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment """Date when the Church forbade the veneration of this saint. +(I hope that's what it means, I don't know why the original author didn't document it)"""@en ; + rdfs:domain :Saint ; + rdfs:label "oppressie datum"@nl, "suppredded date"@en, "дата на забраната"@bg ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:surfaceArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "Oberfläche (m2)"@de, "surface area (m2)"@en, "έκταση (m2)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:surfaceFormOccurrenceOffset + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "position in which a surface occurs in a text"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:surfaceGravity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Planet ; + rdfs:label "surface gravity (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:surfaceType + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "tipo de surperficie"@es, "typ povrchu"@cs, "type de surface"@fr, "type of surface"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:suspectedCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of suspected cases in a pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Suspected Cases"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:swimmingStyle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Swimmer ; + rdfs:label "Schwimmstil"@de, "Swimming style"@en, "Zwemslag"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:symbol + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "HUGO Gene Symbol"@en ; + rdfs:domain :Biomolecule ; + rdfs:label "Symbol"@de, "Symbol"@en, "symbole"@fr, "symbool"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:symptom + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "Symptome"@de, "symptoms"@en, "symptômes"@fr, "σύμπτωμα"@el ; + prov:wasDerivedFrom . + +:synonym + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Synonym"@de, "synonym"@en, "synonyme"@fr, "συνώνυμο"@el, "シノニム"@ja ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P5973 ; + prov:wasDerivedFrom . + +:systemOfLaw + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "A referral to the relevant system of law"@en ; + rdfs:domain :LegalCase ; + rdfs:label "Rechtssystem"@de, "rechtssysteem"@nl, "system of law"@en ; + rdfs:range :SystemOfLaw ; + rdfs:subPropertyOf dul:isSettingFor ; + prov:wasDerivedFrom . + +:systemRequirements + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Mindestsystemanforderungen"@de, "minimum system requirements"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:tag + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "tag"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:taoiseach + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "head of government of Ireland"@en ; + rdfs:label "taoiseach"@en, "taoiseach"@ga ; + rdfs:range :Person ; + owl:equivalentProperty wikidata:P6 ; + prov:wasDerivedFrom . + +:targetAirport + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Airline ; + rdfs:label "target airport"@en ; + rdfs:range :Airport ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:targetSpaceStation + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "target space station station"@en ; + rdfs:range :SpaceStation ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:taste + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Food ; + rdfs:label "Geschmack oder Aroma"@de, "smaak"@nl, "taste or flavour"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:tattoo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Tätowierung"@de, "tatouage"@fr, "tattoo"@en, "tatuagem"@pt, "τατουάζ"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:taxon + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "has taxon"@en, "taxon"@nl ; + rdfs:range :Taxon ; + prov:wasDerivedFrom . + +:teachingStaff + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "teaching staff"@en ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:team + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Team"@de, "team"@en, "team"@nl, "équipe"@fr, "ομάδα"@el, "チーム"@ja ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isSettingFor ; + owl:equivalentProperty wikidata:P54 ; + prov:wasDerivedFrom . + +:teamCoached + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Team gecoacht"@de, "team coached"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:teamManager + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Team-Manager"@de, "team manager"@en ; + rdfs:range :SportsTeam ; + prov:wasDerivedFrom . + +:teamName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "Teamname"@de, "team name"@en, "όνομα ομάδας"@el ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:teamPoint + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "team point"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:teamSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Teamgröße"@de, "team size"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:teamTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "team title"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:technique + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Painting ; + rdfs:label "technique"@en, "technisch"@de, "técnica"@es, "τεχνική"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:televisionSeries + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Fernsehserie"@de, "television series"@en, "τηλεοπτικές σειρές"@el ; + rdfs:range :TelevisionShow ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:tempPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChartsPlacements ; + rdfs:label "Temporary Placement in the Music Charts"@en, "vorläufige Chartplatzierung"@de ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:temperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Temperatur (K)"@de, "temperature (K)"@en, "température (K)"@fr, "θερμοκρασία (K)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:templateName + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "DO NOT USE THIS PROPERTY! For internal use only."@en ; + rdfs:domain :WikimediaTemplate ; + rdfs:label "Templatename"@de, "template name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:temple + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Tempel"@de, "temple"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:templeYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "temple year"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:tenant + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Mieter"@de, "huurder"@nl, "locataire"@fr, "tenant"@en, "ενοικιαστής"@el ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:tennisSurfaceType + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "There are five types of court surface used in professional play. Each surface is different in the speed and height of the bounce of the ball."@en ; + rdfs:label "tipo de surperficie(tennis"@es, "type de surface (tennis)"@fr, "type of tennis surface"@en, "type speelgrond"@nl ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:termOfOffice + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Amtszeit"@de, "term of office"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:termPeriod + a rdf:Property, owl:ObjectProperty ; + rdfs:label "term period"@en, "χρονική περίοδος"@el ; + rdfs:range :TimePeriod ; + rdfs:subPropertyOf dul:hasSetting ; + prov:wasDerivedFrom . + +:territory + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "Gebiet"@de, "territoire"@fr, "territorio"@es, "territory"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:terytCode + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities"@en ; + rdfs:domain :PopulatedPlace ; + rdfs:label "TERYT code"@en, "kod TERYT"@pl ; + rdfs:subPropertyOf dul:isClassifiedBy ; + owl:equivalentProperty wikidata:P1653 ; + prov:wasDerivedFrom . + +:tessitura + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "tessitura"@en, "tessiture"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:testaverage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "testaverage"@en ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:theology + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChristianDoctrine ; + rdfs:label "Theologie"@de, "Theology"@en, "Θεολογία"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:third + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "third"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:thirdCommander + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MilitaryUnit ; + rdfs:label "third commander"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:thirdDriver + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "dritter Fahrer"@de, "third driver"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:thirdDriverCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "third driver country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:thirdPlace + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "dritter Platz"@de, "third place"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:thirdTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GrandPrix ; + rdfs:label "dritte Mannschaft"@de, "third team"@en, "τρίτη ομάδα"@el ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:throwingSide + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :BaseballPlayer ; + rdfs:label "throwing side"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:thumbnail + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "thumbnail"@en ; + rdfs:range :Image ; + rdfs:subPropertyOf dul:isExpressedBy ; + prov:wasDerivedFrom . + +:thumbnailCaption + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "thumbnail caption"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:tie + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Boxer ; + rdfs:label "Unentschieden"@de, "tie"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:time + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Χρόνος χαρακτηρίζεται η ακριβής μέτρηση μιας διαδικασίας από το παρελθόν στο μέλλον."@el ; + rdfs:label "Zeit"@de, "tijd"@nl, "time"@en, "χρόνος"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:timeInSpace + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Gesamtzeit welche die Person im Weltraum verbracht hat (s)"@de, "temps total passé dans l'espace par la personne (s)"@fr, "total time person has spent in space (s)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:timeZone + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Zeitzone"@de, "fuseau horaire"@fr, "fuso horario"@pt, "huso horario"@es, "strefa czasowa"@pl, "tijdzone"@nl, "time zone"@en, "zona horària"@ca, "ζώνη_ώρας1"@el ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:timeshiftChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TelevisionStation ; + rdfs:label "timeshift channel"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:title + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The name of a book, other artistic work or a name that describes someone's position or job."@en, "የመፅሃፍ ስም፣ ሌላ የጥበብ ስራ ወይም የአንድን ሰው ማዕረግ ወይም ስራ የሚገልጽ ስም።"@am ; + rdfs:label "Titel"@de, "denominazione"@it, "titel"@nl, "title"@en, "título"@es, "Τίτλος"@el, "タイトル"@ja ; + rdfs:range rdf:langString ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:titleDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "data do titulo"@pt, "titel datum"@nl, "title date"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:titleDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Doppeltitel"@de, "title double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:titleLanguage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Film ; + rdfs:label "title language"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:titleSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "Einzeltitel"@de, "title single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:toll + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Maut ($)"@de, "toll ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:tonyAward + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Tony Award"@en ; + rdfs:range :Award ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:topFloorHeight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Skyscraper ; + rdfs:label "Höhe der höchsten Etage"@de, "top floor height"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:topLevelDomain + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "በዶሜን ስሞች መዋቅር ውስጥ በአናት ላይ የሚገኝና የሚከተሉትን ሁሉንም ዶሜኖች ያካትታል። ለምሳሌ፣ በ \"www.example.com\" ውስጥ ከፍተኛ ደረጃ ዶሜን \".com\" ነው።"@am ; + rdfs:domain :Country ; + rdfs:label "country top level (tld)"@en, "domaine de premier niveau (tld)"@fr, "domínio de topo (tld)"@pt, "ከፍተኛ ደረጃ ዶሜን"@am ; + rdfs:range :TopLevelDomain ; + prov:wasDerivedFrom . + +:topSpeed + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Höchstgeschwindigkeit (kmh)"@de, "top speed (kmh)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:topic + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Thema"@de, "topic"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:torchBearer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Olympics ; + rdfs:label "Fackelträger"@de, "torch bearer"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:hasParticipant ; + prov:wasDerivedFrom . + +:torqueOutput + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "torque output (Nm)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:totalCargo + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "total cargo (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:totalDiscs + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the total number of discs contained in the album"@en ; + rdfs:domain :Album ; + rdfs:label "total discs"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:totalIliCases + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Total number of cases in a pandemic"@en ; + rdfs:domain :Outbreak ; + rdfs:label "Total Pandemic Cases"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:totalLaunches + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "total launches"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:totalMass + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Spacecraft ; + rdfs:label "Gesamtmasse (g)"@de, "total mass (g)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:totalPopulation + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :EthnicGroup ; + rdfs:label "Gesamtbevölkerung"@de, "total population"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:totalTracks + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "the total number of tracks contained in the album"@en ; + rdfs:domain :Album ; + rdfs:label "total tracks"@en ; + rdfs:range xsd:integer ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:totalTravellers + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :YearInSpaceflight ; + rdfs:label "total travellers"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:totalVaccinations + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: Total vaccinations per date and country."@en ; + rdfs:label "Total Vaccinations"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:totalVaccinationsPerHundred + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "VaccinationStatistics: vaccinations per hundred."@en ; + rdfs:label "Total Vaccinations Per Hundred"@en ; + rdfs:range :VaccinationStatistics ; + prov:wasDerivedFrom . + +:touristicSite + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "touristic site"@en ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:tournamentOfChampions + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "Turnier der Meister"@de, "tournament of champions"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:tournamentRecord + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CollegeCoach ; + rdfs:label "Turnierrekord"@de, "tournament record"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:towerHeight + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Turmhöhe"@de, "hauteur de la tour"@fr, "hoogte van de toren"@nl, "tower height"@en ; + rdfs:range xsd:positiveInteger ; + prov:wasDerivedFrom . + +:trackLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Length of the track. Wikipedians usually do not differentiate between track length and line lenght."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Streckenlänge (μ)"@de, "track length (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:trackNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Song ; + rdfs:label "Titelnummer"@de, "track number"@en, "νούμερο τραγουδιού"@el ; + rdfs:range xsd:positiveInteger ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:trackWidth + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Width of the track, e.g., the track width differing in Russia from (Western and Middle) European track width"@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "spoorbreedte (μ)"@nl, "track width (μ)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:tradeMark + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Marca"@es, "Marque commerciale"@fr, "TradeMark"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:tradingName + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Company ; + rdfs:label "Handelsname"@de, "trading name"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:trainer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Trainer"@de, "entraîneur"@fr, "trainer"@en, "trainer"@nl, "εκπαιδευτής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:trainerClub + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "trainer club"@en ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:trainerYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "trainer years"@en, "trainersjaren"@nl ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:training + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Artist ; + rdfs:label "Ausbildung"@de, "training"@en, "προπόνηση"@el ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty wikidata:P69 ; + prov:wasDerivedFrom . + +:translatedMotto + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "translated motto"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:translator + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Translator(s), if original not in English"@en ; + rdfs:domain :Work ; + rdfs:label "traducteur"@fr, "translator"@en, "vertaler"@nl, "Übersetzer"@de, "μεταφραστής"@el ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:transmission + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Automobile ; + rdfs:label "Getriebe"@de, "transmission"@en, "μετάδοση"@el ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:treatment + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "Behandlung"@de, "traitement"@fr, "treatment"@en ; + prov:wasDerivedFrom . + +:tree + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "Baum"@de, "tree"@en, "δέντρο"@el ; + rdfs:range :Species ; + prov:wasDerivedFrom . + +:tribus + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Species ; + rdfs:label "Stämme"@de, "stam"@nl, "tribus"@en ; + rdfs:range :Species ; + prov:wasDerivedFrom . + +:trustee + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Organisation ; + rdfs:label "Treuhänder"@de, "trustee"@en ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:tuition + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "Schulgeld ($)"@de, "tuition ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:tvComId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TelevisionShow ; + rdfs:label "tv.com id"@en ; + rdfs:range xsd:integer ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:tvShow + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Fernsehsendung"@de, "tvShow"@en ; + rdfs:range :TelevisionShow ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:twinCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Country ; + rdfs:label "Partnerland"@de, "twin country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:twinTown + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "Partnerstadt"@de, "tweeling stad"@nl, "twin city"@en ; + rdfs:range :Settlement ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:type + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Typ"@de, "tipo"@es, "type"@en, "type"@fr, "type"@nl, "τύπος"@el, "प्रकार"@hi, "ዓይነት"@am ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:typeCoordinate + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Scale parameters that can be understood by Geohack, eg \"type:\", \"scale:\", \"region:\" \"altitude:\". Use \"_\" for several (eg \"type:landmark_scale:50000\"). See https://fr.wikipedia.org/wiki/Modèle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list"@en ; + rdfs:domain :Place ; + rdfs:label "type coordinate"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:typeOfElectrification + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Electrification system (e.g. Third rail, Overhead catenary)."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Art der Elektrifizierung"@de, "type of electrification"@en ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:typeOfGrain + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Food ; + rdfs:label "Getreideart (Weizen usw.)"@de, "graansoort"@nl, "type of grain (wheat etc.)"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:typeOfStorage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Food ; + rdfs:label "Art der Lagerung"@de, "lagering"@nl, "type of storage"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:typeOfYeast + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Food ; + rdfs:label "Hefearte"@de, "gistsoort"@nl, "type of yeast"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:uRN + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "DfE unique reference number of a school in England or Wales"@en ; + rdfs:domain :School ; + rdfs:label "unique reference number (URN)"@en ; + rdfs:subPropertyOf :code ; + prov:wasDerivedFrom . + +:uciCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Official UCI code for cycling teams"@en ; + rdfs:domain :CyclingTeam ; + rdfs:label "UCI code"@en, "codice UCI"@it ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ulanId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment """Union List of Artist Names id (Getty Research Institute). ULAN has 293,000 names and other information about artists. Names in ULAN may include given names, pseudonyms, variant spellings, names in multiple languages, and names that have changed over time (e.g., married names). +http://vocab.getty.edu/ulan/$1"""@en ; + rdfs:label "ULAN id"@en ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P245 ; + prov:wasDerivedFrom . + +:umbrellaTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MultiVolumePublication ; + rdfs:label "overkoepelende titel"@nl, "umbrella title"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:unNumber + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "four-digit numbers that identify hazardous substances, and articles in the framework of international transport"@en ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "UN Nummer"@de, "UN number"@en, "numéro ONU"@fr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:uncle + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Man ; + rdfs:label "Onkel"@de, "oom"@nl, "uncle"@en, "θείος"@el, "اخو الام"@ar, "おじさん"@ja ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:undraftedYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :GridironFootballPlayer ; + rdfs:label "undrafted year"@en ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:unesco + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "unesco"@en ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:unicode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "το διεθνές πρότυπο Unicode στοχεύει στην κωδικοποίηση όλων των συστημάτων γραφής που χρησιμοποιούνται στον πλανήτη."@el ; + rdfs:domain :Letter ; + rdfs:label "Unicode"@de, "unicode"@el, "unicode"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:uniprot + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Biomolecule ; + rdfs:label "UniProt"@en, "UniProt"@ja ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:unitCost + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Stückkosten ($)"@de, "unit cost ($)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:unitaryAuthority + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "unitary authority"@en, "унитарна власт"@sr ; + rdfs:range :PopulatedPlace ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:unitedStatesNationalBridgeId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Bridge ; + rdfs:label "ID националног моста у Сједињеним Америчким Државама"@sr, "United States National Bridge ID"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:university + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "To πανεπιστήμιο είναι εκπαιδευτικό ίδρυμα ανώτατης εκπαίδευσης και επιστημονικής έρευνας που παρέχει πτυχίο πιστοποίησης ακαδημαϊκής εκπαίδευσης."@el, "university a person goes or went to."@en ; + rdfs:label "Universität"@de, "university"@en, "πανεπιστήμιο"@el, "универзитет"@sr, "大学"@ja ; + rdfs:range :EducationalInstitution ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:unknownOutcomes + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "number of launches with unknown outcomes (or in progress)"@en, "број лансирања са непознатим исходом или број лансирања који су у току"@sr ; + rdfs:domain :Rocket ; + rdfs:label "unknown outcomes"@en, "непознати исходи"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:unloCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "UN/LOCODE је код Уједињених нација за трговинске и транспортне локације. Као што су луке, железнички и путни терминали, аеродроми, поште и гранични прелази."@sr, "UN/LOCODE, the United Nations Code for Trade and Transport Locations, is a geographic coding scheme developed and maintained by United Nations Economic Commission for Europe (UNECE), a unit of the United Nations. UN/LOCODE assigns codes to locations used in trade and transport with functions such as seaports, rail and road terminals, airports, post offices and border crossing points."@en ; + rdfs:domain :Place ; + rdfs:label "UN/LOCODE"@en, "UN/LOCODE"@sr ; + rdfs:range xsd:string ; + owl:equivalentProperty wikidata:P1937 ; + prov:wasDerivedFrom . + +:updated + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The last update date of a resource"@en, "датум последње измене"@sr ; + rdfs:label "updated"@en, "ажуриран"@sr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:upperAge + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :School ; + rdfs:label "upper age"@en, "горња старосна граница"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:urbanArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "Stadtgebiet"@de, "urban area"@en, "урбано подручје"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:usOpenDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "US Open дубл"@sr, "us open double"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:usOpenMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "US Open микс дубл"@sr, "us open mixed"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:usOpenSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "US Open појединачно"@sr, "us open single"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:usSales + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Number of things (eg vehicles) sold in the US"@en ; + rdfs:domain :Sales ; + rdfs:label "US sales"@en, "US-Verkäufe"@de, "продаја у САД"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:usedInWar + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "wars that were typical for the usage of a weapon"@en ; + rdfs:domain :Weapon ; + rdfs:label "im Krieg eingesetzt"@de, "used in war"@en, "коришћено у рату"@sr ; + rdfs:range :MilitaryConflict ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:uses + a rdf:Property, owl:ObjectProperty ; + rdfs:label "uses"@en, "користи"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:usingCountry + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Currency ; + rdfs:label "using country"@en ; + rdfs:range :Country ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:usk + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "approved rating of the Entertainment Software Self-Regulation Body in Germany"@en, "zugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschland"@de, "одобрени рејтинг од стране регулаторног тела за забавни софтвер у Немачкој"@sr ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:usopenWins + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "usopen wins"@en, "победе на US Open-у"@sr ; + rdfs:range ; + prov:wasDerivedFrom . + +:usurper + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "usurper"@en, "узурпатор"@sr ; + rdfs:range :Person ; + prov:wasDerivedFrom . + +:utcOffset + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "UTC offset"@en, "UTC офсет"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:v_hb + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Globularswarm ; + rdfs:label "V_hb"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:vaccination + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Disease ; + rdfs:label "vaccination"@en ; + rdfs:range :Vaccine ; + prov:wasDerivedFrom . + +:vaccine + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Vaccin"@fr, "Vaccine"@en, "疫苗"@zh ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:value + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Wert"@de, "valeur"@fr, "value"@en, "вредност"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:valvetrain + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :AutomobileEngine ; + rdfs:label "Ventilsteuerung"@de, "distribution (moteur)"@fr, "valvetrain"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:vaporPressure + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ChemicalSubstance ; + rdfs:label "dampdruk (hPa)"@nl, "vapor pressure (hPa)"@en ; + rdfs:range ; + prov:wasDerivedFrom . + +:variantOf + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "variant or variation of something, for example the variant of a car"@en ; + rdfs:label "Variante oder Variation"@de, "variant"@nl, "variant or variation"@en, "варијанта"@sr ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:varietals + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WineRegion ; + rdfs:label "Rebsorten"@de, "varietals"@en ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:vehicle + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "vehicle that uses a specific automobile platform"@en, "όχημα που χρησιμοποιεί μια συγκεκριμένη πλατφόρμα αυτοκινήτων"@el ; + rdfs:label "Vehikel"@de, "vehicle"@en, "όχημα"@el, "возило"@sr ; + rdfs:range :Automobile ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:vehicleCode + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Region related vehicle code on the vehicle plates."@en ; + rdfs:domain :Place ; + rdfs:label "KFZ-Kennzeichen"@de, "vehicle code"@en, "voertuig code"@nl, "код возила"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:vehiclesInFleet + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Points out means of transport contained in the companies vehicle fleet."@en ; + rdfs:domain :PublicTransitSystem ; + rdfs:label "Fahrzeugtypen der Flotte"@de, "vehicle types in fleet"@en ; + rdfs:range :MeanOfTransportation ; + prov:wasDerivedFrom . + +:vehiclesPerDay + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Fahrzeuge pro Tag"@de, "vehicles per day"@en, "број возила по дану"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:vein + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :AnatomicalStructure ; + rdfs:label "Vene"@de, "vein"@en, "вена"@sr ; + rdfs:range :Vein ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:veneratedIn + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Saint ; + rdfs:label "venerated in"@en, "vereerd in"@nl, "поштован у"@sr ; + rdfs:range :Organisation ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:version + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MeanOfTransportation ; + rdfs:label "Version"@de, "versie"@nl, "version"@en ; + prov:wasDerivedFrom . + +:viafId + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Virtual International Authority File ID (operated by Online Computer Library Center, OCLC). Property range set to Agent because of corporate authors"@en ; + rdfs:label "VIAF Id"@en, "VIAF Id"@sr, "VIAF code"@nl ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :code ; + owl:equivalentProperty wikidata:P214 ; + prov:wasDerivedFrom . + +:viceChancellor + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Vizekanzler"@de, "vice chancellor"@en, "потканцелар"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:viceLeader + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "vice leader"@en, "vicelider"@pt ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:viceLeaderParty + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "partido do vicelider"@pt, "stellvertretender Parteivorsitzende"@de, "vice leader party"@en ; + rdfs:range :PoliticalParty ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:vicePresident + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Vizepräsident"@de, "vice president"@en, "vice président"@fr, "потпредседник"@sr, "ምክትል ፕሬዝዳንት"@am ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:vicePrimeMinister + a rdf:Property, owl:ObjectProperty ; + rdfs:label "Vizeministerpräsident"@de, "vice premier"@nl, "vice prime minister"@en, "заменик премијера"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:vicePrincipal + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "vice principal"@en, "заменик директора"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:vicePrincipalLabel + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :School ; + rdfs:label "vice principal label"@en ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:victim + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Specific (eg notable) person, or specific class of people (eg Romani) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity"@en ; + rdfs:label "das Opfer (resource)"@de, "victim (resource)"@en, "жртва (resource)"@sr ; + prov:wasDerivedFrom . + +:victims + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Type, description, or name(s) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity"@en ; + rdfs:label "die Opfer (string)"@de, "victims (string)"@en, "жртви (string)"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:victory + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Sieg"@de, "victory"@en, "победа"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:victoryAsMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "victory as manager"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:victoryPercentageAsMgr + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "victory percentage as manager"@en, "проценат победа на месту менаџера"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:virtualChannel + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Broadcaster ; + rdfs:label "virtual channel"@en, "εικονικό κανάλι"@el, "виртуелни канал"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:visitorStatisticsAsOf + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Year visitor information was gathered."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "visitor statistics as of"@en, "статистика посетилаца од"@sr ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:visitorsPerDay + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Besucher pro Tag"@de, "visitors per day"@en, "број посетилаца по дану"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:visitorsPerYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Besucher pro Jahr"@de, "bezoekers per jaar"@nl, "visitors per year"@en, "годишњи број посетилаца"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:visitorsPercentageChange + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Percentage increase or decrease."@en ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "prozentuale Veränderung der Besucherzahl"@de, "visitor percentage change"@en, "промена процента посетилаца"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:visitorsTotal + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :ArchitecturalStructure ; + rdfs:label "Gesamtbesucher"@de, "visitors total"@en, "επιβατική κίνηση"@el, "укупан број посетилаца"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:voice + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Voice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter"@en ; + rdfs:label "Stimme"@de, "voice"@en, "глас"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:sameSettingAs ; + owl:equivalentProperty wikidata:P990 ; + prov:wasDerivedFrom . + +:voiceType + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "type de voix pour un chanteur ou un acteur"@fr, "voice type of a singer or an actor"@en ; + rdfs:domain :Artist ; + rdfs:label "Stimmlage"@de, "stemtype"@nl, "type de voix"@fr, "voice type"@en, "тип гласа"@sr ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:volcanicActivity + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "activité volcanique"@fr, "volcanic activity"@en, "vulkanische Aktivität"@de, "вулканска активност"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:volcanicType + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "Vulkantyp"@de, "volcanic type"@en, "тип вулкана"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:volcanoId + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Island ; + rdfs:label "id вулкана"@sr, "volcano id"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:voltageOfElectrification + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Voltage of the electrification system."@en ; + rdfs:domain :RouteOfTransportation ; + rdfs:label "Voltzahl der Elektrifizierung (V)"@de, "voltage of electrification (V)"@en ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:volume + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Volumen (μ³)"@de, "volume (μ³)"@en, "volume (μ³)"@fr, "volume (μ³)"@nl, "όγκος (μ³)"@el, "запремина (μ³)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:volumeQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "volume quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:volumes + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :MultiVolumePublication ; + rdfs:label "delen"@nl, "volumes"@en, "томови"@sr ; + rdfs:range :WrittenWork ; + rdfs:subPropertyOf dul:hasMember ; + prov:wasDerivedFrom . + +:vonKlitzingConstant + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :CelestialBody ; + rdfs:label "von Klitzing electromagnetic constant (RK)"@en, "von Klitzing elektromagnetisch Konstant (RK)"@de ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:votesAgainst + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :StatedResolution ; + rdfs:label "Aantal stemmen tegen"@nl, "Stimmen gegen die Resolution"@de, "Votes against the resolution"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:votesFor + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :StatedResolution ; + rdfs:label "Aantal stemmen voor"@nl, "Anzahl der Stimmen für die Resolution"@de, "Number of votes in favour of the resolution"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wagon + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Train ; + rdfs:label "train carriage"@en, "wagon"@nl ; + rdfs:range :TrainCarriage ; + prov:wasDerivedFrom . + +:waistSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Taillenumfang (μ)"@de, "waist size (μ)"@en, "димензије струка (μ)"@sr, "размер талия (μ)"@bg, "ウエスト (μ)"@ja ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:war + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :MilitaryPerson ; + rdfs:label "Kriege"@de, "wars"@en, "πολέμους"@el, "ратови"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:ward + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :LiechtensteinSettlement ; + rdfs:label "ward of a liechtenstein settlement"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:water + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Wasser"@de, "eau"@fr, "water"@en, "вода"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:waterArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "area of water (m2)"@en, "површина воде (m2)"@sr ; + rdfs:range xsd:double ; + owl:equivalentProperty :area ; + prov:wasDerivedFrom . + +:waterPercentage + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "Wasseranteil von einem Ort"@de, "water percentage of a place"@en, "проценат воде неког места"@sr ; + rdfs:range xsd:float ; + prov:wasDerivedFrom . + +:watercourse + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Wasserlauf"@de, "watercourse"@en, "водоток"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:watershed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Stream ; + rdfs:label "Wasserscheide (m2)"@de, "cuenca hidrográfica (m2)"@es, "waterscheiding (m2)"@nl, "watershed (m2)"@en, "λεκάνη_απορροής (m2)"@el ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:waterwayThroughTunnel + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Waterway that goes through the tunnel."@en ; + rdfs:domain :WaterwayTunnel ; + rdfs:label "Wasserweg durch Tunnel"@de, "waterway through tunnel"@en, "пловни пут кроз тунел"@sr ; + rdfs:subPropertyOf dul:hasCommonBoundary ; + prov:wasDerivedFrom . + +:wavelength + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Colour ; + rdfs:label "Wellenlänge (μ)"@de, "longueur d'onde (μ)"@fr, "wavelength (μ)"@en, "таласна дужина (μ)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:weapon + a rdf:Property, owl:ObjectProperty ; + rdfs:domain ; + rdfs:label "Waffe"@de, "arme"@fr, "wapen"@nl, "weapon"@en, "оружје"@sr ; + rdfs:range :Weapon ; + prov:wasDerivedFrom . + +:webcast + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "The URL to the webcast of the Thing."@en ; + rdfs:label "webcast"@de, "webcast"@en, "webcast"@nl ; + rdfs:subPropertyOf dul:isClassifiedBy ; + prov:wasDerivedFrom . + +:websiteLabel + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "label of a website"@en ; + rdfs:range rdf:langString ; + prov:wasDerivedFrom . + +:weddingParentsDate + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "Hochzeitstag der Eltern"@de, "Parents Wedding Date"@en, "data do casamento dos pais"@pt, "date de marriage des parents"@fr, "датум венчања родитеља"@sr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:weight + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Gewicht (g)"@de, "gewicht (g)"@nl, "peso (g)"@pt, "poids (g)"@fr, "vægt (g)"@da, "weight (g)"@en, "βάρος (g)"@el, "тежина (g)"@sr, "体重 (g)"@ja ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P2067 ; + prov:wasDerivedFrom . + +:westPlace + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "indicates another place situated west."@en, "indique un autre lieu situé à l'ouest."@fr, "በምዕራብ የሚገኘውን ሌላ ቦታ ያመለክታል."@am ; + rdfs:domain :Place ; + rdfs:label "west place"@en, "ምዕራብ"@fr ; + rdfs:range :Place ; + rdfs:subPropertyOf :closeTo ; + prov:wasDerivedFrom . + +:whaDraft + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "WHA драфт"@sr, "wha draft"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:whaDraftTeam + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "WHA тим који је драфтовао играча"@sr, "wha draft team"@en ; + rdfs:range :HockeyTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:whaDraftYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :IceHockeyPlayer ; + rdfs:label "WHA година драфта"@sr, "wha draft year"@en ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:wheelbase + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :Automobile ; + rdfs:label "Radstand (μ)"@de, "wheelbase (μ)"@en, "међуосовинско растојање (μ)"@sr ; + rdfs:range xsd:double ; + owl:equivalentProperty wikidata:P3039 ; + prov:wasDerivedFrom . + +:wholeArea + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Place ; + rdfs:label "gesamter Bereich"@de, "whole area"@en, "ጠቅላላ ቦታ"@am ; + rdfs:range :Area ; + prov:wasDerivedFrom . + +:width + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "Breite (μ)"@de, "ancho (μ)"@es, "breedte (μ)"@nl, "width (μ)"@en, "πλάτος (μ)"@el, "ширина (μ)"@sr ; + rdfs:range xsd:double ; + owl:equivalentProperty , wikidata:P2049 ; + prov:wasDerivedFrom . + +:widthQuote + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Place ; + rdfs:label "width quote"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:wikiPageCharacterSize + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "A supprimer, laisser encore pour ne pas casser DBpedia Live"@fr, "Needs to be removed, left at the moment to not break DBpedia Live"@en ; + rdfs:label "Character size of wiki page"@en, "Taille des caractères des pages wiki"@fr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wikiPageDisambiguates + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wikipage disambiguates"@en ; + prov:wasDerivedFrom . + +:wikiPageEditLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link to the Wikipage edit URL"@en ; + prov:wasDerivedFrom . + +:wikiPageExternalLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link from a Wikipage to an external page"@en ; + prov:wasDerivedFrom . + +:wikiPageExtracted + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Date a page was extracted ''''''"@en ; + rdfs:label "extraction datetime"@en ; + rdfs:range xsd:dateTime ; + prov:wasDerivedFrom . + +:wikiPageHistoryLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link to the Wikipage history URL"@en ; + prov:wasDerivedFrom . + +:wikiPageID + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wikipage page ID"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:wikiPageInDegree + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wiki page in degree"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wikiPageInterLanguageLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link from a Wikipage to a Wikipage in a different language about the same or a related subject."@en ; + prov:wasDerivedFrom . + +:wikiPageLength + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "page length (characters) of wiki page"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wikiPageLengthDelta + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "Delta de revision avec la précédante"@fr, "Delta size of a revision with last one"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:wikiPageModified + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia ''''''"@en ; + rdfs:label "Wikipage modification datetime"@en ; + rdfs:range xsd:dateTime ; + prov:wasDerivedFrom . + +:wikiPageOutDegree + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wiki page out degree"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wikiPageRedirects + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wikipage redirect"@en ; + prov:wasDerivedFrom . + +:wikiPageRevisionID + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Wikipage revision ID"@en ; + rdfs:range xsd:integer ; + prov:wasDerivedFrom . + +:wikiPageRevisionLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link to the Wikipage revision URL"@en ; + prov:wasDerivedFrom . + +:wikiPageUsesTemplate + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "DO NOT USE THIS PROPERTY! For internal use only."@en, "NE PAS UTILISER CETTE PROPRIETE! Réservé à l'usage interne uniquement."@fr ; + rdfs:label "Wikiseite verwendet Template"@de, "page wiki transcluant un modèle"@fr, "wiki page uses template"@en ; + rdfs:range :WikimediaTemplate ; + prov:wasDerivedFrom . + +:wikiPageWikiLink + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Link from a Wikipage to another Wikipage"@en ; + rdfs:subPropertyOf dul:associatedWith ; + prov:wasDerivedFrom . + +:wikiPageWikiLinkText + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Reserved for DBpedia."@en ; + rdfs:label "Text used to link from a Wikipage to another Wikipage"@en ; + prov:wasDerivedFrom . + +:wikidataSplitIri + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "is used to denote splitting of a Wikidata IRI to one or more IRIs"@en ; + rdfs:label "Wikidata IRI slit"@en ; + prov:wasDerivedFrom . + +:wilaya + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Settlement ; + rdfs:label "wilaya"@en, "вилајет"@sr ; + rdfs:range :Place ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:wimbledonDouble + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "wimbledon double"@en, "вимблдон дубл"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:wimbledonMixed + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "wimbledon mixed"@en, "вимблдон микс дубл"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:wimbledonSingle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :TennisPlayer ; + rdfs:label "wimbledon single"@en, "вимблдон појединачно"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:wineProduced + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :WineRegion ; + rdfs:label "wine produced"@en, "производи вино"@sr ; + rdfs:subPropertyOf dul:isLocationOf ; + prov:wasDerivedFrom . + +:wineRegion + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Grape ; + rdfs:label "Weinregion"@de, "wine region"@en, "регион вина"@sr ; + rdfs:range :WineRegion ; + rdfs:subPropertyOf dul:hasLocation ; + prov:wasDerivedFrom . + +:wineYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :WineRegion ; + rdfs:label "Weinjahr"@de, "wine year"@en, "година флаширања вина"@sr ; + rdfs:range xsd:date ; + prov:wasDerivedFrom . + +:wingArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Flügelfläche (m2)"@de, "wing area (m2)"@en, "површина крила (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:wingspan + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Aircraft ; + rdfs:label "Spannweite (μ)"@de, "wingspan (μ)"@en, "распон крила (μ)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:wins + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Siege"@de, "wins"@en, "zeges"@nl, "νίκες"@el, "победе"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:winsAtAlpg + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at ALPG"@en, "победе на ALPG"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtAsia + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at ASIA"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtAus + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at AUS"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtChallenges + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at challenges"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtChampionships + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at championships"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtJLPGA + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at JLPGA"@en, "победе на JLPGA"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtJapan + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at japan"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtKLPGA + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at KLPGA"@en, "победе на KLPGA"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtLAGT + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at LAGT"@en, "победе на LAGT"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtLET + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at LET"@en, "победе на LET"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtLPGA + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at LPGA"@en, "победе на LPGA"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtMajors + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at majors"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtNWIDE + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at NWIDE"@en, "победе на NWIDE"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtOtherTournaments + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at other tournaments"@en, "победе на осталим турнирима"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtPGA + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at pga"@en, "победе на PGA"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtProTournaments + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at pro tournaments"@en, "победе на професионалним турнирима"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtSenEuro + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at Senior Euro"@en ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsAtSun + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "wins at sun"@en, "победе на SUN"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winsInEurope + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :GolfPlayer ; + rdfs:label "Siege in Europa"@de, "wins in Europe"@en, "победе у Европи"@sr ; + rdfs:subPropertyOf dul:isParticipantIn ; + prov:wasDerivedFrom . + +:winterAppearances + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :OlympicResult ; + rdfs:label "winter appearances"@en, "зимски наступи"@sr ; + rdfs:range :OlympicResult ; + rdfs:subPropertyOf dul:sameSettingAs ; + prov:wasDerivedFrom . + +:winterTemperature + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Settlement ; + rdfs:label "Wintertemperatur (K)"@de, "winter temperature (K)"@en, "зимска температура (K)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:woRMS + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Registre mondial des espèces marines"@fr, "World Register of Marine Species"@en ; + rdfs:domain :Species ; + rdfs:label "WoRMS"@en, "WoRMS"@fr, "WoRMS"@nl ; + prov:wasDerivedFrom . + +:wordBefore + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Country ; + rdfs:label "word before the country"@en, "реч пре државе"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:work + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :FictionalCharacter ; + rdfs:label "Arbeit"@de, "work"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:workArea + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Building ; + rdfs:label "Arbeitsplätze (m2)"@de, "work area (m2)"@en, "радни простор (m2)"@sr ; + rdfs:range xsd:double ; + prov:wasDerivedFrom . + +:world + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Welt"@de, "monde"@fr, "world"@en, "свет"@sr ; + rdfs:range ; + prov:wasDerivedFrom . + +:worldChampionTitleYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "can be one or several years"@en, "il peut s'agir d'une ou de plusieurs années"@fr, "може бити једна или више година"@sr ; + rdfs:domain :Athlete ; + rdfs:label "année d'obtention du titre de champion du monde"@fr, "jaar van wereldkampioen titel"@nl, "year of world champion title"@en, "година освајања светског шампионата"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:worldOpen + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "world open"@en, "светско отворено првенство"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:worldTeamCup + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Athlete ; + rdfs:label "world team cup"@en, "светско клупско првенство"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:worldTournament + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Person ; + rdfs:label "Weltturnier"@de, "world tournament"@en, "светски турнир"@sr ; + rdfs:range :Tournament ; + prov:wasDerivedFrom . + +:worldTournamentBronze + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "world tournament bronze"@en, "број бронзаних медаља са светских турнира"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:worldTournamentGold + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "world tournament gold"@en, "број златних медаља са светских турнира"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:worldTournamentSilver + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :Person ; + rdfs:label "world tournament silver"@en, "број сребрних медаља са светских турнира"@sr ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:worstDefeat + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerClub ; + rdfs:label "höchste Niederlage"@de, "worst defeat"@en, "најтежи пораз"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:wptFinalTable + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "WPT финале"@sr, "wpt final table"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wptItm + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "WPT ITM"@sr, "wpt itm"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wptTitle + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "WPT титула"@sr, "wpt title"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:writer + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Work ; + rdfs:label "auteur"@en, "schriftsteller"@de, "schrijver"@nl, "scrittore"@it, "σεναριογράφος"@el, "писац"@sr ; + rdfs:range :Person ; + rdfs:subPropertyOf dul:coparticipatesWith ; + prov:wasDerivedFrom . + +:wsopItm + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "WSOP ITM"@sr, "wsop itm"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:wsopWinYear + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :PokerPlayer ; + rdfs:label "wsop win year"@en, "година освајања WSOP-а"@sr ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:wsopWristband + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Наруквица коју осваја шампион WSOP-a."@sr ; + rdfs:domain :PokerPlayer ; + rdfs:label "WSOP наруквица"@sr, "wsop wristband"@en ; + rdfs:range xsd:nonNegativeInteger ; + prov:wasDerivedFrom . + +:year + a rdf:Property, owl:DatatypeProperty ; + rdfs:label "Jahr"@de, "anno"@it, "année"@fr, "año"@es, "jaar"@nl, "year"@en, "έτος"@el, "година"@sr, "ዓመት"@am ; + rdfs:range xsd:gYear ; + owl:equivalentProperty wikidata:P2257 ; + prov:wasDerivedFrom . + +:yearElevationIntoNobility + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :NobleFamily ; + rdfs:label "Jahr der Erhebung in den Adelsstand"@de, "jaar van verheffing in de adelstand"@nl, "year of elevation into the nobility"@en ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:yearOfConstruction + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "The year in which construction of the Place was finished."@en, "Το έτος στο οποίο ολοκληρώθηκε η κατασκευή ενός μέρους."@el, "Година када је изградња нечега завршена."@sr ; + rdfs:domain :Place ; + rdfs:label "Baujahr"@de, "bouwjaar"@nl, "year of construction"@en, "έτος κατασκευής"@el, "година изградње"@sr ; + rdfs:range xsd:gYear ; + owl:equivalentProperty ; + prov:wasDerivedFrom . + +:yearOfElectrification + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Year station was electrified, if not previously at date of opening."@en, "Година када је станица електрифицирана, уколико није била при отварању."@sr ; + rdfs:domain :Station ; + rdfs:label "Jahr der Elektrifizierung"@de, "year of electrification"@en, "година електрификације"@sr ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:years + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "Jahre"@de, "seizoen"@nl, "years"@en, "χρόνια"@el, "сезона"@sr, "年"@ja ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:youthClub + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :Athlete ; + rdfs:label "Jugendclub"@de, "jeugdclub"@nl, "youth club"@en, "омладински клуб"@sr, "ユースクラブ"@ja ; + rdfs:range :SportsTeam ; + rdfs:subPropertyOf dul:isMemberOf ; + prov:wasDerivedFrom . + +:youthWing + a rdf:Property, owl:ObjectProperty ; + rdfs:domain :PoliticalParty ; + rdfs:label "ala jovem"@pt, "youth wing"@en, "омладинско крило"@sr ; + rdfs:subPropertyOf dul:hasPart ; + prov:wasDerivedFrom . + +:youthYears + a rdf:Property, owl:DatatypeProperty ; + rdfs:domain :SoccerPlayer ; + rdfs:label "Jugendjahre"@de, "youth years"@en, "омладинске године"@sr, "ユース年"@ja ; + rdfs:range xsd:gYear ; + prov:wasDerivedFrom . + +:zdb + a rdf:Property, owl:DatatypeProperty ; + rdfs:comment "Identifier for serial titles. More precise than issn"@en, "zdb је серијски број који се користи за индетификацију. Прецизнији је од issn."@sr ; + rdfs:domain :PeriodicalLiterature ; + rdfs:label "zdb"@en, "zdb"@sr ; + rdfs:range xsd:string ; + prov:wasDerivedFrom . + +:zipCode + a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:domain :PopulatedPlace ; + rdfs:label "Postleitzahl"@de, "código postal"@gl, "postcode"@nl, "zip code"@en, "ταχυδρομικός κώδικας"@el, "Поштански код"@sr ; + rdfs:range xsd:string ; + rdfs:subPropertyOf :postalCode ; + owl:equivalentProperty wikidata:P281 ; + prov:wasDerivedFrom . + +:zodiacSign + a rdf:Property, owl:ObjectProperty ; + rdfs:comment "Zodiac Sign. Applies to persons, planets, etc"@en, "Зодиакален знак. Приложимо за хора, планети и пр"@bg ; + rdfs:label "Sternzeichen"@de, "signo zodiacal"@gl, "zodiac sign"@en, "зодия"@bg ; + prov:wasDerivedFrom . + +rdf:langString + a rdfs:Datatype ; + rdfs:label "rdf:langString"@en . + +xsd:anyURI + a rdfs:Datatype ; + rdfs:label "xsd:anyURI"@en . + +xsd:boolean + a rdfs:Datatype ; + rdfs:label "xsd:boolean"@en . + +xsd:date + a rdfs:Datatype ; + rdfs:label "xsd:date"@en . + +xsd:dateTime + a rdfs:Datatype ; + rdfs:label "xsd:dateTime"@en . + +xsd:double + a rdfs:Datatype ; + rdfs:label "xsd:double"@en . + +xsd:float + a rdfs:Datatype ; + rdfs:label "xsd:float"@en . + +xsd:gDay + a rdfs:Datatype ; + rdfs:label "xsd:gDay"@en . + +xsd:gMonth + a rdfs:Datatype ; + rdfs:label "xsd:gMonth"@en . + +xsd:gMonthDay + a rdfs:Datatype ; + rdfs:label "xsd:gMonthDay"@en . + +xsd:gYear + a rdfs:Datatype ; + rdfs:label "xsd:gYear"@en . + +xsd:gYearMonth + a rdfs:Datatype ; + rdfs:label "xsd:gYearMonth"@en . + +xsd:integer + a rdfs:Datatype ; + rdfs:label "xsd:integer"@en . + +xsd:negativeInteger + a rdfs:Datatype ; + rdfs:label "xsd:negativeInteger"@en . + +xsd:nonNegativeInteger + a rdfs:Datatype ; + rdfs:label "xsd:nonNegativeInteger"@en . + +xsd:nonPositiveInteger + a rdfs:Datatype ; + rdfs:label "xsd:nonPositiveInteger"@en . + +xsd:positiveInteger + a rdfs:Datatype ; + rdfs:label "xsd:positiveInteger"@en . + +xsd:string + a rdfs:Datatype ; + rdfs:label "xsd:string"@en . + +xsd:time + a rdfs:Datatype ; + rdfs:label "xsd:time"@en . + diff --git a/GSoC25_H/requirements.txt b/GSoC25_H/requirements.txt new file mode 100644 index 0000000..91bdcb6 --- /dev/null +++ b/GSoC25_H/requirements.txt @@ -0,0 +1,36 @@ +pillow +pandas +numpy +scipy +SPARQLWrapper +wikipedia +stanza +dspy + +#dev +pyright +streamlit +torch +tqdm +transformers +pytz +psutil +matplotlib +scikit-learn +python-crfsuite +jsonlines +toml +fastcoref +requests +nltk +graphviz +fairseq +marisa-trie +sklearn-crfsuite +gdown # for downloading the models from google drive +genre +sentence-transformers +rdflib +googletrans +tensorboardX +sentencepiece \ No newline at end of file diff --git a/GSoC25_H/src/chunking/chunking_model.py b/GSoC25_H/src/chunking/chunking_model.py new file mode 100644 index 0000000..5cb52b2 --- /dev/null +++ b/GSoC25_H/src/chunking/chunking_model.py @@ -0,0 +1,396 @@ +import os, torch, random, pytz, glob, datetime, time, psutil, json, re +import pandas as pd, numpy as np +import matplotlib.pyplot as plt +from torch.utils import data +from transformers import AutoTokenizer, AutoModel +from tqdm import tqdm +import torch.nn.functional as F +import torch.nn as nn +import string +from collections import Counter +from torch.optim import AdamW +from transformers.modeling_outputs import SequenceClassifierOutput +from sklearn.metrics import ( + classification_report, + confusion_matrix, + ConfusionMatrixDisplay, +) + + +def foreign_characters(s): + # all unicode blocks here https://www.fileformat.info/info/unicode/block/index.htm + ml = [] + s = re.sub(r"\(.*?\)", "", s) # foreign characters can come inside round brackets + s = re.sub(r"[A-Z]+", "", s) # foreign characters can come as abbreviations + s = re.sub(r"(mg)|(ml)|(khz)|(kg)", "", s.lower()) # removing common english terms + + # when i directly modify s, then it means that, these characters will NOT become a reason to drop the sentence in consideration + s = re.sub(r"[\u0080-\u00FF]", "", s) # Latin-1 Supplement: degree symbol + s = re.sub(r"[\u02B0-\u02FF]", "", s) # Spacing Modifier: ring above, dot above + s = re.sub( + r"[\u2000-\u209F]", "", s + ) # General Punctuation: zero-width joiner + superscripts + s = re.sub(r"[\u2200-\u22FF]", "", s) # mathematical symbols + s = re.sub(r"[\u0300-\u0362]", "", s) # Diacritical Marks + s = re.sub( + r"[\u0020-\u0040]|[\u005B-\u0060]|[\u007B-\u007E]", "", s + ) # Punctuations and Digit block: removing those which are common in all languages + s = re.sub(r"[\u0964\u0965]", "", s) # hindi single purna viram, double purna viram + s = re.sub(r"[\uFE00-\uFE0F]+", "", s) # emoji variations + + # when i make a new variable for s, then it means that, these characters WILL become a reason to drop the sentence in consideration + # some erroneous languages, which were not supposed to be present but yet they are present + s2 = re.sub(r"[\u0100-\u024F]", "", s) # Latin extended - A and B + s2 = re.sub(r"[\u1E00-\u1EFF]", "", s2) # Latin Extended Additional + s2 = re.sub(r"[\uFFF9-\uFFFF]", "", s2) # special characters + s2 = re.sub( + r"[\u0300-\u05FF]", "", s2 + ) # some middle eastern languages, and russian + s2 = re.sub(r"[\u20A0-\uA8DF]", "", s2) # other obscure languages + s2 = re.sub(r"[\uA900-\uFFFFF]", "", s2) # other obscure languages + s2 = re.sub(r"[\U0001F004-\U0001FA95]+", "", s2) # emojis + + lang_unicodes = [ + ["English", ("\u0021", "\u007F")], + ["Devnagri", ("\u0900", "\u097F"), ("\uA8E0", "\uA8FF")], + ["Bangla", ("\u0980", "\u09FF")], + ["Gujarati", ("\u0A80", "\u0AFF")], + ["Urdu/Persian/Arabic", ("\u0600", "\u06FF"), ("\u08A0", "\u08FF")], + ["Tamil", ("\u0B80", "\u0BFF")], + ["Telegu", ("\u0C00", "\u0C7F")], + ["punjabi/gurumukhi", ("\u0A00", "\u0A7F")], + ["malayalam", ("\u0D00", "\u0D7F")], + ["oriya", ("\u0B00", "\u0B7F")], + ["kannada", ("\u0C80", "\u0CFF")], + ["Sinhala", ("\u0D80", "\u0DFF")], + ["Thai", ("\u0E00", "\u0E7F")], + ["Lao", ("\u0E80", "\u0EFF")], + ["Tibetan", ("\u0F00", "\u0FFF")], + ["Greek", ("\u1F00", "\u1FFF")], + # ,['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')], ['',('\u','\u')] + ] + + for word in s2.split(): + for ch in word: + found = False + for i, lu in enumerate(lang_unicodes): + for block in lu[1:]: + if ch >= block[0] and ch <= block[1]: + found = True + ml.append(i) + if not found: + pass + # print('Wait!! Some unknown character encountered in character <'+ch+'> in word <'+word+'> in sentence <'+s2+'>') + # print('Its unicode is',ch.encode('unicode_escape')) + # input('Waiting...') + if not ml: + return True + + c = Counter(ml) + base_script = c.most_common()[0][0] + + s = re.sub(r"\s", "", s) + base_lang = lang_unicodes[base_script] + foreign_character_found = True + for block in base_lang[1:]: + foreign_character_found = foreign_character_found and bool( + re.search(r"[^" + block[0] + r"-" + block[1] + r"]+", s) + ) + # if foreign_character_found: + # print('-'*100,re.search(r'[^'+block[0]+r'-'+block[1]+r']+',s)[0],re.search(r'[^'+block[0]+r'-'+block[1]+r']+',s)[0].encode('unicode_escape')) + s = re.sub(r"[" + block[0] + r"-" + block[1] + r"]+", "", s) + + return foreign_character_found + + +class chunker_class(torch.nn.Module): + def __init__(self, d, hyper_params): + super(chunker_class, self).__init__() + self.hyper_params = hyper_params + self.model = AutoModel.from_pretrained( + self.hyper_params["bert_model_name"], + return_dict=True, + output_hidden_states=True, + ) + print("========== Model created ==========") + self.fc1 = nn.Linear( + hyper_params["embedding_size"], len(self.hyper_params["my_tagset"]) + ) + self.activation = nn.ReLU() + self.criterion = torch.nn.CrossEntropyLoss() + + # self.optim = AdamW(self.model.parameters(), lr=alpha) + self.device = d + self.best_val_acc = -1 + + def predict_from_logits(self, logits, attention_mask, error_fixing=False): + if error_fixing: + batch_tags = [] + last_B_tag_index, X_tag_index = 11, 24 # checked both of them manually + for sent in logits: + sent_tags, prev_tag = [], "" + for word in sent: + word_tag, mx_idx = "", "" + mx_idx = word[: last_B_tag_index + 1].argmax() + if word[mx_idx] <= word[X_tag_index]: + mx_idx = X_tag_index + if prev_tag != "": + next_possible_tag = "I_" + prev_tag[2:] + if ( + word[mx_idx] + <= word[ + self.hyper_params["my_tagset"].index(next_possible_tag) + ] + ): + mx_idx = self.hyper_params["my_tagset"].index( + next_possible_tag + ) + word_tag = self.hyper_params["my_tagset"][mx_idx] + prev_tag = ( + word_tag if word_tag != "X" else prev_tag + ) # such that prev_tag is always = last non-X predicted tag + sent_tags.append(word_tag) + batch_tags.append(sent_tags) + else: + a = torch.argmax( + logits, dim=2 + ) # logits-->[batches,max_len,tag_len] now a-->[batches, max_len] + batch_tags = [] + for b in a: + t = [self.hyper_params["my_tagset"][c] for c in b] + batch_tags.append(t) + # batch_tags are like [ ['B_NP','I_NP',...,'X'], ['B_NP','B_NP',...,'X'] ] + batch_tags_flat = [item for sublist in batch_tags for item in sublist] + # batch_tags_flat are like ['B_NP','I_NP',...,'X','B_NP','B_NP',...,'X'] + batch_tags_pruned = [ + a2 for b, a2 in zip(attention_mask.view(-1) == 1, batch_tags_flat) if b + ] + # batch_tags_pruned are like ['B_NP','I_NP',...,'B_NP','B_NP',...] + return batch_tags_pruned + + def take_mean(self, tensorlist): + out = 0 + for t in tensorlist: + out += t + out /= len(tensorlist) + return out + + def forward( + self, + input_ids, + attention_mask, + y, + wordpiece_indices, + save_embeddings=False, + numpy_containers=[], + ): + if self.hyper_params["embedding_way"] == "last_hidden_state": + out = self.model( + input_ids, attention_mask=attention_mask + ).last_hidden_state # [batches, max_len, 768] + elif self.hyper_params["embedding_way"] == "first_two": + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean( + [out.hidden_states[0], out.hidden_states[1]] + ) # [batches, max_len, 768] + elif self.hyper_params["embedding_way"] == "last_two": + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean( + [out.hidden_states[-2], out.hidden_states[-3]] + ) # [batches, max_len, 768] + else: + raise "Unknown embedding_way specified" + # out dimensions = [batches, max_len, 768] + # y dimensions = [batches, max_len, len(tag_set)] + # wordpiece_indices dimensions = [batches, max_len, 2] + # print(out.shape, y.shape, wordpiece_indices.shape) + # input('wait') + + if self.hyper_params["which_way"] == 3: + c = torch.zeros(out.shape).to(self.device) + for i in range(out.shape[0]): + out_sent_i = out[i] + wpi_sent_i = wordpiece_indices[i] + wpi_sent_i = ( + wpi_sent_i[wpi_sent_i != 0] + ).tolist() # this step flattens the list of pairs to a single list + # print('$$',wpi_sent_i) + j, k = 0, 0 + while j < out_sent_i.shape[0]: + if ( + j not in wpi_sent_i[::2] + ): # that is why we are hopping with 2 steps + c[i, k] += out[i, j] + j += 1 + else: + start = j + end = wpi_sent_i[2 * wpi_sent_i[::2].index(j) + 1] + c[i, k] += torch.mean(out[i][start:end], 0) + j = end + k += 1 + out = c + + if save_embeddings and ( + numpy_containers[0].shape[0] < 5000 or numpy_containers[1].shape[0] < 5000 + ): + subwords = numpy_containers[0] + nonsubwords = numpy_containers[1] + for batch_i in range(out.shape[0]): + sent_i = out[batch_i] # [max_len, 768] + sent_i_b_nps = (y[batch_i][:, 5] == 1).nonzero(as_tuple=True)[ + 0 + ] # indices of all B_NPs contained in a single vector 1xn + wordpiece_absolute_indices = [wordpiece_indices[batch_i][0][0]] + + reduce_offset = ( + wordpiece_indices[batch_i][0][1] + - wordpiece_indices[batch_i][0][0] + - 1 + ) + for i1 in range(1, wordpiece_indices.shape[1]): + if ( + wordpiece_indices[batch_i][i1][0] == 0 + and wordpiece_indices[batch_i][i1][1] == 0 + ): + break + wordpiece_absolute_indices.append( + wordpiece_indices[batch_i][i1][0] - reduce_offset + ) + reduce_offset += ( + wordpiece_indices[batch_i][i1][1] + - wordpiece_indices[batch_i][i1][0] + - 1 + ) + + for i1 in sent_i_b_nps: + res = "".join( + random.choices(string.ascii_uppercase + string.digits, k=25) + ) + if i1 in wordpiece_absolute_indices: + if subwords.shape[0] == 0: + subwords = sent_i[i1].cpu().numpy() + else: + subwords = np.vstack((subwords, sent_i[i1].cpu().numpy())) + # print('subwords',subwords) + # input() + # torch.save(sent_i[i1].cpu().numpy(),'data/tsne/B_NP/'+str(self.hyper_params['which_way'])+'/subwords/'+res+'.bin') + else: + if nonsubwords.shape[0] == 0: + nonsubwords = sent_i[i1].cpu().numpy() + else: + nonsubwords = np.vstack( + (nonsubwords, sent_i[i1].cpu().numpy()) + ) + # print('nonsubwords',nonsubwords) + # input() + # torch.save(sent_i[i1].cpu().numpy(),'data/tsne/B_NP/'+str(self.hyper_params['which_way'])+'/nonsubwords/'+res+'.bin') + numpy_containers[0] = subwords + numpy_containers[1] = nonsubwords + + out = self.fc1(out) # [batches, max_len, len(tag_set)] + logits = self.activation(out) # [batches, max_len, len(tag_set)] + y = y.float().view(-1, out.shape[2]) + y = torch.argmax(y, dim=1) + active_y = torch.where( + attention_mask.view(-1) == 1, + y.view(-1), + torch.tensor(self.criterion.ignore_index).type_as(y), + ) + loss = self.criterion(logits.view(-1, out.shape[2]), active_y) + return SequenceClassifierOutput(loss=loss, logits=logits) + + def forward_for_prediction(self, input_ids, attention_mask, wordpiece_indices): + if self.hyper_params["embedding_way"] == "last_hidden_state": + out = self.model( + input_ids, attention_mask=attention_mask + ).last_hidden_state # [batches, max_len, 768] + elif self.hyper_params["embedding_way"] == "first_two": + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([out.hidden_states[0], out.hidden_states[1]]) + elif self.hyper_params["embedding_way"] == "last_two": + out = self.model(input_ids, attention_mask=attention_mask) + out = self.take_mean([out.hidden_states[-2], out.hidden_states[-3]]) + else: + raise "Unknown embedding_way specified" + if self.hyper_params["which_way"] == 3: + c = torch.zeros(out.shape).to(self.device) + for i in range(out.shape[0]): + out_sent_i = out[i] + wpi_sent_i = wordpiece_indices[i] + wpi_sent_i = (wpi_sent_i[wpi_sent_i != 0]).tolist() + # print('$$',wpi_sent_i) + j, k = 0, 0 + while j < out_sent_i.shape[0]: + if j not in wpi_sent_i[::2]: + c[i, k] += out[i, j] + j += 1 + else: + start = j + end = wpi_sent_i[2 * wpi_sent_i[::2].index(j) + 1] + c[i, k] += torch.mean(out[i][start:end], 0) + j = end + k += 1 + out = c + # out, _ = self.rnn1(out) # [batches, max_len, len(tag_set)] + out = self.fc1(out) # [batches, max_len, len(tag_set)] + logits = self.activation(out) # [batches, max_len, len(tag_set)] + return SequenceClassifierOutput(logits=logits) + + +def predict_with_model(model, sent, tokenizer): + model.eval() + a = tokenizer("i", return_tensors="pt", max_length=4, padding="max_length")[ + "input_ids" + ][0] + cls_id, sep_id, pad_id = a[0], a[2], a[3] + + input_ids = [] + attention_mask = [] + tag_mask = [] + wordpiece_indices = [] + max_len = model.hyper_params["max_len"] + + tii, wi = [cls_id], [] + for i, (word) in enumerate(sent.split("\t")): + tids = tokenizer.convert_tokens_to_ids(tokenizer.tokenize(word)) + if len(tids) > 1: + if ( + model.hyper_params["which_way"] == 3 + ): # average out the wordpiece embeddings during the forward pass + wi.append([len(tii), len(tii) + len(tids)]) + elif model.hyper_params["which_way"] == 2: # take last wordpiece token id + tids = [tids[-1]] + elif model.hyper_params["which_way"] == 1: # take first wordpiece token id + tids = [tids[0]] + tii += tids + + tii.append(sep_id) + tam = [1] * len(tii) + [0] * (max_len - len(tii)) + tm = ( + [0] + + [1] * (len(sent.split("\t"))) + + [0] * (max_len - len(sent.split("\t")) - 1) + ) + if len(tii) > 511: + return ["Size exceeded"] + tii = tii + [pad_id] * (max_len - len(tii)) + input_ids.append(tii) + attention_mask.append(tam) + tag_mask.append(tm) + wi = wi + [[0, 0]] * ( + max_len - len(wi) + ) # putting max_len is a bit of overkill here I know. Length of wi represents the number of words in the sentence that can be splitted into multiple wordpieces. I wrote max_len here just for consistency. + wordpiece_indices.append(wi) + + input_ids = torch.tensor(input_ids).to(model.device) + attention_mask = torch.tensor(attention_mask).to(model.device) + tag_mask = torch.tensor(tag_mask).to(model.device) + wordpiece_indices = torch.tensor(wordpiece_indices).to(model.device) + + with torch.no_grad(): + out = model.forward_for_prediction( + input_ids, attention_mask, wordpiece_indices + ).logits + + y_pred = model.predict_from_logits(out, tag_mask) + return y_pred diff --git a/GSoC25_H/src/chunking/crf_chunker.py b/GSoC25_H/src/chunking/crf_chunker.py new file mode 100644 index 0000000..c06351f --- /dev/null +++ b/GSoC25_H/src/chunking/crf_chunker.py @@ -0,0 +1,105 @@ +import subprocess +import time +import os +import sklearn_crfsuite, pickle + + +def word2features(sent, i): + word = sent[i][0] + postag = sent[i][1] + + features = { + "bias": 1.0, + "word": word, + "postag": postag, + "-2:postag": sent[i - 2][1] if i - 2 >= 0 else "X", + "-1:postag": sent[i - 1][1] if i - 1 >= 0 else "X", + "+1:postag": sent[i + 1][1] if i + 1 < len(sent) else "X", + "+2:postag": sent[i + 2][1] if i + 2 < len(sent) else "X", + } + + return features + + +def sent2features(sent): + return [word2features(sent, i) for i in range(len(sent))] + + +def sent2labels(sent): + return [label for token, postag, label in sent] + + +def sent2tokens(sent): + return [token for token, postag, label in sent] + + +def reduce_one_dim(a): + flat_list = [item for sublist in a for item in sublist] + # b = [] + # for c in tqdm(a, desc='reducing dimension'): + # b = b + c + return flat_list + + +def predict_with_crf(sent): + test_sent = [] + + for word in sent.words: + test_sent.append((word.text, word.upos)) + + test_sent = [test_sent] + X_test = [sent2features(s) for s in test_sent] + + crf = sklearn_crfsuite.CRF( + algorithm="lbfgs", + c1=1.3518036184801792, # obtained from grid search + c2=0.04058208879576922, + max_iterations=1000, + all_possible_transitions=True, + verbose=True, + ) + + file = open( + "../../models/RE_model/files_indie/sklearn_crf_model_v2_pos_mapped_2.pkl", "rb" + ) + crf = pickle.load(file) + file.close() + + y_pred = reduce_one_dim(crf.predict(X_test)) + return y_pred + + print(y_pred) + + exit() + + # doc = nlp(sent) + wordl = [] + posl = [] + for sentence in doc.sentences: + for word in sentence.words: + wordl.append(word.text) + posl.append(word.upos) + assert len(wordl) == len(posl) + file = open("tempfile.txt", "w") + for w, p in zip(wordl, posl): + file.write(w + "\t" + p + "\tX\n") + file.close() + # bashCommand = "/media/data_dump/Ritwik/crf/CRF++-0.58/crf_test -m /media/data_dump/Ritwik/crf/CRF++-0.58/example/chunking/crf_model tempfile.txt > tempfile2.txt" + # process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE) + # output, error = process.communicate() + process = subprocess.Popen( + "/media/data_dump/Ritwik/crf/CRF++-0.58/crf_test -m /media/data_dump/Ritwik/crf/CRF++-0.58/example/chunking/crf_model tempfile.txt > tempfile2.txt", + shell=True, + ) + process.wait() + # time.sleep(5) + os.remove("tempfile.txt") + file = open("tempfile2.txt", "r") + content = [x.strip() for x in file.readlines()] + file.close() + ml = [] + for line in content: + if line: + ml.append(line.split("\t")[-1]) + os.remove("tempfile2.txt") + return ml diff --git a/GSoC25_H/src/coref/README.md b/GSoC25_H/src/coref/README.md new file mode 100644 index 0000000..7631a10 --- /dev/null +++ b/GSoC25_H/src/coref/README.md @@ -0,0 +1,11 @@ + +All the scripts are primarily taken from https://github.com/vdobrovolskii/wl-coref + +Some changes we made to run the model (train+inference) on TransMuCores data + +Modified config.toml and pairwise_encoder.py + +Added line 65 in the coref_model.py (self.config.device = ...) + +We have turned off the self._build_optimizers() (comment out the line) in CorefModel because we intent to run the model in inference mode. + diff --git a/GSoC25_H/src/coref/__init__.py b/GSoC25_H/src/coref/__init__.py new file mode 100644 index 0000000..7a5c21a --- /dev/null +++ b/GSoC25_H/src/coref/__init__.py @@ -0,0 +1,12 @@ +""" Describes a model to extract coreferential spans from a list of tokens. + + Usage example: + + model = CorefModel("config.toml", "debug") + model.evaluate("dev") +""" + +from .coref_model import CorefModel + + +__all__ = ["CorefModel"] diff --git a/GSoC25_H/src/coref/anaphoricity_scorer.py b/GSoC25_H/src/coref/anaphoricity_scorer.py new file mode 100644 index 0000000..a294102 --- /dev/null +++ b/GSoC25_H/src/coref/anaphoricity_scorer.py @@ -0,0 +1,111 @@ +""" Describes AnaphicityScorer, a torch module that for a matrix of +mentions produces their anaphoricity scores. +""" + +import torch + +from coref import utils +from coref.config import Config + + +class AnaphoricityScorer(torch.nn.Module): + """Calculates anaphoricity scores by passing the inputs into a FFNN""" + + def __init__(self, in_features: int, config: Config): + super().__init__() + hidden_size = config.hidden_size + if not config.n_hidden_layers: + hidden_size = in_features + layers = [] + for i in range(config.n_hidden_layers): + layers.extend( + [ + torch.nn.Linear(hidden_size if i else in_features, hidden_size), + torch.nn.LeakyReLU(), + torch.nn.Dropout(config.dropout_rate), + ] + ) + self.hidden = torch.nn.Sequential(*layers) + self.out = torch.nn.Linear(hidden_size, out_features=1) + + def forward( + self, + *, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + all_mentions: torch.Tensor, + mentions_batch: torch.Tensor, + pw_batch: torch.Tensor, + top_indices_batch: torch.Tensor, + top_rough_scores_batch: torch.Tensor, + ) -> torch.Tensor: + """Builds a pairwise matrix, scores the pairs and returns the scores. + + Args: + all_mentions (torch.Tensor): [n_mentions, mention_emb] + mentions_batch (torch.Tensor): [batch_size, mention_emb] + pw_batch (torch.Tensor): [batch_size, n_ants, pw_emb] + top_indices_batch (torch.Tensor): [batch_size, n_ants] + top_rough_scores_batch (torch.Tensor): [batch_size, n_ants] + + Returns: + torch.Tensor [batch_size, n_ants + 1] + anaphoricity scores for the pairs + a dummy column + """ + # [batch_size, n_ants, pair_emb] + pair_matrix = self._get_pair_matrix( + all_mentions, mentions_batch, pw_batch, top_indices_batch + ) + + # [batch_size, n_ants] + scores = top_rough_scores_batch + self._ffnn(pair_matrix) + scores = utils.add_dummy(scores, eps=True) + + return scores + + def _ffnn(self, x: torch.Tensor) -> torch.Tensor: + """ + Calculates anaphoricity scores. + + Args: + x: tensor of shape [batch_size, n_ants, n_features] + + Returns: + tensor of shape [batch_size, n_ants] + """ + x = self.out(self.hidden(x)) + return x.squeeze(2) + + @staticmethod + def _get_pair_matrix( + all_mentions: torch.Tensor, + mentions_batch: torch.Tensor, + pw_batch: torch.Tensor, + top_indices_batch: torch.Tensor, + ) -> torch.Tensor: + """ + Builds the matrix used as input for AnaphoricityScorer. + + Args: + all_mentions (torch.Tensor): [n_mentions, mention_emb], + all the valid mentions of the document, + can be on a different device + mentions_batch (torch.Tensor): [batch_size, mention_emb], + the mentions of the current batch, + is expected to be on the current device + pw_batch (torch.Tensor): [batch_size, n_ants, pw_emb], + pairwise features of the current batch, + is expected to be on the current device + top_indices_batch (torch.Tensor): [batch_size, n_ants], + indices of antecedents of each mention + + Returns: + torch.Tensor: [batch_size, n_ants, pair_emb] + """ + emb_size = mentions_batch.shape[1] + n_ants = pw_batch.shape[1] + + a_mentions = mentions_batch.unsqueeze(1).expand(-1, n_ants, emb_size) + b_mentions = all_mentions[top_indices_batch] + similarity = a_mentions * b_mentions + + out = torch.cat((a_mentions, b_mentions, similarity, pw_batch), dim=2) + return out diff --git a/GSoC25_H/src/coref/bert.py b/GSoC25_H/src/coref/bert.py new file mode 100644 index 0000000..27823d5 --- /dev/null +++ b/GSoC25_H/src/coref/bert.py @@ -0,0 +1,97 @@ +"""Functions related to BERT or similar models""" + +from typing import List, Tuple + +import numpy as np # type: ignore +from transformers import AutoModel, AutoTokenizer # type: ignore + +from coref.config import Config +from coref.const import Doc +import datetime, pytz, time + +IST = pytz.timezone("Asia/Kolkata") # your time zone here + + +def get_subwords_batches(doc: Doc, config: Config, tok: AutoTokenizer) -> np.ndarray: + """ + Turns a list of subwords to a list of lists of subword indices + of max length == batch_size (or shorter, as batch boundaries + should match sentence boundaries). Each batch is enclosed in cls and sep + special tokens. + + Returns: + batches of bert tokens [n_batches, batch_size] + """ + # print('bert_window_size',config.bert_window_size, end='\r') + # time.sleep(2) + # print('O',time.time(),end=' ',flush=True) + # print('=',doc['document_id'],'-'*10,end='\r') + # time.sleep(5) + # print(doc.keys()) + # input('wait') + batch_size = config.bert_window_size - 2 # to save space for CLS and SEP + + subwords: List[str] = doc["subwords"] + subwords_batches = [] + start, end = 0, 0 + + while end < len(subwords): + end = min(end + batch_size, len(subwords)) + + # Move back till we hit a sentence end + if end < len(subwords): + sent_id = doc["sent_id"][doc["word_id"][end]] + while end and doc["sent_id"][doc["word_id"][end - 1]] == sent_id: + end -= 1 + + # ritwik added this + if ( + start >= end + ): # this means that the sentence on which start is standing is so long that it exceeds the batch_size + end = min(start + batch_size, len(subwords)) + + length = end - start + batch = [tok.cls_token] + subwords[start:end] + [tok.sep_token] + batch_ids = [-1] + list(range(start, end)) + [-1] + + # Padding to desired length + # -1 means the token is a special token + batch += [tok.pad_token] * (batch_size - length) + batch_ids += [-1] * (batch_size - length) + + # if doc['document_id'] == 'bn/cts/02/cts_0213': + # print('\nbatch',batch,end='\n') + # print(subwords) + # print('batch_size',batch_size) + # print(start, end, len(subwords)) + # input('wait') + subwords_batches.append([tok.convert_tokens_to_ids(token) for token in batch]) + # if doc['document_id'] == 'bn/cts/02/cts_0213': + # print('done') + start += length + + # print('C',time.time(),'-'*50,end='\r',flush=True) + return np.array(subwords_batches) + + +def load_bert(config: Config) -> Tuple[AutoModel, AutoTokenizer]: + """ + Loads bert and bert tokenizer as pytorch modules. + + Bert model is loaded to the device specified in config.device + """ + print(f"Loading {config.bert_model}...") + # print(config.device) + # input('press enter') + + base_bert_name = config.bert_model.split("/")[-1] + tokenizer_kwargs = config.tokenizer_kwargs.get(base_bert_name, {}) + if tokenizer_kwargs: + print(f"Using tokenizer kwargs: {tokenizer_kwargs}") + tokenizer = AutoTokenizer.from_pretrained(config.bert_model, **tokenizer_kwargs) + + model = AutoModel.from_pretrained(config.bert_model).to(config.device) + + print("Bert successfully loaded.") + + return model, tokenizer diff --git a/GSoC25_H/src/coref/cluster_checker.py b/GSoC25_H/src/coref/cluster_checker.py new file mode 100644 index 0000000..b269097 --- /dev/null +++ b/GSoC25_H/src/coref/cluster_checker.py @@ -0,0 +1,77 @@ +""" Describes ClusterChecker, a class used to retrieve LEA scores. +See aclweb.org/anthology/P16-1060.pdf. """ + +from typing import Hashable, List, Tuple + +from coref.const import EPSILON + + +class ClusterChecker: + """Collects information on gold and predicted clusters across documents. + Can be used to retrieve weighted LEA-score for them. + """ + + def __init__(self): + self._p = 0.0 + self._r = 0.0 + self._p_weight = 0.0 + self._r_weight = 0.0 + + def add_predictions( + self, gold_clusters: List[List[Hashable]], pred_clusters: List[List[Hashable]] + ): + """ + Calculates LEA for the document's clusters and stores them to later + output weighted LEA across documents. + + Returns: + LEA score for the document as a tuple of (f1, precision, recall) + """ + recall, r_weight = ClusterChecker._lea(gold_clusters, pred_clusters) + precision, p_weight = ClusterChecker._lea(pred_clusters, gold_clusters) + + self._r += recall + self._r_weight += r_weight + self._p += precision + self._p_weight += p_weight + + doc_precision = precision / (p_weight + EPSILON) + doc_recall = recall / (r_weight + EPSILON) + doc_f1 = ( + (doc_precision * doc_recall) / (doc_precision + doc_recall + EPSILON) * 2 + ) + return doc_f1, doc_precision, doc_recall + + @property + def total_lea(self): + """Returns weighted LEA for all the documents as + (f1, precision, recall)""" + precision = self._p / (self._p_weight + EPSILON) + recall = self._r / (self._r_weight + EPSILON) + f1 = (precision * recall) / (precision + recall + EPSILON) * 2 + return f1, precision, recall + + @staticmethod + def _lea( + key: List[List[Hashable]], response: List[List[Hashable]] + ) -> Tuple[float, float]: + """See aclweb.org/anthology/P16-1060.pdf.""" + response_clusters = [set(cluster) for cluster in response] + response_map = { + mention: cluster for cluster in response_clusters for mention in cluster + } + importances = [] + resolutions = [] + for entity in key: + size = len(entity) + if size == 1: # entities of size 1 are not annotated + continue + importances.append(size) + correct_links = 0 + for i in range(size): + for j in range(i + 1, size): + correct_links += int(entity[i] in response_map.get(entity[j], {})) + resolutions.append(correct_links / (size * (size - 1) / 2)) + res = sum(imp * res for imp, res in zip(importances, resolutions)) + weight = sum(importances) + return res, weight diff --git a/GSoC25_H/src/coref/config.py b/GSoC25_H/src/coref/config.py new file mode 100644 index 0000000..9803fcc --- /dev/null +++ b/GSoC25_H/src/coref/config.py @@ -0,0 +1,45 @@ +""" Describes Config, a simple namespace for config values. + +For description of all config values, refer to config.toml. +""" + +from dataclasses import dataclass +from typing import Dict + + +@dataclass +class Config: # pylint: disable=too-many-instance-attributes, too-few-public-methods + """Contains values needed to set up the coreference model.""" + + section: str + + data_dir: str + + train_data: str + dev_data: str + test_data: str + + device: str + + bert_model: str + bert_window_size: int + + embedding_size: int + sp_embedding_size: int + a_scoring_batch_size: int + hidden_size: int + n_hidden_layers: int + + max_span_len: int + + rough_k: int + + bert_finetune: bool + dropout_rate: float + learning_rate: float + bert_learning_rate: float + train_epochs: int + bce_loss_weight: float + + tokenizer_kwargs: Dict[str, dict] + conll_log_dir: str diff --git a/GSoC25_H/src/coref/conll.py b/GSoC25_H/src/coref/conll.py new file mode 100644 index 0000000..0d661e7 --- /dev/null +++ b/GSoC25_H/src/coref/conll.py @@ -0,0 +1,86 @@ +""" Contains functions to produce conll-formatted output files with +predicted spans and their clustering """ + +from collections import defaultdict +from contextlib import contextmanager +import os +from typing import List, TextIO + +from coref.config import Config +from coref.const import Doc, Span + + +# pylint: disable=too-many-locals +def write_conll(doc: Doc, clusters: List[List[Span]], f_obj: TextIO): + """Writes span/cluster information to f_obj, which is assumed to be a file + object open for writing""" + placeholder = " -" * 7 + doc_id = doc["document_id"] + words = doc["cased_words"] + part_id = doc["part_id"] + sents = doc["sent_id"] + + max_word_len = max(len(w) for w in words) + + starts = defaultdict(lambda: []) + ends = defaultdict(lambda: []) + single_word = defaultdict(lambda: []) + + predicted_spans = set() + + for cluster_id, cluster in enumerate(clusters): + for start, end in cluster: + if (start, end) in predicted_spans: + continue + predicted_spans.add((start, end)) + if end - start == 1: + single_word[start].append(cluster_id) + else: + starts[start].append(cluster_id) + ends[end - 1].append(cluster_id) + + f_obj.write(f"#begin document ({doc_id}); part {part_id:0>3d}\n") + + word_number = 0 + for word_id, word in enumerate(words): + + cluster_info_lst = [] + for cluster_marker in starts[word_id]: + cluster_info_lst.append(f"({cluster_marker}") + for cluster_marker in single_word[word_id]: + cluster_info_lst.append(f"({cluster_marker})") + for cluster_marker in ends[word_id]: + cluster_info_lst.append(f"{cluster_marker})") + cluster_info = "|".join(cluster_info_lst) if cluster_info_lst else "-" + + if word_id == 0 or sents[word_id] != sents[word_id - 1]: + f_obj.write("\n") + word_number = 0 + + f_obj.write( + f"{doc_id} {part_id} {word_number:>2}" + f" {word:>{max_word_len}}{placeholder} {cluster_info}\n" + ) + + word_number += 1 + + f_obj.write("#end document\n\n") + + +@contextmanager +def open_(config: Config, epochs: int, data_split: str): + """Opens conll log files for writing in a safe way.""" + base_filename = f"{config.section}_{data_split}_e{epochs}" + conll_dir = config.conll_log_dir + kwargs = {"mode": "w", "encoding": "utf8"} + + os.makedirs(conll_dir, exist_ok=True) + + with open( + os.path.join(conll_dir, f"{base_filename}.gold.conll"), **kwargs # type: ignore + ) as gold_f: + with open( + os.path.join(conll_dir, f"{base_filename}.pred.conll"), # type: ignore + **kwargs, + ) as pred_f: + yield (gold_f, pred_f) diff --git a/GSoC25_H/src/coref/const.py b/GSoC25_H/src/coref/const.py new file mode 100644 index 0000000..98eaefa --- /dev/null +++ b/GSoC25_H/src/coref/const.py @@ -0,0 +1,25 @@ +""" Contains type aliases for coref module """ + +from dataclasses import dataclass +from typing import Any, Dict, List, Tuple + +import torch + + +EPSILON = 1e-7 +LARGE_VALUE = 1000 # used instead of inf due to bug #16762 in pytorch + +Doc = Dict[str, Any] +Span = Tuple[int, int] + + +@dataclass +class CorefResult: + coref_scores: torch.Tensor = None # [n_words, k + 1] + coref_y: torch.Tensor = None # [n_words, k + 1] + + word_clusters: List[List[int]] = None + span_clusters: List[List[Span]] = None + + span_scores: torch.Tensor = None # [n_heads, n_words, 2] + span_y: Tuple[torch.Tensor, torch.Tensor] = None # [n_heads] x2 diff --git a/GSoC25_H/src/coref/coref_model.py b/GSoC25_H/src/coref/coref_model.py new file mode 100644 index 0000000..33c1130 --- /dev/null +++ b/GSoC25_H/src/coref/coref_model.py @@ -0,0 +1,625 @@ +""" see __init__.py """ + +from datetime import datetime +import os +import pickle +import random +import re +from typing import Any, Dict, List, Optional, Set, Tuple + +import numpy as np # type: ignore +import jsonlines # type: ignore +import toml +import torch, time +from tqdm import tqdm # type: ignore +import transformers # type: ignore + +from coref import bert, conll, utils +from coref.anaphoricity_scorer import AnaphoricityScorer +from coref.cluster_checker import ClusterChecker +from coref.config import Config +from coref.const import CorefResult, Doc +from coref.loss import CorefLoss +from coref.pairwise_encoder import PairwiseEncoder +from coref.rough_scorer import RoughScorer +from coref.span_predictor import SpanPredictor +from coref.tokenizer_customization import TOKENIZER_FILTERS, TOKENIZER_MAPS +from coref.utils import GraphNode +from coref.word_encoder import WordEncoder + + +class CorefModel: # pylint: disable=too-many-instance-attributes + """Combines all coref modules together to find coreferent spans. + + Attributes: + config (coref.config.Config): the model's configuration, + see config.toml for the details + epochs_trained (int): number of epochs the model has been trained for + trainable (Dict[str, torch.nn.Module]): trainable submodules with their + names used as keys + training (bool): used to toggle train/eval modes + + Submodules (in the order of their usage in the pipeline): + tokenizer (transformers.AutoTokenizer) + bert (transformers.AutoModel) + we (WordEncoder) + rough_scorer (RoughScorer) + pw (PairwiseEncoder) + a_scorer (AnaphoricityScorer) + sp (SpanPredictor) + """ + + def __init__(self, config_path: str, section: str, epochs_trained: int = 0): + """ + A newly created model is set to evaluation mode. + + Args: + config_path (str): the path to the toml file with the configuration + section (str): the selected section of the config file + epochs_trained (int): the number of epochs finished + (useful for warm start) + """ + self.config = CorefModel._load_config(config_path, section) + self.config.device = ( + torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + ) + self.epochs_trained = epochs_trained + self._docs: Dict[str, List[Doc]] = {} + self._build_model() + # self._build_optimizers() + self._set_training(False) + self._coref_criterion = CorefLoss(self.config.bce_loss_weight) + self._span_criterion = torch.nn.CrossEntropyLoss(reduction="sum") + + @property + def training(self) -> bool: + """Represents whether the model is in the training mode""" + return self._training + + @training.setter + def training(self, new_value: bool): + if self._training is new_value: + return + self._set_training(new_value) + + # ========================================================== Public methods + + @torch.no_grad() + def evaluate( + self, data_split: str = "dev", word_level_conll: bool = False + ) -> Tuple[float, Tuple[float, float, float]]: + """Evaluates the modes on the data split provided. + + Args: + data_split (str): one of 'dev'/'test'/'train' + word_level_conll (bool): if True, outputs conll files on word-level + + Returns: + mean loss + span-level LEA: f1, precision, recal + """ + self.training = False + w_checker = ClusterChecker() + s_checker = ClusterChecker() + docs = self._get_docs(self.config.__dict__[f"{data_split}_data"]) + # print(type(docs)) + # print(self.config.__dict__[f"{data_split}_data"]) + # input('wait') + running_loss = 0.0 + s_correct = 0 + s_total = 0 + + with conll.open_(self.config, self.epochs_trained, data_split) as ( + gold_f, + pred_f, + ): + pbar = tqdm(docs, unit="docs", ncols=0) + for doc in pbar: + res = self.run(doc) + + running_loss += self._coref_criterion( + res.coref_scores, res.coref_y + ).item() + + if res.span_y: + pred_starts = res.span_scores[:, :, 0].argmax(dim=1) + pred_ends = res.span_scores[:, :, 1].argmax(dim=1) + s_correct += ( + ((res.span_y[0] == pred_starts) * (res.span_y[1] == pred_ends)) + .sum() + .item() + ) + s_total += len(pred_starts) + + if word_level_conll: + conll.write_conll( + doc, + [ + [(i, i + 1) for i in cluster] + for cluster in doc["word_clusters"] + ], + gold_f, + ) + conll.write_conll( + doc, + [ + [(i, i + 1) for i in cluster] + for cluster in res.word_clusters + ], + pred_f, + ) + else: + conll.write_conll(doc, doc["span_clusters"], gold_f) + conll.write_conll(doc, res.span_clusters, pred_f) + + w_checker.add_predictions(doc["word_clusters"], res.word_clusters) + w_lea = w_checker.total_lea + + s_checker.add_predictions(doc["span_clusters"], res.span_clusters) + s_lea = s_checker.total_lea + + del res + + pbar.set_description( + f"{data_split}:" + f" | WL: " + f" loss: {running_loss / (pbar.n + 1):<.5f}," + f" f1: {w_lea[0]:.5f}," + f" p: {w_lea[1]:.5f}," + f" r: {w_lea[2]:<.5f}" + f" | SL: " + f" sa: {s_correct / s_total:<.5f}," + f" f1: {s_lea[0]:.5f}," + f" p: {s_lea[1]:.5f}," + f" r: {s_lea[2]:<.5f}" + ) + print() + + return (running_loss / len(docs), *s_checker.total_lea) + + def load_weights( + self, + path: Optional[str] = None, + ignore: Optional[Set[str]] = None, + map_location: Optional[str] = None, + noexception: bool = False, + ) -> None: + """ + Loads pretrained weights of modules saved in a file located at path. + If path is None, the last saved model with current configuration + in data_dir is loaded. + Assumes files are named like {configuration}_(e{epoch}_{time})*.pt. + """ + if path is None: + pattern = rf"{self.config.section}_\(e(\d+)_[^()]*\).*\.pt" + files = [] + for f in os.listdir(self.config.data_dir): + match_obj = re.match(pattern, f) + if match_obj: + files.append((int(match_obj.group(1)), f)) + if not files: + if noexception: + print("No weights have been loaded", flush=True) + return + raise OSError(f"No weights found in {self.config.data_dir}!") + _, path = sorted(files)[-1] + # print(sorted(files)) + # input('wait') + path = os.path.join(self.config.data_dir, path) + + if map_location is None: + map_location = self.config.device + print(f"Loading from {path}...") + state_dicts = torch.load(path, map_location=map_location) + self.epochs_trained = state_dicts.pop("epochs_trained", 0) + for key, state_dict in state_dicts.items(): + if not ignore or key not in ignore: + if key.endswith("_optimizer"): + self.optimizers[key].load_state_dict(state_dict) + elif key.endswith("_scheduler"): + self.schedulers[key].load_state_dict(state_dict) + else: + self.trainable[key].load_state_dict(state_dict) + print(f"Loaded {key}") + + def run( + self, # pylint: disable=too-many-locals + doc: Doc, + ) -> CorefResult: + """ + This is a massive method, but it made sense to me to not split it into + several ones to let one see the data flow. + + Args: + doc (Doc): a dictionary with the document data. + + Returns: + CorefResult (see const.py) + """ + # Encode words with bert + # words [n_words, span_emb] + # cluster_ids [n_words] + words, cluster_ids = self.we(doc, self._bertify(doc)) + + # Obtain bilinear scores and leave only top-k antecedents for each word + # top_rough_scores [n_words, n_ants] + # top_indices [n_words, n_ants] + top_rough_scores, top_indices = self.rough_scorer(words) + + # Get pairwise features [n_words, n_ants, n_pw_features] + pw = self.pw(top_indices, doc) + + batch_size = self.config.a_scoring_batch_size + a_scores_lst: List[torch.Tensor] = [] + + for i in range(0, len(words), batch_size): + pw_batch = pw[i : i + batch_size] + words_batch = words[i : i + batch_size] + top_indices_batch = top_indices[i : i + batch_size] + top_rough_scores_batch = top_rough_scores[i : i + batch_size] + + # a_scores_batch [batch_size, n_ants] + a_scores_batch = self.a_scorer( + all_mentions=words, + mentions_batch=words_batch, + pw_batch=pw_batch, + top_indices_batch=top_indices_batch, + top_rough_scores_batch=top_rough_scores_batch, + ) + a_scores_lst.append(a_scores_batch) + + res = CorefResult() + + # coref_scores [n_spans, n_ants] + res.coref_scores = torch.cat(a_scores_lst, dim=0) + + res.coref_y = self._get_ground_truth( + cluster_ids, top_indices, (top_rough_scores > float("-inf")) + ) + res.word_clusters = self._clusterize(doc, res.coref_scores, top_indices) + res.span_scores, res.span_y = self.sp.get_training_data(doc, words) + + if not self.training: + res.span_clusters = self.sp.predict(doc, words, res.word_clusters) + + return res + + def save_weights(self): + """Saves trainable models as state dicts.""" + to_save: List[Tuple[str, Any]] = [ + (key, value) + for key, value in self.trainable.items() + if self.config.bert_finetune or key != "bert" + ] + to_save.extend(self.optimizers.items()) + to_save.extend(self.schedulers.items()) + + time = datetime.strftime(datetime.now(), "%Y.%m.%d_%H.%M") + path = os.path.join( + self.config.data_dir, + f"{self.config.section}" f"_(e{self.epochs_trained}_{time}).pt", + ) + savedict = {name: module.state_dict() for name, module in to_save} + savedict["epochs_trained"] = self.epochs_trained # type: ignore + torch.save(savedict, path) + + def train(self): + """ + Trains all the trainable blocks in the model using the config provided. + """ + docs = list(self._get_docs(self.config.train_data)) + docs_ids = list(range(len(docs))) + avg_spans = sum(len(doc["head2span"]) for doc in docs) / len(docs) + + for epoch in range(self.epochs_trained, self.config.train_epochs): + self.training = True + running_c_loss = 0.0 + running_s_loss = 0.0 + random.shuffle(docs_ids) + pbar = tqdm(docs_ids, unit="docs", ncols=0) + for di, doc_id in enumerate(pbar): + # if di < 4118: + # continue + doc = docs[doc_id] + + for optim in self.optimizers.values(): + optim.zero_grad() + # time.sleep(1) + # print('O',time.time(),end=' ') + # time.sleep(20) + # print(doc['document_id']) + # input('wait') + res = self.run(doc) + # print('C',time.time(),'-'*50,end='\n') + + c_loss = self._coref_criterion(res.coref_scores, res.coref_y) + if res.span_y: + s_loss = ( + ( + self._span_criterion( + res.span_scores[:, :, 0], res.span_y[0] + ) + + self._span_criterion( + res.span_scores[:, :, 1], res.span_y[1] + ) + ) + / avg_spans + / 2 + ) + else: + s_loss = torch.zeros_like(c_loss) + + del res + + (c_loss + s_loss).backward() + running_c_loss += c_loss.item() + running_s_loss += s_loss.item() + + del c_loss, s_loss + + for optim in self.optimizers.values(): + optim.step() + for scheduler in self.schedulers.values(): + scheduler.step() + + pbar.set_description( + f"Epoch {epoch + 1}:" + f" {doc['document_id']:26}" + f" c_loss: {running_c_loss / (pbar.n + 1):<.5f}" + f" s_loss: {running_s_loss / (pbar.n + 1):<.5f}" + ) + + self.epochs_trained += 1 + self.save_weights() + self.evaluate() + + # ========================================================= Private methods + + def _bertify(self, doc: Doc) -> torch.Tensor: + # print('doc', doc) + # input('wait') + subwords_batches = bert.get_subwords_batches(doc, self.config, self.tokenizer) + + special_tokens = np.array( + [ + self.tokenizer.cls_token_id, + self.tokenizer.sep_token_id, + self.tokenizer.pad_token_id, + ] + ) + subword_mask = ~(np.isin(subwords_batches, special_tokens)) + + subwords_batches_tensor = torch.tensor( + subwords_batches, device=self.config.device, dtype=torch.long + ) + subword_mask_tensor = torch.tensor(subword_mask, device=self.config.device) + + # Obtain bert output for selected batches only + attention_mask = subwords_batches != self.tokenizer.pad_token_id + # print('here',len(doc['subwords'])) + # print('one',subwords_batches_tensor.shape) + # input('wait') + # print('two',self.config.device) + + # new version of huggingface returns a dictionary but the old version returns a tuple + # the code was writen for the old version + # hence needs to updated + output = self.bert( + subwords_batches_tensor, + attention_mask=torch.tensor(attention_mask, device=self.config.device), + ) + if type(output) == tuple: + out = output[0] + del output + else: + out = output["last_hidden_state"] + del output + + # [n_subwords, bert_emb] + # print(out[subword_mask_tensor].shape) + # print('subword_mask_tensor',subword_mask_tensor.shape) + # print('out',out.shape) + # input('wait') + return out[subword_mask_tensor] + + def _build_model(self): + self.bert, self.tokenizer = bert.load_bert(self.config) + self.pw = PairwiseEncoder(self.config).to(self.config.device) + + bert_emb = self.bert.config.hidden_size + pair_emb = bert_emb * 3 + self.pw.shape + + # pylint: disable=line-too-long + self.a_scorer = AnaphoricityScorer(pair_emb, self.config).to(self.config.device) + self.we = WordEncoder(bert_emb, self.config).to(self.config.device) + self.rough_scorer = RoughScorer(bert_emb, self.config).to(self.config.device) + self.sp = SpanPredictor(bert_emb, self.config.sp_embedding_size).to( + self.config.device + ) + + self.trainable: Dict[str, torch.nn.Module] = { + "bert": self.bert, + "we": self.we, + "rough_scorer": self.rough_scorer, + "pw": self.pw, + "a_scorer": self.a_scorer, + "sp": self.sp, + } + + def _build_optimizers(self): + n_docs = len(self._get_docs(self.config.train_data)) + self.optimizers: Dict[str, torch.optim.Optimizer] = {} + self.schedulers: Dict[str, torch.optim.lr_scheduler.LambdaLR] = {} + + for param in self.bert.parameters(): + param.requires_grad = self.config.bert_finetune + + if self.config.bert_finetune: + # my changes + pass + self.optimizers["bert_optimizer"] = torch.optim.Adam( + self.bert.parameters(), lr=self.config.bert_learning_rate + ) + self.schedulers["bert_scheduler"] = ( + transformers.get_linear_schedule_with_warmup( + self.optimizers["bert_optimizer"], + n_docs, + n_docs * self.config.train_epochs, + ) + ) + + # Must ensure the same ordering of parameters between launches + # my changes + modules = sorted( + (key, value) for key, value in self.trainable.items() if key != "bert" + ) + # modules = sorted((key, value) for key, value in self.trainable.items()) + + params = [] + for _, module in modules: + for param in module.parameters(): + param.requires_grad = True + params.append(param) + + # my changes + self.optimizers["general_optimizer"] = torch.optim.Adam( + params, lr=self.config.learning_rate + ) + self.schedulers["general_scheduler"] = ( + transformers.get_linear_schedule_with_warmup( + self.optimizers["general_optimizer"], + 0, + n_docs * self.config.train_epochs, + ) + ) + + def _clusterize(self, doc: Doc, scores: torch.Tensor, top_indices: torch.Tensor): + antecedents = scores.argmax(dim=1) - 1 + not_dummy = antecedents >= 0 + coref_span_heads = torch.arange(0, len(scores))[not_dummy.cpu()] + antecedents = top_indices[coref_span_heads, antecedents[not_dummy]] + + nodes = [GraphNode(i) for i in range(len(doc["cased_words"]))] + for i, j in zip(coref_span_heads.tolist(), antecedents.tolist()): + nodes[i].link(nodes[j]) + assert nodes[i] is not nodes[j] + + clusters = [] + for node in nodes: + if len(node.links) > 0 and not node.visited: + cluster = [] + stack = [node] + while stack: + current_node = stack.pop() + current_node.visited = True + cluster.append(current_node.id) + stack.extend( + link for link in current_node.links if not link.visited + ) + assert len(cluster) > 1 + clusters.append(sorted(cluster)) + return sorted(clusters) + + def _get_docs(self, path: str) -> List[Doc]: + # print('keys',self._docs.keys()) + # ------- new ------- + # print(path) + # self._docs[path] = self._tokenize_docs('data/english_test_head.jsonlines') + # input('wait') + # self._docs[path] = self._tokenize_docs(path) + # ------------------- + if path not in self._docs: + print("Picking up the pickle file") + basename = os.path.basename(path) + model_name = self.config.bert_model.replace("/", "_") + cache_filename = f"{model_name}_{basename}.pickle" + if os.path.exists( + cache_filename + ): # and 'train' in cache_filename: # new condition added + print("Found pickle", cache_filename) + with open(cache_filename, mode="rb") as cache_f: + self._docs[path] = pickle.load(cache_f) + else: + print("Pickle file not present", cache_filename) + self._docs[path] = self._tokenize_docs(path) + with open(cache_filename, mode="wb") as cache_f: + pickle.dump(self._docs[path], cache_f) + return self._docs[path] + + @staticmethod + def _get_ground_truth( + cluster_ids: torch.Tensor, + top_indices: torch.Tensor, + valid_pair_map: torch.Tensor, + ) -> torch.Tensor: + """ + Args: + cluster_ids: tensor of shape [n_words], containing cluster indices + for each word. Non-gold words have cluster id of zero. + top_indices: tensor of shape [n_words, n_ants], + indices of antecedents of each word + valid_pair_map: boolean tensor of shape [n_words, n_ants], + whether for pair at [i, j] (i-th word and j-th word) + j < i is True + + Returns: + tensor of shape [n_words, n_ants + 1] (dummy added), + containing 1 at position [i, j] if i-th and j-th words corefer. + """ + y = cluster_ids[top_indices] * valid_pair_map # [n_words, n_ants] + y[y == 0] = -1 # -1 for non-gold words + y = utils.add_dummy(y) # [n_words, n_cands + 1] + y = y == cluster_ids.unsqueeze(1) # True if coreferent + # For all rows with no gold antecedents setting dummy to True + y[y.sum(dim=1) == 0, 0] = True + return y.to(torch.float) + + @staticmethod + def _load_config(config_path: str, section: str) -> Config: + config = toml.load(config_path) + # import json + # print('config\n',json.dumps(config, indent=4)) + default_section = config["DEFAULT"] + current_section = config[section] + unknown_keys = set(current_section.keys()) - set(default_section.keys()) + if unknown_keys: + raise ValueError(f"Unexpected config keys: {unknown_keys}") + return Config(section, **{**default_section, **current_section}) + + def _set_training(self, value: bool): + self._training = value + for module in self.trainable.values(): + module.train(self._training) + + def _tokenize_docs(self, path: str) -> List[Doc]: + print(f"Tokenizing documents at {path}...", flush=True) + out: List[Doc] = [] + filter_func = TOKENIZER_FILTERS.get(self.config.bert_model, lambda _: True) + token_map = TOKENIZER_MAPS.get(self.config.bert_model, {}) + with jsonlines.open(path, mode="r") as data_f: + for doc in data_f: + doc["span_clusters"] = [ + [tuple(mention) for mention in cluster] + for cluster in doc["span_clusters"] + ] + word2subword = [] + subwords = [] + word_id = [] + for i, word in enumerate(doc["cased_words"]): + tokenized_word = ( + token_map[word] + if word in token_map + else self.tokenizer.tokenize(word) + ) + tokenized_word = list(filter(filter_func, tokenized_word)) + word2subword.append( + (len(subwords), len(subwords) + len(tokenized_word)) + ) + subwords.extend(tokenized_word) + word_id.extend([i] * len(tokenized_word)) + doc["word2subword"] = word2subword + doc["subwords"] = subwords + doc["word_id"] = word_id + out.append(doc) + print("Tokenization OK", flush=True) + return out diff --git a/GSoC25_H/src/coref/loss.py b/GSoC25_H/src/coref/loss.py new file mode 100644 index 0000000..b4b3489 --- /dev/null +++ b/GSoC25_H/src/coref/loss.py @@ -0,0 +1,35 @@ +""" Describes the loss function used to train the model, which is a weighted +sum of NLML and BCE losses. """ + +import torch + + +class CorefLoss(torch.nn.Module): + """See the rationale for using NLML in Lee et al. 2017 + https://www.aclweb.org/anthology/D17-1018/ + The added weighted summand of BCE helps the model learn even after + converging on the NLML task.""" + + def __init__(self, bce_weight: float): + assert 0 <= bce_weight <= 1 + super().__init__() + self._bce_module = torch.nn.BCEWithLogitsLoss() + self._bce_weight = bce_weight + + def forward( + self, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + input_: torch.Tensor, + target: torch.Tensor, + ) -> torch.Tensor: + """Returns a weighted sum of two losses as a torch.Tensor""" + return self._nlml(input_, target) + self._bce(input_, target) * self._bce_weight + + def _bce(self, input_: torch.Tensor, target: torch.Tensor) -> torch.Tensor: + """For numerical stability, clamps the input before passing it to BCE.""" + return self._bce_module(torch.clamp(input_, min=-50, max=50), target) + + @staticmethod + def _nlml(input_: torch.Tensor, target: torch.Tensor) -> torch.Tensor: + gold = torch.logsumexp(input_ + torch.log(target), dim=1) + input_ = torch.logsumexp(input_, dim=1) + return (input_ - gold).mean() diff --git a/GSoC25_H/src/coref/mcoref.py b/GSoC25_H/src/coref/mcoref.py new file mode 100644 index 0000000..8328d69 --- /dev/null +++ b/GSoC25_H/src/coref/mcoref.py @@ -0,0 +1,308 @@ +# CUDA_VISIBLE_DEVICES=1 python hi_predict.py --weight data/xlmr2.pt --output_file out_xlmr_2.jsonlines --experiment xlmr +import argparse + +import jsonlines +import torch, time +from tqdm import tqdm + +from coref import CorefModel +from coref.tokenizer_customization import * + +import stanza +import re + +# stanza_path = importlib.util.find_spec("stanza").submodule_search_locations[0] +# https://stackoverflow.com/questions/269795/how-do-i-find-the-location-of-python-module-sources +# https://stackoverflow.com/questions/35288021/what-is-the-equivalent-of-imp-find-module-in-importlib +# stanza_version = stanza.__version__ + +# if not os.path.exists(stanza_path + "/" + stanza_version + "/"): +# os.makedirs(stanza_path + "/" + stanza_version + "/") + + +def build_doc(doc: dict, model: CorefModel) -> dict: + filter_func = TOKENIZER_FILTERS.get(model.config.bert_model, lambda _: True) + token_map = TOKENIZER_MAPS.get(model.config.bert_model, {}) + + word2subword = [] + subwords = [] + word_id = [] + for i, word in enumerate(doc["cased_words"]): + tokenized_word = ( + token_map[word] if word in token_map else model.tokenizer.tokenize(word) + ) + tokenized_word = list(filter(filter_func, tokenized_word)) + word2subword.append((len(subwords), len(subwords) + len(tokenized_word))) + subwords.extend(tokenized_word) + word_id.extend([i] * len(tokenized_word)) + doc["word2subword"] = word2subword + doc["subwords"] = subwords + doc["word_id"] = word_id + + doc["head2span"] = [] + if "speaker" not in doc: + doc["speaker"] = ["_" for _ in doc["cased_words"]] + doc["word_clusters"] = [] + doc["span_clusters"] = [] + + return doc + + +def resolve_pronouns_hindi(text_list, model, hinlp): + # json_list = [] + # # for sent in text_list: + # # json_object = {"document_id": "fu", "cased_words": [], "sent_id":[], "pos":[]} + # # doc = hinlp(sent) + # # snum = -1 + # # for s in doc.sentences: + # # snum+=1 + # # for w in s.words: + # # json_object['cased_words'].append(w.text) + # # json_object['pos'].append(w.upos) + # # json_object['sent_id'].append(snum) + # # json_list.append(json_object) + # text = '. '.join(text_list) + # doc = hinlp(text) + # snum = -1 + # json_object = {"document_id": "fu", "cased_words": [], "sent_id":[], "pos":[]} + # for s in doc.sentences: + # snum+=1 + # for w in s.words: + # json_object['cased_words'].append(w.text) + # json_object['pos'].append(w.upos) + # json_object['sent_id'].append(snum) + # json_list.append(json_object) + + # docs = [build_doc(json_object, model) for json_object in json_list] + + # with torch.no_grad(): + # for doc in tqdm(docs, unit="docs", disable=True): + # a = time.time() + # result = model.run(doc) + # doc["span_clusters"] = result.span_clusters + # doc["word_clusters"] = result.word_clusters + + # for key in ("word2subword", "subwords", "word_id", "head2span","speaker"): + # del doc[key] + + # doc['cased_words2'] = [str(i)+'_'+x for i,x in enumerate(doc['cased_words'])] + # doc['pos2'] = [str(i)+'_'+x for i,x in enumerate(doc['pos'])] + + docs = resolve_coreferences(text_list, model, hinlp) + # print(docs) + + text_list = [] + for doc in docs: + replacements_needed = [] + for chain in doc["span_clusters"]: + # print('chain', chain) + for i in range(len(chain) - 1, 0, -1): + replacee = chain[i] # the one that should be replaced i.e. replaceee + if "PRON" in doc["pos"][replacee[0] : replacee[1]]: + candidate_ants = [] + for j in range(i - 1, -1, -1): + replacer = chain[j] # replacer + if "PROPN" in doc["pos"][replacer[0] : replacer[1]]: + # replacements_needed.append([replacee, replacer]) + candidate_ants.append(replacer) + if not candidate_ants: + for j in range(i - 1, -1, -1): + replacer = chain[j] + if "NOUN" in doc["pos"][replacer[0] : replacer[1]]: + replacements_needed.append([replacee, replacer]) + break + else: + span_len = [c[1] - c[0] for c in candidate_ants] + replacer = candidate_ants[span_len.index(min(span_len))] + replacements_needed.append([replacee, replacer]) + + else: + # print('not pronoun', doc['pos'][replacee[0]:replacee[1]], replacee) + pass + # print(doc) + # print(replacements_needed) + # doc['cased_words'] = [ '_'.join(x.split('_')[1:]) for x in doc['cased_words']] + # if len(replacements_needed) > 0: + # print(re.sub(r'\s+',' ',' '.join(doc['cased_words'])).strip()) + for rn in replacements_needed[::-1]: + replacee, replacer = rn[0], rn[1] + replacee_string = re.sub( + r"\s+", " ", " ".join(doc["cased_words"][replacee[0] : replacee[1]]) + ).strip() + replacer_string = re.sub( + r"\s+", " ", " ".join(doc["cased_words"][replacer[0] : replacer[1]]) + ).strip() + replacer_string = add_karak(remove_karak(replacer_string), replacee_string) + replacer_string = " ".join( + [x for x in replacer_string.split() if x != "एक"] + ) + if replacee[0] >= replacer[1]: # there should be no overlap + doc["cased_words"] = ( + doc["cased_words"][: replacee[0]] + + [replacer_string] + + [""] * (replacee[1] - replacee[0] - 1) + + doc["cased_words"][replacee[1] :] + ) + text_list.append(re.sub(r"\s+", " ", " ".join(doc["cased_words"])).strip()) + # print(text_list[-1]) + # input('wait') + # if len(replacements_needed) > 0: + # print(re.sub(r'\s+',' ',' '.join(doc['cased_words'])).strip()) + # print(doc) + # input('wait') + + return docs, text_list + + +def resolve_coreferences(text_list, model, hinlp): + json_list = [] + # for sent in text_list: + # json_object = {"document_id": "fu", "cased_words": [], "sent_id":[], "pos":[]} + # doc = hinlp(sent) + # snum = -1 + # for s in doc.sentences: + # snum+=1 + # for w in s.words: + # json_object['cased_words'].append(w.text) + # json_object['pos'].append(w.upos) + # json_object['sent_id'].append(snum) + # json_list.append(json_object) + text = ".".join(text_list) + doc = hinlp(text) + snum = -1 + json_object = {"document_id": "mu", "cased_words": [], "sent_id": [], "pos": []} + for s in doc.sentences: + snum += 1 + for w in s.words: + json_object["cased_words"].append(w.text) + json_object["pos"].append(w.upos) + json_object["sent_id"].append(snum) + json_list.append(json_object) + + docs = [build_doc(json_object, model) for json_object in json_list] + + with torch.no_grad(): + for doc in tqdm(docs, unit="docs", disable=True): + a = time.time() + result = model.run(doc) + doc["span_clusters"] = result.span_clusters + doc["word_clusters"] = result.word_clusters + + for key in ("word2subword", "subwords", "word_id", "head2span", "speaker"): + del doc[key] + + doc["cased_words2"] = [ + str(i) + "_" + x for i, x in enumerate(doc["cased_words"]) + ] + doc["pos2"] = [str(i) + "_" + x for i, x in enumerate(doc["pos"])] + return docs + + +def remove_karak(text): + text = text.strip().split() + for k in ["ने", "को", "से", "का", "की", "के", "में", "मे", "पर", "केलिए"]: + if text[-1] == k: + text[-1] = "" + if text[-1] == "लिए" and len(text) > 1 and text[-2] == "के": + text[-1], text[-2] = "", "" + if text[0] == "हे": + text[0] = "" + text = (" ".join(text)).strip() + return text + + +def add_karak(text1, replacee_string): + for k in ["ने", "को", "से", "का", "की", "के", "में", "मे", "पर", "केलिए"]: + if ( + re.search(k + r"$", replacee_string.strip()) + and not (re.search(r"^(आ|अ)प", replacee_string.strip())) + and replacee_string != "इसे" + ): + return text1 + " " + k + if replacee_string == "उन्हें" or replacee_string == "उन्हे" or replacee_string == "इसे": + return text1 + " को" + if re.search( + r"^आप", replacee_string + ): # sentences written in second person are generally not resolved correctly + return replacee_string + return text1 + + +if __name__ == "__main__": + # span clusters means these word-spans are clustered according to their predicted coreference chains + # word_clusters means those head_words which belong to one chain, similar to span_clusters but at word level + # remember both are 0 indexed + # and in span clusters [a,b] means a is included whereas b is not included + + # check if gpu is available + device = None + if torch.cuda.is_available(): + use_gpu = True + device = torch.device("cuda") + else: + use_gpu = False + device = torch.device("cpu") + + try: + hinlp = stanza.Pipeline( + "hi", + # dir=stanza_path + "/" + stanza_version + "/", + # download_method=2, + use_gpu=use_gpu, + ) + except: + stanza.download( + "hi", dir=stanza_path + "/" + stanza_version + "/" + ) # model_dir or dir depending on the stanza version + hinlp = stanza.Pipeline( + "hi", + dir=stanza_path + "/" + stanza_version + "/", + download_method=2, + use_gpu=use_gpu, + ) + print("Stanza loaded") + + model = CorefModel("coref/config.toml", "xlmr") + model.config.device = device + model.load_weights( + path="model/xlmr_multi_plus_hi2.pt", + map_location=device, + ignore={ + "bert_optimizer", + "general_optimizer", + "bert_scheduler", + "general_scheduler", + }, + ) + model.training = False + + raw_sentences = [ + "हमने कोहरे में एक आदमी को भागते देखा। उसने काले रंग की शाल पहनी थी। उसका कद लम्बा था। ", + "मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई।", + ] + # raw_sentences = [ + # "Ramchandra was a good king. His brother's name was Laxman.", + # "رام چندر جی اچھے بادشاہ تھے۔ اس کے بھائی کا نام لکشمن تھا۔", + # "ராமச்சந்திரா ஒரு நல்ல அரசர். அவரது சகோதரரின் பெயர் லக்ஷ்மன்.", + # "రామచంద్ర మంచి రాజు. అతని సోదరుడి పేరు లక్ష్మణ్.", + # "രാമചന്ദ്രജി ഒരു നല്ല രാജാവായിരുന്നു. സഹോദരന്റെ പേര് ലക്ഷ്മണൻ.", + # "রামচন্দ্র জি একজন ভালো রাজা ছিলেন। তার ভাইয়ের নাম ছিল লক্ষ্মণ।", + # "રામચંદ્રજી સારા રાજા હતા. તેમના ભાઈનું નામ લક્ષ્મણ હતું.", + # "ৰামচন্দ্ৰ জী এজন ভাল ৰজা আছিল। ভায়েকৰ নাম লক্ষ্মণ।", + # "ਰਾਮਚੰਦਰ ਜੀ ਚੰਗੇ ਰਾਜੇ ਸਨ। ਉਸ ਦੇ ਭਰਾ ਦਾ ਨਾਂ ਲਕਸ਼ਮਣ ਸੀ।", + # "रामचंद्र जी इक अच्छे राजा थे। उंदे भ्राऽ दा नां लक्ष्मण हा।", + # ] + # raw_sentences = [ + # "हमने कोहरे में एक आदमी को भागते देखा। उसने काले रंग की शाल पहनी थी। उसका कद लम्बा था।" + # ] + + docs, out_sentences = resolve_pronouns_hindi(raw_sentences, model, hinlp) + out_sentences = out_sentences[0].split(".") + assert len(raw_sentences) == len(out_sentences) + for x, y in zip(raw_sentences, out_sentences): + print("In ", x) + print("Out", y, end="\n\n") + + +# In हमने कोहरे में एक आदमी को भागते देखा। उसने काले रंग की शाल पहनी थी। उसका कद लम्बा था। +# Out हमने कोहरे में एक आदमी को भागते देखा । आदमी ने काले रंग की शाल पहनी थी । आदमी का कद लम्बा था । diff --git a/GSoC25_H/src/coref/pairwise_encoder.py b/GSoC25_H/src/coref/pairwise_encoder.py new file mode 100644 index 0000000..42bf3fe --- /dev/null +++ b/GSoC25_H/src/coref/pairwise_encoder.py @@ -0,0 +1,88 @@ +""" Describes PairwiseEncodes, that transforms pairwise features, such as +distance between the mentions, same/different speaker into feature embeddings +""" + +from typing import List + +import torch + +from coref.config import Config +from coref.const import Doc + + +class PairwiseEncoder(torch.nn.Module): + """A Pytorch module to obtain feature embeddings for pairwise features + + Usage: + encoder = PairwiseEncoder(config) + pairwise_features = encoder(pair_indices, doc) + """ + + def __init__(self, config: Config): + super().__init__() + emb_size = config.embedding_size + + self.genre2int = { + g: gi for gi, g in enumerate(["bc", "bn", "mz", "nw", "pt", "tc", "wb"]) + } + self.genre2int = {g: gi for gi, g in enumerate(["fu"])} # only for hindi + self.genre2int = { + g: gi + for gi, g in enumerate(["bc", "bn", "mz", "nw", "pt", "tc", "wb", "fu"]) + } # for all + self.genre2int = {g: gi for gi, g in enumerate(["mu"])} # only for multi + self.genre_emb = torch.nn.Embedding(len(self.genre2int), emb_size) + + # each position corresponds to a bucket: + # [(0, 2), (2, 3), (3, 4), (4, 5), (5, 8), + # (8, 16), (16, 32), (32, 64), (64, float("inf"))] + self.distance_emb = torch.nn.Embedding(9, emb_size) + + # two possibilities: same vs different speaker + self.speaker_emb = torch.nn.Embedding(2, emb_size) + + self.dropout = torch.nn.Dropout(config.dropout_rate) + self.shape = emb_size * 3 # genre, distance, speaker\ + + @property + def device(self) -> torch.device: + """A workaround to get current device (which is assumed to be the + device of the first parameter of one of the submodules)""" + return next(self.genre_emb.parameters()).device + + def forward( + self, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + top_indices: torch.Tensor, + doc: Doc, + ) -> torch.Tensor: + word_ids = torch.arange(0, len(doc["cased_words"]), device=self.device) + speaker_map = torch.tensor(self._speaker_map(doc), device=self.device) + + same_speaker = speaker_map[top_indices] == speaker_map.unsqueeze(1) + same_speaker = self.speaker_emb(same_speaker.to(torch.long)) + + # bucketing the distance (see __init__()) + distance = (word_ids.unsqueeze(1) - word_ids[top_indices]).clamp_min_(min=1) + log_distance = distance.to(torch.float).log2().floor_() + log_distance = log_distance.clamp_max_(max=6).to(torch.long) + distance = torch.where(distance < 5, distance - 1, log_distance + 2) + distance = self.distance_emb(distance) + + # genre = torch.tensor(self.genre2int[doc["document_id"][:2]], device=self.device).expand_as(top_indices) + genre = torch.tensor(self.genre2int["mu"], device=self.device).expand_as( + top_indices + ) + genre = self.genre_emb(genre) + + return self.dropout(torch.cat((same_speaker, distance, genre), dim=2)) + + @staticmethod + def _speaker_map(doc: Doc) -> List[int]: + """ + Returns a tensor where i-th element is the speaker id of i-th word. + """ + # speaker string -> speaker id + str2int = {s: i for i, s in enumerate(set(doc["speaker"]))} + + # word id -> speaker id + return [str2int[s] for s in doc["speaker"]] diff --git a/GSoC25_H/src/coref/rough_scorer.py b/GSoC25_H/src/coref/rough_scorer.py new file mode 100644 index 0000000..eda58a7 --- /dev/null +++ b/GSoC25_H/src/coref/rough_scorer.py @@ -0,0 +1,61 @@ +""" Describes RoughScorer, a simple bilinear module to calculate rough +anaphoricity scores. +""" + +from typing import Tuple + +import torch + +from coref.config import Config + + +class RoughScorer(torch.nn.Module): + """ + Is needed to give a roughly estimate of the anaphoricity of two candidates, + only top scoring candidates are considered on later steps to reduce + computational complexity. + """ + + def __init__(self, features: int, config: Config): + super().__init__() + self.dropout = torch.nn.Dropout(config.dropout_rate) + self.bilinear = torch.nn.Linear(features, features) + + self.k = config.rough_k + + def forward( + self, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + mentions: torch.Tensor, + ) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Returns rough anaphoricity scores for candidates, which consist of + the bilinear output of the current model summed with mention scores. + """ + # [n_mentions, n_mentions] + pair_mask = torch.arange(mentions.shape[0]) + pair_mask = pair_mask.unsqueeze(1) - pair_mask.unsqueeze(0) + pair_mask = torch.log((pair_mask > 0).to(torch.float)) + pair_mask = pair_mask.to(mentions.device) + + bilinear_scores = self.dropout(self.bilinear(mentions)).mm(mentions.T) + + rough_scores = pair_mask + bilinear_scores + + return self._prune(rough_scores) + + def _prune(self, rough_scores: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: + """ + Selects top-k rough antecedent scores for each mention. + + Args: + rough_scores: tensor of shape [n_mentions, n_mentions], containing + rough antecedent scores of each mention-antecedent pair. + + Returns: + FloatTensor of shape [n_mentions, k], top rough scores + LongTensor of shape [n_mentions, k], top indices + """ + top_scores, indices = torch.topk( + rough_scores, k=min(self.k, len(rough_scores)), dim=1, sorted=False + ) + return top_scores, indices diff --git a/GSoC25_H/src/coref/span_predictor.py b/GSoC25_H/src/coref/span_predictor.py new file mode 100644 index 0000000..2fc96da --- /dev/null +++ b/GSoC25_H/src/coref/span_predictor.py @@ -0,0 +1,156 @@ +""" Describes SpanPredictor which aims to predict spans by taking as input +head word and context embeddings. +""" + +from typing import List, Optional, Tuple + +from coref.const import Doc, Span +import torch + + +class SpanPredictor(torch.nn.Module): + def __init__(self, input_size: int, distance_emb_size: int): + super().__init__() + self.ffnn = torch.nn.Sequential( + torch.nn.Linear(input_size * 2 + 64, input_size), + torch.nn.ReLU(), + torch.nn.Dropout(0.3), + torch.nn.Linear(input_size, 256), + torch.nn.ReLU(), + torch.nn.Dropout(0.3), + torch.nn.Linear(256, 64), + ) + self.conv = torch.nn.Sequential( + torch.nn.Conv1d( + 64, 4, 3, 1, 1 + ), # in channel, out channel, kernel_size, stride, padding + torch.nn.Conv1d(4, 2, 3, 1, 1), + ) + self.emb = torch.nn.Embedding(128, distance_emb_size) # [-63, 63] + too_far + + @property + def device(self) -> torch.device: + """A workaround to get current device (which is assumed to be the + device of the first parameter of one of the submodules)""" + return next(self.ffnn.parameters()).device + + def forward( + self, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + doc: Doc, + words: torch.Tensor, + heads_ids: torch.Tensor, + ) -> torch.Tensor: + """ + Calculates span start/end scores of words for each span head in + heads_ids + + Args: + doc (Doc): the document data + words (torch.Tensor): contextual embeddings for each word in the + document, [n_words, emb_size] + heads_ids (torch.Tensor): word indices of span heads + + Returns: + torch.Tensor: span start/end scores, [n_heads, n_words, 2] + """ + # Obtain distance embedding indices, [n_heads, n_words] + relative_positions = heads_ids.unsqueeze(1) - torch.arange( + words.shape[0], device=words.device + ).unsqueeze(0) + emb_ids = relative_positions + 63 # make all valid distances positive + emb_ids[(emb_ids < 0) + (emb_ids > 126)] = 127 # "too_far" + + # Obtain "same sentence" boolean mask, [n_heads, n_words] + sent_id = torch.tensor(doc["sent_id"], device=words.device) + same_sent = sent_id[heads_ids].unsqueeze(1) == sent_id.unsqueeze(0) + + # To save memory, only pass candidates from one sentence for each head + # pair_matrix contains concatenated span_head_emb + candidate_emb + distance_emb + # for each candidate among the words in the same sentence as span_head + # [n_heads, input_size * 2 + distance_emb_size] + rows, cols = same_sent.nonzero(as_tuple=True) + pair_matrix = torch.cat( + ( + words[heads_ids[rows]], + words[cols], + self.emb(emb_ids[rows, cols]), + ), + dim=1, + ) + + lengths = same_sent.sum(dim=1) + padding_mask = torch.arange(0, lengths.max(), device=words.device).unsqueeze(0) + padding_mask = padding_mask < lengths.unsqueeze(1) # [n_heads, max_sent_len] + + # [n_heads, max_sent_len, input_size * 2 + distance_emb_size] + # This is necessary to allow the convolution layer to look at several + # word scores + padded_pairs = torch.zeros( + *padding_mask.shape, pair_matrix.shape[-1], device=words.device + ) + padded_pairs[padding_mask] = pair_matrix + + res = self.ffnn(padded_pairs) # [n_heads, n_candidates, last_layer_output] + res = self.conv(res.permute(0, 2, 1)).permute( + 0, 2, 1 + ) # [n_heads, n_candidates, 2] + + scores = torch.full( + (heads_ids.shape[0], words.shape[0], 2), float("-inf"), device=words.device + ) + scores[rows, cols] = res[padding_mask] + + # Make sure that start <= head <= end during inference + if not self.training: + valid_starts = torch.log((relative_positions >= 0).to(torch.float)) + valid_ends = torch.log((relative_positions <= 0).to(torch.float)) + valid_positions = torch.stack((valid_starts, valid_ends), dim=2) + return scores + valid_positions + return scores + + def get_training_data( + self, doc: Doc, words: torch.Tensor + ) -> Tuple[Optional[torch.Tensor], Optional[Tuple[torch.Tensor, torch.Tensor]]]: + """Returns span starts/ends for gold mentions in the document.""" + head2span = sorted(doc["head2span"]) + if not head2span: + return None, None + heads, starts, ends = zip(*head2span) + heads = torch.tensor(heads, device=self.device) + starts = torch.tensor(starts, device=self.device) + ends = torch.tensor(ends, device=self.device) - 1 + return self(doc, words, heads), (starts, ends) + + def predict( + self, doc: Doc, words: torch.Tensor, clusters: List[List[int]] + ) -> List[List[Span]]: + """ + Predicts span clusters based on the word clusters. + + Args: + doc (Doc): the document data + words (torch.Tensor): [n_words, emb_size] matrix containing + embeddings for each of the words in the text + clusters (List[List[int]]): a list of clusters where each cluster + is a list of word indices + + Returns: + List[List[Span]]: span clusters + """ + if not clusters: + return [] + + heads_ids = torch.tensor( + sorted(i for cluster in clusters for i in cluster), device=self.device + ) + + scores = self(doc, words, heads_ids) + starts = scores[:, :, 0].argmax(dim=1).tolist() + ends = (scores[:, :, 1].argmax(dim=1) + 1).tolist() + + head2span = { + head: (start, end) + for head, start, end in zip(heads_ids.tolist(), starts, ends) + } + + return [[head2span[head] for head in cluster] for cluster in clusters] diff --git a/GSoC25_H/src/coref/tokenizer_customization.py b/GSoC25_H/src/coref/tokenizer_customization.py new file mode 100644 index 0000000..6ed5c86 --- /dev/null +++ b/GSoC25_H/src/coref/tokenizer_customization.py @@ -0,0 +1,24 @@ +""" This file defines functions used to modify the default behaviour +of transformers.AutoTokenizer. These changes are necessary, because some +tokenizers are meant to be used with raw text, while the OntoNotes documents +have already been split into words. +All the functions are used in coref_model.CorefModel._get_docs. """ + +# Filters out unwanted tokens produced by the tokenizer +TOKENIZER_FILTERS = { + "albert-xxlarge-v2": (lambda token: token != "▁"), # U+2581, not just "_" + "albert-large-v2": (lambda token: token != "▁"), +} + +# Maps some words to tokens directly, without a tokenizer +TOKENIZER_MAPS = { + "roberta-large": { + ".": ["."], + ",": [","], + "!": ["!"], + "?": ["?"], + ":": [":"], + ";": [";"], + "'s": ["'s"], + } +} diff --git a/GSoC25_H/src/coref/utils.py b/GSoC25_H/src/coref/utils.py new file mode 100644 index 0000000..15f81e6 --- /dev/null +++ b/GSoC25_H/src/coref/utils.py @@ -0,0 +1,35 @@ +""" Contains functions not directly linked to coreference resolution """ + +from typing import List, Set + +import torch + +from coref.const import EPSILON + + +class GraphNode: + def __init__(self, node_id: int): + self.id = node_id + self.links: Set[GraphNode] = set() + self.visited = False + + def link(self, another: "GraphNode"): + self.links.add(another) + another.links.add(self) + + def __repr__(self) -> str: + return str(self.id) + + +def add_dummy(tensor: torch.Tensor, eps: bool = False): + """Prepends zeros (or a very small value if eps is True) + to the first (not zeroth) dimension of tensor. + """ + kwargs = dict(device=tensor.device, dtype=tensor.dtype) + shape: List[int] = list(tensor.shape) + shape[1] = 1 + if not eps: + dummy = torch.zeros(shape, **kwargs) # type: ignore + else: + dummy = torch.full(shape, EPSILON, **kwargs) # type: ignore + return torch.cat((dummy, tensor), dim=1) diff --git a/GSoC25_H/src/coref/word_encoder.py b/GSoC25_H/src/coref/word_encoder.py new file mode 100644 index 0000000..1ef9e65 --- /dev/null +++ b/GSoC25_H/src/coref/word_encoder.py @@ -0,0 +1,112 @@ +""" Describes WordEncoder. Extracts mention vectors from bert-encoded text. +""" + +from typing import Tuple + +import torch + +from coref.config import Config +from coref.const import Doc + + +class WordEncoder(torch.nn.Module): # pylint: disable=too-many-instance-attributes + """Receives bert contextual embeddings of a text, extracts all the + possible mentions in that text.""" + + def __init__(self, features: int, config: Config): + """ + Args: + features (int): the number of featues in the input embeddings + config (Config): the configuration of the current session + """ + super().__init__() + self.attn = torch.nn.Linear(in_features=features, out_features=1) + self.dropout = torch.nn.Dropout(config.dropout_rate) + + @property + def device(self) -> torch.device: + """A workaround to get current device (which is assumed to be the + device of the first parameter of one of the submodules)""" + return next(self.attn.parameters()).device + + def forward( + self, # type: ignore # pylint: disable=arguments-differ #35566 in pytorch + doc: Doc, + x: torch.Tensor, + ) -> Tuple[torch.Tensor, ...]: + """ + Extracts word representations from text. + + Args: + doc: the document data + x: a tensor containing bert output, shape (n_subtokens, bert_dim) + + Returns: + words: a Tensor of shape [n_words, mention_emb]; + mention representations + cluster_ids: tensor of shape [n_words], containing cluster indices + for each word. Non-coreferent words have cluster id of zero. + """ + word_boundaries = torch.tensor(doc["word2subword"], device=self.device) + starts = word_boundaries[:, 0] + ends = word_boundaries[:, 1] + + # [n_mentions, features] + words = self._attn_scores(x, starts, ends).mm(x) + + words = self.dropout(words) + + return (words, self._cluster_ids(doc)) + + def _attn_scores( + self, bert_out: torch.Tensor, word_starts: torch.Tensor, word_ends: torch.Tensor + ) -> torch.Tensor: + """Calculates attention scores for each of the mentions. + + Args: + bert_out (torch.Tensor): [n_subwords, bert_emb], bert embeddings + for each of the subwords in the document + word_starts (torch.Tensor): [n_words], start indices of words + word_ends (torch.Tensor): [n_words], end indices of words + + Returns: + torch.Tensor: [description] + """ + n_subtokens = len(bert_out) + n_words = len(word_starts) + + # [n_mentions, n_subtokens] + # with 0 at positions belonging to the words and -inf elsewhere + attn_mask = torch.arange(0, n_subtokens, device=self.device).expand( + (n_words, n_subtokens) + ) + attn_mask = (attn_mask >= word_starts.unsqueeze(1)) * ( + attn_mask < word_ends.unsqueeze(1) + ) + attn_mask = torch.log(attn_mask.to(torch.float)) + + attn_scores = self.attn(bert_out).T # [1, n_subtokens] + attn_scores = attn_scores.expand((n_words, n_subtokens)) + attn_scores = attn_mask + attn_scores + del attn_mask + return torch.softmax(attn_scores, dim=1) # [n_words, n_subtokens] + + def _cluster_ids(self, doc: Doc) -> torch.Tensor: + """ + Args: + doc: document information + + Returns: + torch.Tensor of shape [n_word], containing cluster indices for + each word. Non-coreferent words have cluster id of zero. + """ + word2cluster = { + word_i: i + for i, cluster in enumerate(doc["word_clusters"], start=1) + for word_i in cluster + } + + return torch.tensor( + [word2cluster.get(word_i, 0) for word_i in range(len(doc["cased_words"]))], + device=self.device, + ) diff --git a/GSoC25_H/src/demo.py b/GSoC25_H/src/demo.py new file mode 100644 index 0000000..1372934 --- /dev/null +++ b/GSoC25_H/src/demo.py @@ -0,0 +1,220 @@ +import streamlit as st +import wikipedia +import stanza +import torch +from coref import CorefModel +from coref.tokenizer_customization import * +from coref.mcoref import resolve_pronouns_hindi +from indIE import get_triples +import pickle +from genre.fairseq_model import mGENRE +from genre.trie import Trie, MarisaTrie +from predicate_linking import link_predicates_batch +from el_normalize import normalize_to_dbpedia_title_from_genre_text + + +@st.cache_resource +def load_coref_model(): + # Coref Model Loading + device = "cuda" if torch.cuda.is_available() else "cpu" + coref_model = CorefModel("models/coref_model/config.toml", "xlmr") + coref_model.config.device = device + coref_model.load_weights( + path="models/coref_model/model/xlmr_multi_plus_hi2.pt", + map_location=device, + ignore={ + "bert_optimizer", + "general_optimizer", + "bert_scheduler", + "general_scheduler", + }, + ) + coref_model.training = False + return coref_model + + +@st.cache_resource +def load_nlp_model(): + nlp = stanza.Pipeline(lang="hi", processors="tokenize,pos") + return nlp + + +@st.cache_resource +def load_el_model(): + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) + with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + trie = pickle.load(f) + el_model = mGENRE.from_pretrained( + "models/EL_model/fairseq_multilingual_entity_disambiguation" + ).eval() + return trie, el_model + + +@st.cache_data +def get_text_of_wiki_page(article_name: str): + """Given an article name(need not be exact title of page), + return the textual content of the wikipedia article. + We do a search for the articles and select the top-1 result, in case + where the article name is not the exact title. + + Args: + article_name (str): Name of a wikipedia article + + Returns: + str: The text of that article. + """ + try: + wikipedia.set_lang("hi") + article_name_result = wikipedia.page( + wikipedia.search(article_name)[0], auto_suggest=False + ) + article_name_content = article_name_result.content + article_name_content.replace("\n", "").replace("\t", "") + except: + return None + return article_name_content + + +@st.cache_data +def run_coreference(content): + coref_model = load_coref_model() + nlp = load_nlp_model() + _, out_sentences = resolve_pronouns_hindi([content], coref_model, nlp) + content = out_sentences[0] + return content + + +@st.cache_data +def run_relation_extraction(content): + nlp = load_nlp_model() + doc = nlp(content) + triples = [] + for sentence in doc.sentences: + sent = sentence.text + exts, _ = get_triples(sent) + triples.extend(exts[0]) + return triples + + +@st.cache_data +def run_entity_linking(triples): + trie, el_model = load_el_model() + el_sents = {} + for relation in triples: + s, p, o = relation + el_sents[s] = f"[START] {s} [END] {p} {o}" + el_sents[o] = f"{s} {p} [START] {o} [END]" + + linked_triples = [] + ans = el_model.sample( + list(el_sents.values()), + prefix_allowed_tokens_fn=lambda batch_id, sent: [ + e + for e in trie.get(sent.tolist()) + if e < len(el_model.task.target_dictionary) + ], + ) + el_maps = {} + for surface_l, annot in zip(el_sents.keys(), ans): + annot = sorted(annot, key=lambda x: x["score"], reverse=True) + top_text = annot[0]["text"] + en_title, _dbr = normalize_to_dbpedia_title_from_genre_text(top_text) + if en_title: + el_maps[surface_l] = en_title + else: + el_maps[surface_l] = top_text.split(" >> ")[0] + + for relation in triples: + s, p, o = relation + linked_triples.append( + ( + el_maps[s], + p, + el_maps[o], + ) + ) + return linked_triples + + +@st.cache_data +def run_predicate_linking(triples, lang="hi", top_k=20): + if not triples: + return [] + batch_in = [(s, p, o) for (s, p, o) in triples] + batch_out = link_predicates_batch(batch_in, lang=lang, top_k=top_k) + results = [{ + "triple": r.get("triple"), + "property_uri": r.get("property_uri"), + "property_label": r.get("property_label"), + "score": r.get("score"), + "direction": r.get("direction"), + } for r in batch_out] + return results + + +# Streamlit App +st.title("Hindi Wikipedia Neural Extractor") +article_name = st.text_input("Enter Wikipedia article name:", "") +content = None +triples = None + +if article_name: + # Fetch Wikipedia content + content = get_text_of_wiki_page(article_name) + if content: + st.text_area("Article Content", content, height=300) + else: + st.error("Wikipedia article not found.") +else: + st.info("Please enter an article name to fetch content.") + +# Checkboxes for features +coreference = st.checkbox("Coreference") +relation_extraction = st.checkbox("Relation Extraction") +entity_linking = st.checkbox("Entity Linking") +predicate_linking = st.checkbox("Predicate Linking") + +if coreference: + st.subheader("Coreference Resolution") + content = run_coreference(content) + st.write(content) + st.divider() + +if relation_extraction: + st.subheader("Relation Extraction") + re_num_to_show = st.slider("Number of triples to extract:", 1, 30, 5, key="re_num_to_show") + triples = run_relation_extraction(content) + st.write(triples[:re_num_to_show]) + +if entity_linking: + linked_triples = run_entity_linking(triples) + st.subheader("Entity Linking") + el_num_to_show = st.slider("Number of triples to show:", 1, 30, 5, key="el_num_to_show") + st.write("Extracted triples with entity linking:") + st.write(linked_triples[:el_num_to_show]) + +if predicate_linking: + st.subheader("Predicate Linking") + if 'linked_triples' in locals() and linked_triples: + # only the subset currently displayed in the Entity Linking section + num_to_process = el_num_to_show if 'el_num_to_show' in locals() else len(linked_triples) + pl_triples = linked_triples[:num_to_process] + elif triples: + # if entity linking not enabled, respect RE slider if available, else default to 5 + num_to_process = re_num_to_show if 're_num_to_show' in locals() else min(5, len(triples)) + pl_triples = triples[:num_to_process] + else: + pl_triples = [] + + if not pl_triples: + st.info("No triples available. Enable Relation Extraction (and optionally Entity Linking).") + else: + # Use cached predicate linking helper for the subset on screen + results = run_predicate_linking(pl_triples, lang="hi", top_k=20) + st.write(results) \ No newline at end of file diff --git a/GSoC25_H/src/el_normalize.py b/GSoC25_H/src/el_normalize.py new file mode 100644 index 0000000..7429c80 --- /dev/null +++ b/GSoC25_H/src/el_normalize.py @@ -0,0 +1,152 @@ +""" +This module is for normalizing hindi entity titles to Wikidata QIDs and English dbpedia titles. + +Input ("दिल्ली", hi) -> +[get_qid_from_lang_title] Asks Wikidata for QID -> +[get_en_title_from_qid] Asks Wikidata about enwiki title -> +canonical title: ("Delhi", en) -> +Output: ("Delhi", "http://dbpedia.org/resource/Delhi") +""" + +from typing import Dict, Optional, Tuple + +import requests + +QID_CACHE: Dict[Tuple[str, str], Optional[str]] = {} +EN_TITLE_CACHE: Dict[str, Optional[str]] = {} + + +def _requests_session(): + s = requests.Session() + s.headers.update({ + "User-Agent": "NEF-EntityNormalization (https://github.com/dbpedia/neural-extraction-framework)" + }) + return s + + +def parse_genre_text(text: str): + parts = [p.strip() for p in text.split(">>")] + if len(parts) == 2 and parts[0]: + return parts[0], parts[1] + return text.strip(), "en" + + +def get_qid_from_lang_title(lang: str, title: str, timeout: float = 8.0): + """Resolve a Wikipedia (lang, title) to a Wikidata QID using wbgetentities. + + Returns None if not found. + """ + if not title: + return None + key = (lang, title.replace(" ", "_")) + if key in QID_CACHE: + return QID_CACHE[key] + + session = _requests_session() + try: + r = session.get( + "https://www.wikidata.org/w/api.php", + params={ + "action": "wbgetentities", + "format": "json", + "sites": f"{lang}wiki", + "titles": title, + "props": "", + }, + timeout=timeout, + ) + r.raise_for_status() + data = r.json() + entities = data.get("entities", {}) + # entities is a dict mapping QID or -1 to info; pick the first QID key + for k in entities.keys(): + if k.startswith("Q"): + QID_CACHE[key] = k + return k + except Exception as e: + print(f"Error getting QID for {title} in {lang}: {e}") + pass + # fallback: search API - less precise but useful for redirects/variants + try: + r = session.get( + "https://www.wikidata.org/w/api.php", + params={ + "action": "wbsearchentities", + "language": lang, + "search": title, + "format": "json", + "limit": 1, + }, + timeout=timeout, + ) + r.raise_for_status() + data = r.json() + if data.get("search"): + qid = data["search"][0]["id"] + QID_CACHE[key] = qid + return qid + except Exception as e: + print(f"Error getting QID for {title} in {lang}: {e}") + pass + + QID_CACHE[key] = None + return None + + +def get_en_title_from_qid(qid: str, timeout: float = 8.0): + if not qid: + return None + if qid in EN_TITLE_CACHE: + return EN_TITLE_CACHE[qid] + + session = _requests_session() + try: + r = session.get(f"https://www.wikidata.org/wiki/Special:EntityData/{qid}.json", timeout=timeout) + r.raise_for_status() + data = r.json() + entity = data.get("entities", {}).get(qid, {}) + enwiki = entity.get("sitelinks", {}).get("enwiki") + if enwiki and enwiki.get("title"): + title = enwiki["title"].replace(" ", "_") + EN_TITLE_CACHE[qid] = title + return title + except Exception as e: + print(f"Error getting English title for {qid}: {e}") + pass + EN_TITLE_CACHE[qid] = None + return None + + +def normalize_to_dbpedia_title_from_genre_text(genre_text: str): + """Given mGENRE text (e.g., "दिल्ली >> hi"), return (en_title, dbr_uri). + + If normalization fails, returns (None, None). + """ + title, lang = parse_genre_text(genre_text) + title = title.replace(" ", "_") + if lang == "en": + dbr = f"http://dbpedia.org/resource/{title}" + return title, dbr + + qid = get_qid_from_lang_title(lang, title) + if not qid: + return None, None + en_title = get_en_title_from_qid(qid) + if not en_title: + return None, None + dbr = f"http://dbpedia.org/resource/{en_title}" + return en_title, dbr + + +def normalize_title(lang: str, title: str): + """Normalize a (lang,title) to English Wikipedia title (underscored).""" + if not title: + return None + if lang == "en": + return title.replace(" ", "_") + qid = get_qid_from_lang_title(lang, title) + if not qid: + return None + return get_en_title_from_qid(qid) + + diff --git a/GSoC25_H/src/entity_linking.py b/GSoC25_H/src/entity_linking.py new file mode 100644 index 0000000..c15725f --- /dev/null +++ b/GSoC25_H/src/entity_linking.py @@ -0,0 +1,54 @@ +import pickle +from genre.fairseq_model import mGENRE +from genre.trie import Trie, MarisaTrie +from genre.utils import get_entity_spans_fairseq as get_entity_spans + +# with open("input/lang_title2wikidataID-normalized_with_redirect.pkl", "rb") as f: +# lang_title2wikidataID = pickle.load(f) + + + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) +with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + trie = pickle.load(f) + +# generate Wikipedia titles and language IDs +model = mGENRE.from_pretrained( + "models/EL_model/fairseq_multilingual_entity_disambiguation" +).eval() + +sentences = [ + """नेता जी ने 5 जुलाई 1943 को [START] सिंगापुर [END] के टाउन हाल के सामने 'सुप्रीम कमाण्डर' (सर्वोच्च सेनापति) के रूप में सेना को सम्बोधित करते हुए "दिल्ली चलो!" का नारा दिया और जापानी सेना के साथ मिलकर ब्रिटिश व कामनवेल्थ सेना से बर्मा सहित इम्फाल और कोहिमा में एक साथ जमकर मोर्चा लिया।""", + """[START] नेताजी [END] ने 5 जुलाई 1943 को सिंगापुर के टाउन हाल के सामने 'सुप्रीम कमाण्डर' (सर्वोच्च सेनापति) के रूप में सेना को सम्बोधित करते हुए "दिल्ली चलो!" का नारा दिया और जापानी सेना के साथ मिलकर ब्रिटिश व कामनवेल्थ सेना से बर्मा सहित इम्फाल और कोहिमा में एक साथ जमकर मोर्चा लिया।""", +] +# model.sample( +# sentences, +# prefix_allowed_tokens_fn=lambda batch_id, sent: [ +# e for e in trie.get(sent.tolist()) if e < len(model.task.target_dictionary) +# ], +# text_to_id=lambda x: max( +# lang_title2wikidataID[tuple(reversed(x.split(" >> ")))], +# key=lambda y: int(y[1:]), +# ), +# marginalize=True, +# ) + +ans = model.sample( + sentences, + prefix_allowed_tokens_fn=lambda batch_id, sent: [ + e + for e in trie.get(sent.tolist()) + if e < len(model.task.target_dictionary) + # for huggingface/transformers + # if e < len(model2.tokenizer) - 1 + ], + marginalize=True, +) +for annot in ans: + annot = sorted(annot, key=lambda x: x["score"], reverse=True) + print(annot[0]["text"]) diff --git a/GSoC25_H/src/indIE.py b/GSoC25_H/src/indIE.py new file mode 100644 index 0000000..7c7a293 --- /dev/null +++ b/GSoC25_H/src/indIE.py @@ -0,0 +1,108 @@ +from chunking.chunking_model import * +from chunking.crf_chunker import * +from utils import * +import pandas as pd +from tqdm import tqdm +import stanza, torch + +use_gpu = torch.cuda.is_available() +hindi_nlp = load_stanza_model(lang="hi", use_gpu=use_gpu) + +nlp = hindi_nlp +lang = "hi" + +hyper_params = { + "run_ID": 26, + "createData": True, + "bs": 8, + "bert_model_name": "xlm-roberta-base", + "available_models": "'ai4bharat/indic-bert' 'bert-base-multilingual-cased' 'xlm-roberta-base' 'bert-base-multilingual-uncased' 'xlm-mlm-100-1280' 'xlm-mlm-tlm-xnli15-1024' 'xlm-mlm-xnli15-1024'", + "alpha": 0.00001, + "epochs": 3, + "rseed": 123, + "nw": 4, + "train_ratio": 0.7, + "val_ratio": 0.1, + "max_len": 275, + "which_way": 3, + "which_way_gloss": "1= take first wordpiece token id | 2= take last wordpiece token id | 3= average out the wordpiece embeddings during the forward pass", + "embedding_way": "last_hidden_state", + "embedding_way_gloss": "last_hidden_state, first_two, last_two", + "notation": "BI", + "platform": 1, + "available_platforms": "MIDAS server = 1, colab = 2", + "chunker": "XLM", # CRF or XLM +} + +model_embeddings = { + "ai4bharat/indic-bert": 768, + "bert-base-multilingual-cased": 768, + "xlm-roberta-base": 768, + "bert-base-multilingual-uncased": 768, + "xlm-mlm-100-1280": 1280, + "xlm-mlm-tlm-xnli15-1024": 1024, + "xlm-mlm-xnli15-1024": 1024, +} + +hyper_params["embedding_size"] = model_embeddings[hyper_params["bert_model_name"]] +my_tagset = torch.load("models/RE_model/files_indie/my_tagset_" + hyper_params["notation"] + ".bin") +hyper_params["my_tagset"] = my_tagset + +os.environ["PYTHONHASHSEED"] = str(hyper_params["rseed"]) +# Torch RNG +torch.manual_seed(hyper_params["rseed"]) +torch.cuda.manual_seed(hyper_params["rseed"]) +torch.cuda.manual_seed_all(hyper_params["rseed"]) +# Python RNG +np.random.seed(hyper_params["rseed"]) +random.seed(hyper_params["rseed"]) + +is_cuda = torch.cuda.is_available() +if is_cuda and use_gpu: + device = torch.device("cuda:0") + t = torch.cuda.get_device_properties(device).total_memory + c = torch.cuda.memory_reserved(device) + a = torch.cuda.memory_allocated(device) + f = t - (c - a) # free inside cache + print( + "GPU is available", + torch.cuda.get_device_name(), + round(t / (1024 * 1024 * 1024)), + "GB", + ) +else: + device = torch.device("cpu") + print("GPU not available, CPU used") + +hyper_params["device"] = str(device) + +if hyper_params["chunker"] == "XLM": + print("Creating the XLM chunker model...") + model = chunker_class(device, hyper_params).to(device) + checkpoint = torch.load( + "models/RE_model/files_indie/" + str(hyper_params["run_ID"]) + "_epoch_4.pth.tar", + map_location=device, + ) + checkpoint["state_dict"].pop("model.embeddings.position_ids") + print(model.load_state_dict(checkpoint["state_dict"])) + tokenizer = AutoTokenizer.from_pretrained(hyper_params["bert_model_name"]) +elif hyper_params["chunker"] == "CRF": + model, tokenizer = "CRF", "CRF" + + +def get_triples(sentence): + start_time = time.time() + total_exts = [] + all_sents, exts, ctime, etime = perform_extraction( + sentence, lang, model, tokenizer, nlp, show=False + ) # show = True to display intermediate results + # print(all_sents, exts, ctime, etime, sep="\n\n") + # print(augument_extractions(exts)) + if len(exts) == 0: + print("zero_extraction") + else: + total_exts.extend(exts) + # ctags = predict_with_model(model,s,tokenizer) + ttaken = round(time.time() - start_time, 3) + # print(ttaken) + return total_exts, ttaken diff --git a/GSoC25_H/src/llm_coreference.py b/GSoC25_H/src/llm_coreference.py new file mode 100644 index 0000000..6bd59ed --- /dev/null +++ b/GSoC25_H/src/llm_coreference.py @@ -0,0 +1,86 @@ +import requests +import json +import time +import re + + +# def get_prompt(text): +# template = {"formatted_text": ""} +# prompt = f"""Annotate all entity mentions in the following sentence using coreference clusters. Use Markdown tags to indicate clusters in the output, with the following format [mention](#cluster_number). Return the response in json in the following format. +# {json.dumps(template, indent=4)} +# Some examples of valid coreference clusters are: +# [Carl](#1) thrust [his](#1) hands into [his](#1) pockets, lowered [his](#1) head, and darted up [the street](#2) against the north wind. +# Here's the text to analyze: +# {text} +# """ +# return prompt + + +def get_prompt(text): + template = {"formatted_text": ""} + prompt = f"""Rewrite the below sentence as it is with the correct coreference resolution. Give the response in JSON in the following format. +{json.dumps(template, indent=4)} +Here's the text to analyze: +{text} +""" + return prompt + + +def extract_coref_chains(formatted_text): + pattern = r"\[([^\]]+)\]\(#([^)]+)\)" + matches = re.findall(pattern, formatted_text) + + coref_chains = {} + + for mention, symbol in matches: + if symbol not in coref_chains: + coref_chains[symbol] = [] + coref_chains[symbol].append(mention) + return coref_chains + + +def resolve_coreferences(sentence, clusters): + resolved_sentence = sentence + for cluster in clusters: + canonical_name = cluster[0] + for mention in cluster[1:]: + resolved_sentence = resolved_sentence.replace(mention, canonical_name) + return resolved_sentence + + +# sentence = "John went to the store. He bought some milk." +# clusters = [["John", "He"]] +# resolved_sentence = resolve_coreferences(sentence, clusters) +# print(resolved_sentence) # Output: "John went to the store. John bought some milk." + + +def get_llm_coref(user_text): + model = "phi3-mini-128k-q8:latest" + prompt = get_prompt(user_text) + data = { + "prompt": prompt, + "model": model, + "format": "json", + "stream": False, + "options": {"temperature": 2.5, "top_p": 0.99, "top_k": 100}, + } + + start_time = time.time() + response = requests.post( + "http://localhost:11434/api/generate", json=data, stream=False + ) + ttaken = round(time.time() - start_time, 3) + json_data = json.loads(response.text) + result = json.loads(json_data["response"].strip()) + return result["formatted_text"], ttaken + + +if __name__ == "__main__": + user_text = """[गुलाम मुस्तफ़ा खान](#) को [भारत सरकार](#) द्वारा सन 2006 में [कला](#) के [क्षेत्र](#) में पद्म भूषण से सम्मानित किया गया था। ये [महाराष्ट्र](#) से हैं।""" + formatted_text, ttaken = get_llm_coref(user_text) + print(formatted_text) + coref_chains = extract_coref_chains(formatted_text) + print(coref_chains) + clusters = list(coref_chains.values()) + resolved_text = resolve_coreferences(formatted_text, clusters) + print(resolved_text) diff --git a/GSoC25_H/src/llm_triplets.py b/GSoC25_H/src/llm_triplets.py new file mode 100644 index 0000000..13fa0ae --- /dev/null +++ b/GSoC25_H/src/llm_triplets.py @@ -0,0 +1,64 @@ +import requests +import json +import time + + +def get_prompt(text): + template = { + "triplets": [ + { + "subject": "Hindi Subject", + "predicate": "Hindi Predicate", + "object": "Hindi Object", + } + ], + } + max_triplets = 3 + example_output = { + "triplets": [ + { + "subject": "एबिलीन टेक्सास", + "predicate": "देश", + "object": "संयुक्त राज्य अमेरिक", + } + ] + } + """ + Some examples are also given below: + Text: एबिलीन, टेक्सास संयुक्त राज्य अमेरिका में है। + {json.dumps(example_output, ensure_ascii= False)} + """ + + prompt = f""" +Generate Hindi knowledge triplets from the following text. Each triplet should be in the format (subject, predicate, object). Extract up to {max_triplets} triplets and present them in JSON format. The output should be in hindi and should look like this: +{json.dumps(template, ensure_ascii=False)} + +Here's the text to analyze: +{text}""" + return prompt + + +def get_llm_triplets(user_text): + model = "mistral:latest" + prompt = get_prompt(user_text) + data = { + "prompt": prompt, + "model": model, + "format": "json", + "stream": False, + "options": {"temperature": 2.5, "top_p": 0.99, "top_k": 100}, + } + + start_time = time.time() + response = requests.post( + "http://localhost:11434/api/generate", json=data, stream=False + ) + ttaken = round(time.time() - start_time, 3) + json_data = json.loads(response.text) + result = json.loads(json_data["response"]) + return result["triplets"], ttaken + + +if __name__ == "__main__": + user_text = "एबिलीन, टेक्सास संयुक्त राज्य अमेरिका में है।" + print(get_llm_triplets(user_text)) diff --git a/GSoC25_H/src/predicate_linking.py b/GSoC25_H/src/predicate_linking.py new file mode 100644 index 0000000..a9b8d25 --- /dev/null +++ b/GSoC25_H/src/predicate_linking.py @@ -0,0 +1,719 @@ +import os +import json +import time +from typing import Dict, List, Set, Tuple, Optional +from difflib import SequenceMatcher +import asyncio +import numpy as np +from rdflib import Graph, URIRef +from rdflib.namespace import RDF, RDFS, SKOS +from sentence_transformers import SentenceTransformer +from SPARQLWrapper import SPARQLWrapper, JSON + + +from googletrans import Translator + + +DBPEDIA_SPARQL_ENDPOINT = "http://dbpedia.org/sparql" +DBO_PREFIX = "http://dbpedia.org/ontology/" +DBR_PREFIX = "http://dbpedia.org/resource/" + + +# keep catalog and index; embeddings are saved separately as .npy via _cache_bin_path. +ALLOWED_JSON_CACHES: Set[str] = { + "dbpedia_property_catalog", + "dbpedia_property_index", +} + + +def _get_sparql() -> SPARQLWrapper: + sparql = SPARQLWrapper(DBPEDIA_SPARQL_ENDPOINT) + sparql.setReturnFormat(JSON) + sparql.setTimeout(30) + return sparql + + +def _query_with_retries(query: str, retries: int = 2, sleep_seconds: float = 0.8) -> dict: + last_err: Optional[Exception] = None + for _ in range(retries + 1): + try: + sparql = _get_sparql() + sparql.setQuery(query) + return sparql.query().convert() + except Exception as e: + last_err = e + time.sleep(sleep_seconds) + raise last_err # type: ignore[misc] + + +def _cache_path(name: str) -> str: + base_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), "models", "ontology") + os.makedirs(base_dir, exist_ok=True) + safe_name = name.replace("/", "_") + return os.path.join(base_dir, f"{safe_name}.json") + +def _cache_bin_path(name: str, ext: str) -> str: + base_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), "models", "ontology") + os.makedirs(base_dir, exist_ok=True) + safe_name = name.replace("/", "_") + return os.path.join(base_dir, f"{safe_name}.{ext}") + + +def _load_cache(name: str) -> Optional[dict]: + # Only load from disk for allowlisted cache names + if name not in ALLOWED_JSON_CACHES: + return None + path = _cache_path(name) + if os.path.exists(path): + try: + with open(path, "r", encoding="utf-8") as f: + return json.load(f) + except Exception: + return None + return None + + +def _save_cache(name: str, data: dict): + # Only persist to disk for allowlisted cache names + if name not in ALLOWED_JSON_CACHES: + return + path = _cache_path(name) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=2) + + +def get_property_catalog() -> List[dict]: + """Parse TTL and build a catalog of dbo:* properties, cached as JSON. + + Returns a list of dicts with keys: + property_uri, labels_en, labels_hi, alt_labels, comment_en, domains, ranges + """ + cache_key = "dbpedia_property_catalog" + cached = _load_cache(cache_key) + if cached is not None and isinstance(cached, dict) and "properties" in cached: + return cached["properties"] + + ttl_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "ontology_input", "ontology--DEV_type=parsed.ttl") + + if not os.path.exists(ttl_path): + raise FileNotFoundError(f"TTL ontology not found at {ttl_path}") + + g = Graph() + g.parse(ttl_path, format="turtle") + + properties: List[dict] = [] + for p in g.subjects(RDF.type, RDF.Property): + p_str = str(p) + if not p_str.startswith(DBO_PREFIX): + continue + labels_en: List[str] = [] + labels_hi: List[str] = [] + alt_labels: List[str] = [] + comment_en: Optional[str] = None + domains: Set[str] = set() + ranges: Set[str] = set() + + for _, _, lbl in g.triples((p, RDFS.label, None)): + try: + lang = lbl.language or "" + if lang == "hi": + labels_hi.append(str(lbl)) + elif lang == "en" or lang == "": + labels_en.append(str(lbl)) + except Exception: + labels_en.append(str(lbl)) + + for _, _, alt in g.triples((p, SKOS.altLabel, None)): + alt_labels.append(str(alt)) + + for _, _, c in g.triples((p, RDFS.comment, None)): + try: + if getattr(c, "language", None) == "en" or getattr(c, "language", None) is None: + # Keep comment brief to reduce embedding size + comment_en = str(c) + break + except Exception: + comment_en = str(c) + + for _, _, d in g.triples((p, RDFS.domain, None)): + domains.add(str(d)) + for _, _, r in g.triples((p, RDFS.range, None)): + ranges.add(str(r)) + + properties.append( + { + "property_uri": p_str, + "labels_en": sorted(set(labels_en)), + "labels_hi": sorted(set(labels_hi)), + "alt_labels": sorted(set(alt_labels)), + "comment_en": comment_en, + "domains": sorted(domains), + "ranges": sorted(ranges), + } + ) + + _save_cache(cache_key, {"properties": properties}) + return properties + + +def _compose_property_text(entry: dict) -> str: + texts: List[str] = [] + labels = (entry.get("labels_en") or []) + (entry.get("alt_labels") or []) + if labels: + texts.append(" | ".join(labels)) + else: + # fallback to local name + local_name = entry["property_uri"].split("/")[-1] + texts.append(local_name) + comment = entry.get("comment_en") + if comment: + texts.append(comment) + return " | ".join(texts) + + + +def _translate_to_english(text: str, src_lang: str) -> str: + """Translate input text to English using googletrans when available. + + If translation fails or the translator is unavailable, returns the original text. + """ + if not text: + return text + if src_lang == "en": + return text + try: + translator = Translator() + translated_result = asyncio.run(translator.translate(text, src=src_lang, dest="en")) + if translated_result and getattr(translated_result, "text", ""): + return translated_result.text + except Exception: + pass + return text + + +def ensure_property_embeddings(model_name: str = "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2") -> Tuple[np.ndarray, List[dict]]: + """Ensure property embeddings and index are built and cached. + + Returns: + (embeddings: np.ndarray [num_props, dim], index: List[{'property_uri','text'}]) + """ + emb_path = _cache_bin_path("dbpedia_property_embeddings", "npy") + idx_path = _cache_path("dbpedia_property_index") + + if os.path.exists(emb_path) and os.path.exists(idx_path): + embeddings = np.load(emb_path) + with open(idx_path, "r", encoding="utf-8") as f: + index = json.load(f) + return embeddings, index + + catalog = get_property_catalog() + index: List[dict] = [] + texts: List[str] = [] + for entry in catalog: + text = _compose_property_text(entry) + index.append({"property_uri": entry["property_uri"], "text": text}) + texts.append(text) + + model = SentenceTransformer(model_name) + # Batch encode for memory efficiency + embeddings = model.encode(texts, convert_to_numpy=True, normalize_embeddings=True) + embeddings = embeddings.astype(np.float32) + + np.save(emb_path, embeddings) + with open(idx_path, "w", encoding="utf-8") as f: + json.dump(index, f, ensure_ascii=False, indent=2) + return embeddings, index + + +# Embedding model singleton to avoid repeated loads +_EMBEDDING_MODEL_SINGLETON: Optional[SentenceTransformer] = None +_EMBEDDING_MODEL_NAME: Optional[str] = None + + +def get_embedding_model(model_name: str = "intfloat/multilingual-e5-large-instruct") -> SentenceTransformer: + """Return a cached SentenceTransformer instance for query encoding. + + Streamlit reruns the script but keeps imported modules cached; a module-level + singleton avoids re-loading the heavy model on every function call. + """ + global _EMBEDDING_MODEL_SINGLETON, _EMBEDDING_MODEL_NAME + if _EMBEDDING_MODEL_SINGLETON is None or _EMBEDDING_MODEL_NAME != model_name: + _EMBEDDING_MODEL_SINGLETON = SentenceTransformer(model_name) + _EMBEDDING_MODEL_NAME = model_name + return _EMBEDDING_MODEL_SINGLETON + + +def _resource_uri_from_title(title: str) -> str: + return f"{DBR_PREFIX}{title.replace(' ', '_')}" + + +def fetch_dbpedia_properties_between(s_uri: str, o_uri: str) -> Dict[str, List[str]]: + """Return ontology properties observed between S and O in both directions. + + Args: + s_uri: Full resource URI for subject, e.g., http://dbpedia.org/resource/Sachin_Tendulkar + o_uri: Full resource URI for object + """ + cache_key = f"props_between::{s_uri}::{o_uri}" + cached = _load_cache(cache_key) + if cached is not None: + return cached + + forward_q = f""" + SELECT ?p WHERE {{ + <{s_uri}> ?p <{o_uri}> . + FILTER(STRSTARTS(STR(?p), "{DBO_PREFIX}")) + }} + """ + + reverse_q = f""" + SELECT ?p WHERE {{ + <{o_uri}> ?p <{s_uri}> . + FILTER(STRSTARTS(STR(?p), "{DBO_PREFIX}")) + }} + """ + + f_res = _query_with_retries(forward_q) + r_res = _query_with_retries(reverse_q) + + forward_props = [b["p"]["value"] for b in f_res["results"]["bindings"]] + reverse_props = [b["p"]["value"] for b in r_res["results"]["bindings"]] + + out = {"S->O": forward_props, "O->S": reverse_props} + _save_cache(cache_key, out) + return out + + +def fetch_types(uri: str) -> Set[str]: + """Return rdf:type set for a resource URI. + Example: http://dbpedia.org/resource/Sachin_Tendulkar + """ + cache_key = f"types::{uri}" + cached = _load_cache(cache_key) + if cached is not None: + return set(cached.get("types", [])) + + q = f""" + SELECT ?type WHERE {{ <{uri}> a ?type }} + """ + res = _query_with_retries(q) + types = {b["type"]["value"] for b in res["results"]["bindings"]} + _save_cache(cache_key, {"types": sorted(types)}) + return types + + +def _get_property_domain_range(prop_uri: str) -> Tuple[Set[str], Set[str]]: + cache_key = f"prop_dr::{prop_uri}" + cached = _load_cache(cache_key) + if cached is not None: + return set(cached.get("domains", [])), set(cached.get("ranges", [])) + + q = f""" + SELECT ?d ?r WHERE {{ + OPTIONAL {{ <{prop_uri}> ?d }} + OPTIONAL {{ <{prop_uri}> ?r }} + }} + """ + res = _query_with_retries(q) + domains = {b["d"]["value"] for b in res["results"]["bindings"] if "d" in b} + ranges = {b["r"]["value"] for b in res["results"]["bindings"] if "r" in b} + _save_cache(cache_key, {"domains": sorted(domains), "ranges": sorted(ranges)}) + return domains, ranges + + +def _get_property_labels(prop_uri: str) -> Dict[str, List[str]]: + cache_key = f"prop_labels::{prop_uri}" + cached = _load_cache(cache_key) + if cached is not None: + return cached + + q = f""" + SELECT ?label ?alt WHERE {{ + <{prop_uri}> ?label . + FILTER(LANGMATCHES(LANG(?label), 'en') || LANGMATCHES(LANG(?label), 'hi')) + OPTIONAL {{ <{prop_uri}> ?alt }} + }} + """ + res = _query_with_retries(q) + labels_en: List[str] = [] + labels_hi: List[str] = [] + alts: List[str] = [] + for b in res["results"]["bindings"]: + if "label" in b: + lbl = b["label"]["value"] + lang = b["label"].get("xml:lang", "") + if lang == "hi": + labels_hi.append(lbl) + else: + labels_en.append(lbl) + if "alt" in b: + alts.append(b["alt"]["value"]) + out = {"en": sorted(set(labels_en)), "hi": sorted(set(labels_hi)), "alt": sorted(set(alts))} + _save_cache(cache_key, out) + return out + + +def _lexical_candidate_properties(surface_predicate: str, lang: str = "hi", limit: int = 30) -> List[str]: + """Find dbo properties whose label contains the surface text (case-insensitive). + + MVP approach using SPARQL CONTAINS; this is a recall-oriented heuristic. + """ + text = surface_predicate.strip().lower() + # sanitize quotes + text = text.replace("\"", " ").replace("'", " ") + + # try English lexical search by translating non-English predicates + if lang != "en": + translated = _translate_to_english(surface_predicate, src_lang=lang).strip().lower() + translated = translated.replace("\"", " ").replace("'", " ") + text_for_query = translated if translated else text + pref_lang = "en" + if not translated or translated == text: + # fallback to original language if translation is unavailable/no-op + pref_lang = "hi" if lang == "hi" else "en" + text_for_query = text + else: + pref_lang = "en" + text_for_query = text + q = f""" + PREFIX rdfs: + SELECT ?p ?label WHERE {{ + ?p a . + FILTER(STRSTARTS(STR(?p), "{DBO_PREFIX}")) + ?p rdfs:label ?label . + FILTER(LANGMATCHES(LANG(?label), '{pref_lang}') || LANGMATCHES(LANG(?label), 'en')) + FILTER(CONTAINS(LCASE(STR(?label)), "{text_for_query}")) + }} LIMIT {limit} + """ + try: + res = _query_with_retries(q) + except Exception as e: + print(f"[PredicateLink] Lexical candidate properties | error: {e}") + return [] + props = [b["p"]["value"] for b in res["results"]["bindings"]] + return props + + +def _similarity(a: str, b: str) -> float: + return SequenceMatcher(None, a.lower(), b.lower()).ratio() + + +def _score_candidate(prop_uri: str, s_types: Set[str], o_types: Set[str], s_to_o: List[str], o_to_s: List[str], surface_predicate: str, embedding_score_lookup: Optional[Dict[str, float]] = None) -> Tuple[float, str, Dict[str, float]]: + labels = _get_property_labels(prop_uri) + text_candidates: List[str] = labels.get("en", []) + labels.get("hi", []) + labels.get("alt", []) + lex_score = max((_similarity(surface_predicate, t) for t in text_candidates), default=0.0) + + domains, ranges = _get_property_domain_range(prop_uri) + type_score = 0.0 + if domains or ranges: + dom_match = bool(domains.intersection(s_types)) + ran_match = bool(ranges.intersection(o_types)) + type_score = 1.0 if (dom_match and ran_match) else (0.5 if (dom_match or ran_match) else 0.0) + + direction = "none" + graph_score = 0.0 + if prop_uri in s_to_o: + graph_score = 1.0 + direction = "S->O" + elif prop_uri in o_to_s: + graph_score = 1.0 + direction = "O->S" + + emb_score = 0.0 + if embedding_score_lookup is not None: + emb_score = float(embedding_score_lookup.get(prop_uri, 0.0)) + + w_graph, w_emb, w_lex, w_type = 0.4, 0.3, 0.2, 0.1 + # weighted sum -> prioritize graph, then embedding, then lexical, then type + score = w_graph * graph_score + w_emb * emb_score + w_lex * lex_score + w_type * type_score + evidence = {"graph": graph_score, "emb": emb_score, "lex": lex_score, "type": type_score} + return score, direction, evidence + + +def link_predicate(surface_predicate: str, subject_title: str, object_title: str, lang: str = "hi") -> dict: + """Return a mapping for predicate surface to a dbo:* property. + + Output schema: + { + "property_uri": str or None, + "property_label": {"en": str|None, "hi": str|None}, + "score": float, + "direction": "S->O"|"O->S"|"none", + "evidence": {"graph": float, "lex": float, "type": float}, + "candidates": [ {"property_uri": str, "score": float} ] # top few for debugging + } + """ + start_ts = time.time() + print(f"[PredicateLink] Start | S='{subject_title}' O='{object_title}' pred='{surface_predicate}' lang={lang}") + s_uri = _resource_uri_from_title(subject_title) + o_uri = _resource_uri_from_title(object_title) + + t0 = time.time() + between = fetch_dbpedia_properties_between(s_uri, o_uri) + s_to_o = between.get("S->O", []) + o_to_s = between.get("O->S", []) + print(f"[PredicateLink] Graph candidates | S->O={len(s_to_o)} O->S={len(o_to_s)} | dt={(time.time()-t0):.2f}s") + + # Candidate pool: graph properties + lexical + embedding matches + candidates: Set[str] = set(s_to_o) | set(o_to_s) + + t1 = time.time() + lexical_props = _lexical_candidate_properties(surface_predicate, lang=lang) + candidates.update(lexical_props) + print(f"[PredicateLink] Lexical candidates | n={len(lexical_props)} | dt={(time.time()-t1):.2f}s") + + # Embedding candidates + try: + t2 = time.time() + # replaced sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2 (faster) + # with intfloat/multilingual-e5-large-instruct (better) + embeddings, index = ensure_property_embeddings(model_name="intfloat/multilingual-e5-large-instruct") + + # Use cached embedding model to avoid repeated loads + model = get_embedding_model("intfloat/multilingual-e5-large-instruct") + q_vec = model.encode([surface_predicate], convert_to_numpy=True, normalize_embeddings=True).astype(np.float32)[0] + # cosine sim with normalized vectors is dot product + sims = embeddings @ q_vec + top_k = min(20, sims.shape[0]) + top_idx = np.argpartition(-sims, top_k - 1)[:top_k] + emb_scores: Dict[str, float] = {} + for i in top_idx: + uri = index[i]["property_uri"] + emb_scores[uri] = float(sims[i]) + candidates.update(emb_scores.keys()) + print(f"[PredicateLink] Embedding candidates | n={len(emb_scores)} | dt={(time.time()-t2):.2f}s") + except Exception: + emb_scores = {} + print("[PredicateLink] Embedding candidates | failed to compute (missing model or build error)") + + if not candidates: + print("[PredicateLink] No candidates found from graph/lexical/embeddings") + return { + "property_uri": None, + "property_label": {"en": None, "hi": None}, + "score": 0.0, + "direction": "none", + "evidence": {"graph": 0.0, "emb": 0.0, "lex": 0.0, "type": 0.0}, + "candidates": [], + } + + t3 = time.time() + s_types = fetch_types(s_uri) + o_types = fetch_types(o_uri) + print(f"[PredicateLink] Types fetched | |S_types|={len(s_types)} |O_types|={len(o_types)} | dt={(time.time()-t3):.2f}s") + + t4 = time.time() + scored: List[Tuple[str, float, str, Dict[str, float]]] = [] + BLACKLISTED_PROPERTIES = { + "http://dbpedia.org/ontology/wikiPageWikiLink", + "http://dbpedia.org/ontology/wikiPageRedirects", + "http://dbpedia.org/ontology/wikiPageDisambiguates", + "http://dbpedia.org/ontology/wikiPageExternalLink", + "http://dbpedia.org/ontology/wikiPageDisambiguation", + "http://dbpedia.org/ontology/wikiPageRevision", + "http://dbpedia.org/ontology/wikiPageSource", + "http://dbpedia.org/ontology/wikiPageRevisionID", + "http://dbpedia.org/ontology/hraState", + "http://dbpedia.org/ontology/logo", + } + + for p in candidates: + if p in BLACKLISTED_PROPERTIES: + continue + score, direction, evidence = _score_candidate(p, s_types, o_types, s_to_o, o_to_s, surface_predicate, emb_scores) + scored.append((p, score, direction, evidence)) + + scored.sort(key=lambda x: x[1], reverse=True) + best_uri, best_score, best_dir, best_evidence = scored[0] + print(f"[PredicateLink] Scoring done | candidates={len(scored)} | top_score={best_score:.3f} | dt={(time.time()-t4):.2f}s") + + labels = _get_property_labels(best_uri) + label_en = labels.get("en", [None])[0] if labels.get("en") else None + label_hi = labels.get("hi", [None])[0] if labels.get("hi") else None + total_dt = time.time() - start_ts + print(f"[PredicateLink] Top candidate | uri={best_uri} | dir={best_dir} | label_en={label_en} | score={best_score:.3f} | total_dt={total_dt:.2f}s") + + return { + "property_uri": best_uri, + "property_label": {"en": label_en, "hi": label_hi}, + "score": float(best_score), + "direction": best_dir, + "evidence": best_evidence, + "candidates": [{"property_uri": p, "score": float(s)} for p, s, _, _ in scored[:5]], + } + +def link_predicates_batch(triples: List[Tuple[str, str, str]], lang: str = "hi", top_k: int = 20) -> List[dict]: + """Batch predicate linking for multiple (S, P, O) triples. + + Args: + triples: List of (subject_title, surface_predicate, object_title) + lang: Language code (default: "hi") + top_k: Number of embedding candidates to consider per query + + Returns: + List of result dicts in the same schema as link_predicate, in order. + """ + if not triples: + return [] + + # Ensure static data and model are ready once + embeddings, index = ensure_property_embeddings(model_name="intfloat/multilingual-e5-large-instruct") + model = get_embedding_model("intfloat/multilingual-e5-large-instruct") + + # Encode all surface predicates together for efficiency + surface_predicates = [p for (_, p, __) in triples] + q_mat = model.encode(surface_predicates, convert_to_numpy=True, normalize_embeddings=True).astype(np.float32) + + # Precompute top embedding candidates per query + # sims shape: [num_props, batch] to reuse memory efficiently + sims = embeddings @ q_mat.T # [num_props, B] + B = sims.shape[1] + + results: List[dict] = [] + for idx in range(B): + s_title, surface_p, o_title = triples[idx] + print(f"[PredicateLink] Start | S='{s_title}' O='{o_title}' pred='{surface_p}' lang={lang}") + + s_uri = _resource_uri_from_title(s_title) + o_uri = _resource_uri_from_title(o_title) + + t0 = time.time() + between = fetch_dbpedia_properties_between(s_uri, o_uri) + s_to_o = between.get("S->O", []) + o_to_s = between.get("O->S", []) + print(f"[PredicateLink] Graph candidates | S->O={len(s_to_o)} O->S={len(o_to_s)} | dt={(time.time()-t0):.2f}s") + + # Collect candidates: graph + lexical + embedding + candidates: Set[str] = set(s_to_o) | set(o_to_s) + + t1 = time.time() + lexical_props = _lexical_candidate_properties(surface_p, lang=lang) + candidates.update(lexical_props) + print(f"[PredicateLink] Lexical candidates | n={len(lexical_props)} | dt={(time.time()-t1):.2f}s") + + # Embedding candidates using precomputed sims column + emb_scores: Dict[str, float] = {} + col = sims[:, idx] + k = min(top_k, col.shape[0]) + top_idx = np.argpartition(-col, k - 1)[:k] + for i in top_idx: + uri = index[i]["property_uri"] + emb_scores[uri] = float(col[i]) + candidates.update(emb_scores.keys()) + print(f"[PredicateLink] Embedding candidates | n={len(emb_scores)}") + + if not candidates: + print("[PredicateLink] No candidates found from graph/lexical/embeddings") + results.append({ + "property_uri": None, + "property_label": {"en": None, "hi": None}, + "score": 0.0, + "direction": "none", + "evidence": {"graph": 0.0, "emb": 0.0, "lex": 0.0, "type": 0.0}, + "candidates": [], + "triple": (s_title, surface_p, o_title), + }) + continue + + t3 = time.time() + s_types = fetch_types(s_uri) + o_types = fetch_types(o_uri) + print(f"[PredicateLink] Types fetched | |S_types|={len(s_types)} |O_types|={len(o_types)} | dt={(time.time()-t3):.2f}s") + + BLACKLISTED_PROPERTIES = { + "http://dbpedia.org/ontology/wikiPageWikiLink", + "http://dbpedia.org/ontology/wikiPageRedirects", + "http://dbpedia.org/ontology/wikiPageDisambiguates", + "http://dbpedia.org/ontology/wikiPageExternalLink", + "http://dbpedia.org/ontology/wikiPageDisambiguation", + "http://dbpedia.org/ontology/wikiPageRevision", + "http://dbpedia.org/ontology/wikiPageSource", + "http://dbpedia.org/ontology/wikiPageRevisionID", + "http://dbpedia.org/ontology/hraState", + "http://dbpedia.org/ontology/logo", + } + + t4 = time.time() + scored: List[Tuple[str, float, str, Dict[str, float]]] = [] + for p_uri in candidates: + if p_uri in BLACKLISTED_PROPERTIES: + continue + score, direction, evidence = _score_candidate(p_uri, s_types, o_types, s_to_o, o_to_s, surface_p, emb_scores) + scored.append((p_uri, score, direction, evidence)) + + if not scored: + results.append({ + "property_uri": None, + "property_label": {"en": None, "hi": None}, + "score": 0.0, + "direction": "none", + "evidence": {"graph": 0.0, "emb": 0.0, "lex": 0.0, "type": 0.0}, + "candidates": [], + "triple": (s_title, surface_p, o_title), + }) + continue + + scored.sort(key=lambda x: x[1], reverse=True) + best_uri, best_score, best_dir, best_evidence = scored[0] + print(f"[PredicateLink] Scoring done | candidates={len(scored)} | top_score={best_score:.3f} | dt={(time.time()-t4):.2f}s") + + labels = _get_property_labels(best_uri) + label_en = labels.get("en", [None])[0] if labels.get("en") else None + label_hi = labels.get("hi", [None])[0] if labels.get("hi") else None + + results.append({ + "property_uri": best_uri, + "property_label": {"en": label_en, "hi": label_hi}, + "score": float(best_score), + "direction": best_dir, + "evidence": best_evidence, + "candidates": [{"property_uri": p, "score": float(s)} for p, s, _, _ in scored[:5]], + "triple": (s_title, surface_p, o_title), + }) + + return results + + +__all__ = [ + "link_predicate", + "link_predicates_batch", + "get_embedding_model", + "fetch_dbpedia_properties_between", + "fetch_types", +] + +def main(): + + # test cases with English subject/object titles and Hindi predicates. this reflects the state after a successful entity linking step. + test_triples = [ + ("Sachin_Tendulkar", "जन्म स्थान", "Mumbai"), + ("Microsoft", "द्वारा स्थापित", "Bill_Gates"), + ("Satyajit_Ray", "ने निर्देशित किया", "Pather_Panchali"), + ("India", "राजधानी", "New_Delhi"), + ("Taj_Mahal", "में स्थित है", "Agra"), + ("Amitabh_Bachchan", "के पिता", "Harivansh_Rai_Bachchan"), + ] + + print("RUNNING HINDI BATCH PREDICATE LINKING TEST SUITE") + + start_time = time.time() + batch_results = link_predicates_batch(test_triples, lang="hi", top_k=15) + end_time = time.time() + print(f"\nBatch processing finished in {end_time - start_time:.2f} seconds.") + + + for i, result in enumerate(batch_results): + s, p, o = result['triple'] + print(f"\nTEST CASE {i+1}/{len(batch_results)}") + + print("\nRESULT") + print(f"Input: '{s}' | '{p}' | '{o}'") + print(f"Top Property: {result.get('property_uri')}") + print(f"Best Label (en): {result.get('property_label', {}).get('en')}") + print(f"Score: {result.get('score'):.3f}") + print(f"Direction: {result.get('direction')}") + print(f"Evidence: {json.dumps(result.get('evidence'))}") + print("-" * 20) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GSoC25_H/src/rcoref.py b/GSoC25_H/src/rcoref.py new file mode 100644 index 0000000..515ed48 --- /dev/null +++ b/GSoC25_H/src/rcoref.py @@ -0,0 +1,23 @@ +import jsonlines +import torch, time +from tqdm import tqdm +from coref import CorefModel +from coref.tokenizer_customization import * +from coref.mcoref import resolve_pronouns_hindi +import stanza +import re + +if __name__ == "__main__": + nlp = stanza.Pipeline("hi") + device = "cuda" if torch.cuda.is_available() else "cpu" + + raw_sentences = [ + "हमने कोहरे में एक आदमी को भागते देखा। उसने काले रंग की शाल पहनी थी। उसका कद लम्बा था। ", + "मार्च 2001 में एक बार फिर अमरीका के अट्ठाइसवें रक्षा सचिव के रूप में उनकी वापसी हुई।", + ] + docs, out_sentences = resolve_pronouns_hindi(raw_sentences, model, nlp) + out_sentences = out_sentences[0].split(".") + assert len(raw_sentences) == len(out_sentences) + for x, y in zip(raw_sentences, out_sentences): + print("In ", x) + print("Out", y, end="\n\n") diff --git a/GSoC25_H/src/sent_features.py b/GSoC25_H/src/sent_features.py new file mode 100644 index 0000000..58eb3ab --- /dev/null +++ b/GSoC25_H/src/sent_features.py @@ -0,0 +1,69 @@ +import torch + + +def find_mentions(sentence, ner_tags, pos_tags): + words = sentence + mentions = [] + current_mention = [] + + for word, ner, pos in zip(words, ner_tags, pos_tags): + if ner.startswith("B-"): # Beginning of a new entity + if current_mention: + mentions.append(" ".join(current_mention)) + current_mention = [] + current_mention.append(word) + elif ner.startswith("I-"): # Inside an entity + current_mention.append(word) + else: # Outside an entity + if current_mention: + mentions.append(" ".join(current_mention)) + current_mention = [] + + # Check for noun phrases that might be mentions + if pos.startswith("N"): # Noun + mentions.append(word) + + # Add the last mention if there's any + if current_mention: + mentions.append(" ".join(current_mention)) + + return mentions + + +def get_ner_tags(sentence, tokenizer, model): + tok_sentence = tokenizer( + sentence, return_tensors="pt", padding=True, truncation=True, max_length=512 + ) + + with torch.no_grad(): + logits = model(**tok_sentence).logits.argmax(-1) + predicted_tokens_classes = [model.config.id2label[t.item()] for t in logits[0]] + predicted_labels = [] + previous_token_id = 0 + word_ids = tok_sentence.word_ids() + for word_index in range(len(word_ids)): + if word_ids[word_index] == None: + previous_token_id = word_ids[word_index] + elif word_ids[word_index] == previous_token_id: + previous_token_id = word_ids[word_index] + else: + predicted_labels.append(predicted_tokens_classes[word_index]) + previous_token_id = word_ids[word_index] + return predicted_labels + + +def get_pos_ner_tags(text, nlp, tokenizer, model): + doc = nlp(text) + pos_ner_tags = [] + mentions = [] + for sentence in doc.sentences: + words = [word.text for word in sentence.words] + ner_tags = get_ner_tags(" ".join(words), tokenizer, model) + pos_tags = [] + for idx, word in enumerate(sentence.words): + pos_ner_tags.append((word.text, word.pos, ner_tags[idx])) + pos_tags.append(word.pos) + mentions.append(find_mentions(words, ner_tags, pos_tags)) + mentions = [mention for sublist in mentions for mention in sublist] + mentions = list(set(mentions)) + return pos_ner_tags, mentions diff --git a/GSoC25_H/src/start.py b/GSoC25_H/src/start.py new file mode 100644 index 0000000..5036e62 --- /dev/null +++ b/GSoC25_H/src/start.py @@ -0,0 +1,185 @@ +import argparse +from glob import glob +import os +import stanza +import torch +from coref import CorefModel +from coref.tokenizer_customization import * +from coref.mcoref import resolve_pronouns_hindi +import re +from transformers import AutoTokenizer, AutoModelForTokenClassification +from sent_features import get_pos_ner_tags +from indIE import get_triples +from llm_triplets import get_llm_triplets +from llm_coreference import get_llm_coref +import pickle +from genre.fairseq_model import mGENRE +from genre.trie import Trie, MarisaTrie +from predicate_linking import link_predicate +from el_normalize import normalize_to_dbpedia_title_from_genre_text + + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("--input_dir", type=str, required=True) + parser.add_argument("--do_coref", action="store_true", required=False) + parser.add_argument("--do_rel", action="store_true", required=False) + parser.add_argument("--do_el", action="store_true", required=False) + parser.add_argument("--do_prop_link", action="store_true", required=False) + parser.add_argument("--verbose", action="store_true", required=False) + return parser.parse_args() + + +def format_mentions(sentence, mentions): + sorted_mentions = sorted(mentions, key=len, reverse=True) + escaped_mentions = [re.escape(mention) for mention in sorted_mentions] + pattern = "|".join(escaped_mentions) + + def replace_mention(match): + return f"[{match.group(0)}](#)" + + formatted_sentence = re.sub(pattern, replace_mention, sentence) + return formatted_sentence + + +if __name__ == "__main__": + args = parse_args() + + device = "cuda" if torch.cuda.is_available() else "cpu" + coref_model = CorefModel("models/coref_model/config.toml", "xlmr") + coref_model.config.device = device + coref_model.load_weights( + path="models/coref_model/model/xlmr_multi_plus_hi2.pt", + map_location=device, + ignore={ + "bert_optimizer", + "general_optimizer", + "bert_scheduler", + "general_scheduler", + }, + ) + coref_model.training = False + + # might need to manually make the following change in the fairseq model loading + # depending on the pytorch version being used + # File: `fairseq/fairseq/checkpoint_utils.py` + # Line: 271 + # Reason: The model checkpoint is not "weights-only". + # Change to: + # state = torch.load(f, map_location=torch.device("cpu"), weights_only=False) + with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + trie = pickle.load(f) + el_model = mGENRE.from_pretrained( + "models/EL_model/fairseq_multilingual_entity_disambiguation" + ).eval() + nlp = stanza.Pipeline(lang="hi", processors="tokenize,pos") + # tokenizer = AutoTokenizer.from_pretrained("ai4bharat/IndicNER") + # ner_model = AutoModelForTokenClassification.from_pretrained( + # "ai4bharat/IndicNER" + # ).eval() + + wiki_pages = glob(os.path.join(args.input_dir, "*.txt")) + + for id, articles in enumerate(wiki_pages): + with open(articles, "r") as f: + wiki_article = f.read() + if args.do_coref: + _, out_sentences = resolve_pronouns_hindi( + [wiki_article], coref_model, nlp + ) + wiki_article = out_sentences[0] + if args.verbose: + print(wiki_article) + ############################# + # NER/POS/Mention Detection # + ############################# + # pos_tags, mentions = get_pos_ner_tags( + # wiki_article, nlp, tokenizer, ner_model + # ) + # if args.verbose: + # print(*pos_tags, sep="\n") + # print(*mentions, sep="\n") + + ########################## + # Coreference Resolution # + ########################## + # formated_text = format_mentions(wiki_article, mentions) + # coref_resolved_text, ttaken_coref = get_llm_coref(formated_text) + # if args.verbose: + # print(coref_resolved_text, ttaken_coref) + + if args.do_rel: + ####################### + # Relation extrcation # + ####################### + doc: stanza.Document = nlp(wiki_article) + for sentence in doc.sentences: + sent = sentence.text + print(sent) + exts_rule, ttaken_rule = get_triples(sent) + # exts_llm, ttaken_llm = get_llm_triplets(sent) + if args.verbose: + print("Rule based triplets in the article: ", ttaken_rule) + # print("LLM based triplets in the article: ", ttaken_llm) + print(*exts_rule, sep="\n") + # print(*exts_llm, sep="\n") + print("\n") + + el_sents = {} + for relation in exts_rule[0]: + s, p, o = relation + el_sents[s] = f"[START] {s} [END] {p} {o}" + el_sents[o] = f"{s} {p} [START] {o} [END]" + + if args.do_el: + #################### + # Entity Linking # + #################### + ans = el_model.sample( + list(el_sents.values()), + prefix_allowed_tokens_fn=lambda batch_id, sent: [ + e + for e in trie.get(sent.tolist()) + if e < len(el_model.task.target_dictionary) + ], + ) + # print(ans) + el_maps = {} + for surface_l, annot in zip(el_sents.keys(), ans): + annot = sorted( + annot, key=lambda x: x["score"], reverse=True + ) + top_text = annot[0]["text"] + en_title, _dbr = normalize_to_dbpedia_title_from_genre_text(top_text) + # Fallback: keep raw title (pre-split) if normalization fails + if en_title: + el_maps[surface_l] = en_title + else: + el_maps[surface_l] = top_text.split(" >> ")[0] + new_exts_rule = [] + for relation in exts_rule[0]: + s, p, o = relation + new_exts_rule.append( + ( + el_maps[s], + p, + el_maps[o], + ) + ) + exts_rule[0] = new_exts_rule + print(exts_rule) + + if args.do_prop_link: + # use currently available triples - linked if EL ran, else surface strings + triples_for_linking = exts_rule[0] + prop_linked = [] + for (s, p, o) in triples_for_linking: + res = link_predicate(p, s, o, lang="hi") + prop_linked.append({ + "triple": (s, p, o), + "predicate_linking": res, + }) + if args.verbose: + print("Predicate linking results:") + for r in prop_linked: + print(r) diff --git a/GSoC25_H/src/test_el_pl.py b/GSoC25_H/src/test_el_pl.py new file mode 100644 index 0000000..b91a2f6 --- /dev/null +++ b/GSoC25_H/src/test_el_pl.py @@ -0,0 +1,77 @@ +import json +import pickle +import time + +from genre.fairseq_model import mGENRE +from genre.trie import Trie, MarisaTrie + +from el_normalize import normalize_to_dbpedia_title_from_genre_text +from predicate_linking import link_predicate + + +def load_el(): + with open("models/EL_model/titles_lang_all105_marisa_trie_with_redirect.pkl", "rb") as f: + trie = pickle.load(f) + el_model = mGENRE.from_pretrained( + "models/EL_model/fairseq_multilingual_entity_disambiguation" + ).eval() + return trie, el_model + + +def run_entity_linking(triples): + trie, el_model = load_el() + el_sents = {} + for (s, p, o) in triples: + el_sents[s] = f"[START] {s} [END] {p} {o}" + el_sents[o] = f"{s} {p} [START] {o} [END]" + + ans = el_model.sample( + list(el_sents.values()), + prefix_allowed_tokens_fn=lambda batch_id, sent: [ + e for e in trie.get(sent.tolist()) if e < len(el_model.task.target_dictionary) + ], + marginalize=True, + ) + + el_maps = {} + for surface_l, annot in zip(el_sents.keys(), ans): + annot = sorted(annot, key=lambda x: x["score"], reverse=True) + top_text = annot[0]["text"] # e.g., "दिल्ली >> hi" + en_title, _dbr = normalize_to_dbpedia_title_from_genre_text(top_text) + print(f" mapped surface title: {surface_l} -> dbpedia title: {en_title}") + el_maps[surface_l] = en_title if en_title else top_text.split(" >> ")[0] + return el_maps + + +def main(): + triples = [ + ("सचिन तेंदुलकर", "जन्म स्थान", "मुंबई"), + ("माइक्रोसॉफ़्ट", "द्वारा स्थापित", "बिल गेट्स"), + ("भारत", "राजधानी", "नई दिल्ली"), + ] + + print(" Testing Entity Linking (mGENRE → English DBpedia titles)") + t0 = time.time() + el_maps = run_entity_linking(triples) + print(f"EL done in {time.time() - t0:.2f}s") + for k, v in el_maps.items(): + print(f" {k} -> {v}") + + print("\n Testing Predicate Linking (DBpedia)") + for (s, p, o) in triples: + s_norm = el_maps.get(s, s) + o_norm = el_maps.get(o, o) + print(f"\nInput triple: ({s_norm}, {p}, {o_norm})") + res = link_predicate(p, s_norm, o_norm, lang="hi") + print("Result:") + print(f" property_uri: {res.get('property_uri')}") + print(f" property_label(en): {res.get('property_label',{}).get('en')}") + print(f" score: {res.get('score'):.3f}") + print(f" direction: {res.get('direction')}") + print(f" evidence: {json.dumps(res.get('evidence'))}") + + +if __name__ == "__main__": + main() + + diff --git a/GSoC25_H/src/utils.py b/GSoC25_H/src/utils.py new file mode 100644 index 0000000..4ef98e2 --- /dev/null +++ b/GSoC25_H/src/utils.py @@ -0,0 +1,1316 @@ +import nltk +from nltk import Tree +import numpy as np +import stanza, time +from collections import defaultdict +from chunking.chunking_model import * +from chunking.crf_chunker import * +import colorsys +import random +import graphviz +import subprocess, importlib + +stanza_path = importlib.util.find_spec("stanza").submodule_search_locations[0] +# https://stackoverflow.com/questions/269795/how-do-i-find-the-location-of-python-module-sources +# https://stackoverflow.com/questions/35288021/what-is-the-equivalent-of-imp-find-module-in-importlib +stanza_version = stanza.__version__ + +if not os.path.exists(stanza_path + "/" + stanza_version + "/"): + os.makedirs(stanza_path + "/" + stanza_version + "/") + +prep_dict = {"में": "in"} +action_relations = ["root", "aux", "cop", "mark", "advcl", "acl", "acl:relcl"] +arg_deprels = ["subj", "comp", "obj", "obl", "nmod", "appos", "nummod"] + + +def to_nltk_tree(mat, n, msg=""): + """ + this function converts dependency matrix to dependency tree + """ + children = mat.children(n) + if len(children) != 0: + return Tree( + mat.node_text(n, msg), + [to_nltk_tree(mat, int(child.id) - 1, msg) for child in children], + ) + else: + return mat.node_text(n, msg) + + +class phrases: + def __init__(self, s, h, i, upos, xpos, deprellist, deprel, ptype): + """ + this class is to create spacy like class for phrases + """ + ( + self.text, + self.head, + self.id, + self.upos, + self.xpos, + self.deprellist, + self.deprel, + self.ptype, + self.state, + ) = (s, h, i, upos, xpos, deprellist, deprel, ptype, "") + + def values(self): + return ( + self.text + + "|" + + str(self.head) + + "|" + + str(self.id) + + "|" + + self.upos + + "|" + + self.deprellist + + "|" + + str(self.deprel) + + "|" + + self.ptype + ) + + +class dmatrix: + def __init__(self, ml): + """ + if cell ij has 1, then it indicates that word j is a child of word i. Hence parents are stored in rows, and children are stored in columns. + """ + self.words = ml + self.mat = np.zeros((len(ml), len(ml))) + self.root_value = 0 + for d in ml: + if d.head != 0: + self.mat[d.head - 1, int(d.id) - 1] = 1 + elif d.head == 0 and str(d.deprel) == "root": + self.root_value = d.id - 1 + + # self.root_value = self.mat.sum(axis=0).argmin() + + def __len__(self): + return len(self.words) + + def show(self): + """ + shows the dmatrix + """ + print(" ", end="") + for i in range(len(self.words)): + print((i + 1) % 10, end=" ") + print() + for i in range(len(self.words)): + print((i + 1) % 10, list(self.mat[i])) + + def get_root(self): + return self.root_value + + def set_root(self, n): + self.root_value = n + return + + def children(self, n): + # returns a list of children + c_indexList = np.where(self.mat[n] == 1)[0] + children = [] + for cindx in c_indexList: + children.append(self.words[int(cindx)]) + return children + + def parent(self, n): + # returns parent + if self.root_value == n: + return -1 + else: + return self.words[np.where(self.mat[:, n] == 1)[0][0]] + + def text(self, n): + return self.words[n].text + + def node_text(self, n, msg=""): + """ + this function returns the text that is to be displayed on the tree nodes + """ + w = self.words[n] + s = ( + "^" + + str(w.id) + + "_" + + str(w.text) + + "&" + + str(w.xpos) + + "@" + + str(w.upos) + + "%" + + str(w.deprel) + + "$" + ) + s = w.text + "_" + str(w.deprel) + if msg == "mpt": + s = str(w.id - 1) + "_" + w.text + "\n" + str(w.deprel) + "\n" + str(w.upos) + elif msg == "urdu": + s = str(w.id - 1) + "\n" + str(w.deprel) + "\n" + str(w.upos) + else: + s = ( + " " + + str(w.id - 1) + + "_" + + str(w.text) + + " " + + "\n" + + str(w.deprel) + + "\n" + + str(w.upos) + ) + return s + + def n_descendants(self, n): + """ + this calculates number of nodes which has this given node as an ancestor + or in simple language + number of possible children/grand children/great grand children etc of this node + """ + a = len(self.children(n)) + child_queue = [int(child.id) - 1 for child in self.children(n)] + while len(child_queue) > 0: + tl = [int(child.id) - 1 for child in self.children(child_queue[0])] + a = a + len(tl) + child_queue = child_queue + tl + child_queue.reverse() + child_queue.pop() + child_queue.reverse() + return a + + def all_descendants(self, n): + child_queue = [int(child.id) - 1 for child in self.children(n)] + descendants = [int(child.id) - 1 for child in self.children(n)] + while len(child_queue) > 0: + tl = [int(child.id) - 1 for child in self.children(child_queue[0])] + descendants += tl + child_queue = child_queue + tl + child_queue.reverse() + child_queue.pop() + child_queue.reverse() + return descendants + + def delete_node(self, n): + children = self.children(n) + parent = self.parent(n) + if parent != -1: + self.mat[parent.id - 1, self.words[n].id - 1] = 0 + self.mat[parent.id - 1] += self.mat[self.words[n].id - 1] + for child in children: + child.head = parent.id + self.mat[n, child.id - 1] = 0 + self.mat[parent.id - 1, child.id - 1] = 1 + else: + # for word in self.words: + # print(word.id-1,word.text) + print(self.words[n].values()) + raise "Cannot delete root node" + return + + def siblings(self, n): + parent = self.words[n].head - 1 + # print('parent is',self.words[parent].text) + # input() + tempmat = self.mat.copy() + assert ( + tempmat[parent, n] == 1 + ) # make sure this node and its parent are connected + tempmat[parent, n] = 0 # now break the connection + c_indexList = np.where(tempmat[parent] == 1)[0] # find children of its parent + siblingList = [] + for cindx in c_indexList: + siblingList.append(self.words[int(cindx)]) + return siblingList + + +def fixable(tag1, tag2, show=False): + return False + if "VG" in tag1 and "VG" in tag2: + pp("\tFIXED", show) + return True + else: + pp("\tCANNOT BE FIXED", show) + return False + + +def predicted_ctag_validity(ctags, show=False): + if "I_" in ctags[0]: + pp("\tI in starting", show) + return False + i = 0 + while i < len(ctags) - 1: + if "I_" in ctags[i] and "I_" in ctags[i + 1]: + if ctags[i].replace("I_", "") != ctags[i + 1].replace("I_", ""): + pp("\tI_X I_Y observed", show) + pp("\t" + "\t".join(ctags[i - 1 : i + 2]), show) + return fixable( + ctags[i].replace("I_", ""), ctags[i + 1].replace("I_", ""), show + ) + if "B_" in ctags[i] and "I_" in ctags[i + 1]: + if ctags[i].replace("B_", "") != ctags[i + 1].replace("I_", ""): + pp("\tB_X I_Y observed", show) + pp("\t" + "\t".join(ctags[i - 1 : i + 2]), show) + return fixable( + ctags[i].replace("B_", ""), ctags[i + 1].replace("I_", ""), show + ) + i += 1 + return True + + +def resolve_Xs(ctag): + for i, ct in enumerate(ctag): + if ct == "X": + if i != 0: + ctag[i] = ( + "I_" + ctag[i - 1].split("_")[1] + ) # 'I_' + previous chunk tag label + else: + ctag[i] = ( + "B_" + ctag[i + 1].split("_")[1] if i + 1 < len(ctag) else "NP" + ) # 'B_' + next chunk tag label + return ctag + + +def augument_extractions(exts, prev=[], repeat=False): + aug = [] + for s_exts in exts: + taug, pairs = [], [] + d = defaultdict(bool, {}) + for i, e1 in enumerate(s_exts): + for j, e2 in enumerate(s_exts): + if ( + len(set(e1).union(set(e2))) == 4 + and e1[1] == e2[1] + and (j, i) not in pairs + and d[tuple(set(e1).union(set(e2)))] == False + ): + head = list(set(e1) - (set(e1).intersection(set(e2))))[0] + rel = e1.copy() + rel.remove(head) + rel = " ".join(rel) + tail = list(set(e2) - (set(e1).intersection(set(e2))))[0] + taug.append([head, rel, tail]) + pairs.append((i, j)) + d[tuple(set(e1).union(set(e2)))] = 1 + # print(tuple(set(e1).union(set(e2)))) + if repeat: + pl = [] + for p in pairs: + pl.append(p[0]) + pl.append(p[1]) + for i in range(len(s_exts)): + if i not in pl: + taug.append(s_exts[i]) + aug.append(taug) + + return aug # comment this line to make the process recursive + if aug == prev: + # print(aug) + # input('1') + return aug + else: + # print(aug) + # input('2') + aug = augument_extractions(aug, aug, True) + return aug + + +def perform_extraction( + s, lang, model, tokenizer, nlp, show=False, argshow=False, is_a_override=False +): + if lang == "hi": + s = s.replace("|", "।") + s = re.sub(r"[\U0001F004-\U0001FA95]+", "", s) # emoji removal + s = re.sub(r"[\uFE00-\uFE0F]+", "", s) # some special character removal + doc = nlp(s) + all_sents, exts = [], [] + chunking_time, ext_time = [], [] + # hai oru undi + is_a = {"hi": "है", "ur": "ہے", "ta": "ஒரு", "te": "ఉంది", "mr": "आहे", "en": "is"}[ + lang + ] # these are the language specific is_a labels + for sent in doc.sentences: + pp("Orig:" + s, show) + pp("Curr:" + sent.text, show) + ml = [] + for word in sent.words: + ml.append(word) + m = dmatrix(ml) # <------------- creating traditional dependency tree + c = "\t".join([w.text for w in ml]) + pp(c, show) + a = time.time() + if model == "CRF": + ctags = predict_with_crf(sent) + else: + ctags = predict_with_model(model, c, tokenizer) + if ctags[0] == "Size exceeded": + pp("Size exceeded for chunking", show) + all_sents.append(sent.text) + exts.append([]) + chunking_time.append(0) + ext_time.append(0) + continue + + ctags = resolve_Xs(ctags) + pp("\t".join(ctags), show) + if not predicted_ctag_validity(ctags, show): + pp("Error in chunk tags", show) + all_sents.append(sent.text) + exts.append([]) + chunking_time.append(0) + ext_time.append(0) + continue + w_idx_to_p_id = {} + cid = -1 + textL, headL, idL, uposL, xposL, deprelL, phraseL = [], [], [], [], [], [], [] + # ----------------------- collecting all phrases in a list --------------------- + for i, ct in enumerate(ctags + ["B_END"]): + if ( + "B_" in ct + ): # notice: this mechanism is independent of chunk labels, it only looks for chunk boundaries + cid += 1 + if textL: + ph = phrases( + " ".join(textL), + 0, + cid, + ".".join(uposL), + ".".join(xposL), + ".".join(deprelL), + 0, + ptype, + ) # though it stores the chunk label (ptype) in case it is needed in future + phraseL.append(ph) + textL, headL, idL, uposL, xposL, deprelL = [], [], [], [], [], [] + if i < len(ctags): + textL.append(ml[i].text) + uposL.append(ml[i].upos) + xposL.append(ml[i].xpos) + deprelL.append(str(ml[i].deprel)) + ptype = ct[2:] + w_idx_to_p_id[i] = cid + 1 # <------------------ word to phrase mapping + chunking_time.append(round(time.time() - a, 3)) + pp("Chunking happened in " + str(time.time() - a) + " secs", show) + # ------------------------------------------------------------------------------- + a = time.time() + # for p in phraseL: + # print(p.values(), end=' -- ') + # print() + # print(w_idx_to_p_id) + + # phrase List me phrases ke index 1 se start hote hai + # bcoz phrase ke head bhi 1 se start hote hai bcoz stanza me aisa hota tha, and dmatrix is designed in such a way + # stanza me har word ki ID 1 se start hoti hai + + # Indices of phrases in phraseList starts at 1 + # because head of a phrase starts at 1 as well + # because stanza has this kind of format (where id of root is given 1, and its head is given 0), and dmatrix is designed in such a way + + # m.show() + + # ------------------------- filling the appropriate parent ids using dependency tree --------------------- + # ml[m.get_root()-1] + phrases_included = [w_idx_to_p_id[m.get_root()] - 1] + phraseL[phrases_included[0]].deprel = "root" + # print('m.get_root()',m.get_root(), 'w_idx_to_p_id[m.get_root()]', w_idx_to_p_id[m.get_root()], 'phrase_included',phrases_included) + # print(m.children(5)) + children_queue = m.children(m.get_root()) + i = 0 + while i < len(children_queue): + child = children_queue[i] + if not (str(child.deprel) == "punct" and child.upos == "PUNCT"): + if w_idx_to_p_id[child.id - 1] - 1 not in phrases_included: + word_id_0_indexing = child.id - 1 + phrase_id_0_indexing = w_idx_to_p_id[word_id_0_indexing] - 1 + phrases_included.append(phrase_id_0_indexing) + phraseL[phrase_id_0_indexing].head = w_idx_to_p_id[child.head - 1] + phraseL[phrase_id_0_indexing].deprel = str(child.deprel) + nxt_children = m.children(child.id - 1) + if nxt_children: + children_queue += nxt_children + i += 1 + # ----------------------------------------------------------------------------------------------------------- + + # ------------------ printing traditional dependency tree ------------- + if lang == "ur": + if show: + for sents in doc.sentences: + for i, word in enumerate(sents.words): + print(i, word.text, word.upos, word.deprel) + tree = to_nltk_tree(m, m.get_root(), "urdu") + else: + tree = to_nltk_tree(m, m.get_root()) + if show and type(tree) == nltk.tree.Tree: + tree.pretty_print() + # ---------------------------------------------------------------------- + + # for p in phraseL: + # print(p.values(), end=' -- ') + # print('\n') + m = dmatrix(phraseL) # <------------- creation of phrase-level dependency tree + + # ------------------ adjustments in phrase-level dependency tree ------------------- + i = 0 + while i < len(phraseL): + if str(phraseL[i].deprel) in ["compound"]: + phraseL[phraseL[i].head - 1].text = ( + phraseL[i].text + " " + phraseL[phraseL[i].head - 1].text + ) + phraseL[phraseL[i].head - 1].upos = ( + phraseL[i].upos + "." + phraseL[phraseL[i].head - 1].upos + ) + phraseL[phraseL[i].head - 1].xpos = ( + phraseL[i].xpos + "." + phraseL[phraseL[i].head - 1].xpos + ) + phraseL[phraseL[i].head - 1].deprellist = ( + phraseL[i].deprellist + + "." + + phraseL[phraseL[i].head - 1].deprellist + ) + phraseL[i].text, phraseL[i].deprel, phraseL[i].upos = "--", "--", "--" + elif str(phraseL[i].deprel) in ["aux", "advmod", "case"]: + phraseL[phraseL[i].head - 1].text = ( + phraseL[phraseL[i].head - 1].text + " " + phraseL[i].text + ) + phraseL[phraseL[i].head - 1].upos = ( + phraseL[phraseL[i].head - 1].upos + "." + phraseL[i].upos + ) + phraseL[phraseL[i].head - 1].xpos = ( + phraseL[phraseL[i].head - 1].xpos + "." + phraseL[i].xpos + ) + phraseL[phraseL[i].head - 1].deprellist = ( + phraseL[phraseL[i].head - 1].deprellist + + "." + + phraseL[i].deprellist + ) + phraseL[i].text, phraseL[i].deprel, phraseL[i].upos = "--", "--", "--" + i += 1 + + # for p in phraseL: + # print(p.values(), end=' -- ') + # print('\n','this '*20) + + m = dmatrix(phraseL) + for i in range(len(m)): + if str(m.words[i].deprel) == "--": + m.delete_node(i) + # ---------------------------------------------------------------------------------- + + # ------------------ printing phrase-level dependency tree ------------- + if lang == "ur": + if show: + for i, phrase in enumerate(phraseL): + print(i, phrase.text, phrase.upos, phrase.deprel) + tree = to_nltk_tree(m, m.get_root(), "urdu") + else: + tree = to_nltk_tree(m, m.get_root(), "mpt") + if show and type(tree) == nltk.tree.Tree: + tree.pretty_print() + # show=False + # ---------------------------------------------------------------------- + + clean_state(m) + exts1 = extract( + m, m.get_root(), [], is_a, 0, show, argshow, is_a_override + ) # <---------- Information Extraction happens here + exts2 = [] + for e in exts1: # removing duplicate extractions + if e not in exts2: + exts2.append(e) + exts.append(exts2) + all_sents.append(sent.text) + ext_time.append(round(time.time() - a, 3)) + pp("Extraction happened in " + str(time.time() - a) + " secs", show) + return all_sents, exts, chunking_time, ext_time + + +def pp(msg, show, endc="\n"): + if show: + print(msg, end=endc) + return + + +def clean_state(m): + for i in range(len(m)): + m.words[i].state = "" + return + + +def closest_phrase(m, phrase1, phraseN): + pl = [p.text for p in m.words] if type(m) == dmatrix else m.split(" ") + pl_d = [] + for p in phraseN: + try: + a = pl.index(phrase1) + b = pl.index(p) + d = abs(a - b) + except Exception as e: + try: + a = " ".join(pl).index(phrase1) + b = " ".join(pl).index(p) + except Exception as e: + a = " ".join(pl).index(phrase1.split()[0]) + b = " ".join(pl).index(p.split()[0]) + offset = len(phrase1) if a < b else len(p) + d = abs(a - b) - offset + 1 + pl_d.append(d) + return phraseN[np.argmin(pl_d)] + + +def obl_useful(m, c, stateless=False): + if c.head != 0: # means c is not root + parent = m.words[c.head - 1] + if ( + str(parent.deprel) == "amod" + and parent.ptype == "JJP" + and "PROPN" not in c.upos + ): + c.state = "done" if not stateless else c.state + return False + elif ( + str(parent.deprel) == "root" + and parent.upos == "VERB" + and "PROPN" not in c.upos + ): + c.state = "done" if not stateless else c.state + return False + elif str(parent.deprel) == "obl" and "PROPN" not in c.upos: + c.state = "done" if not stateless else c.state + return False + if c.upos == "PRON": + c.state = "done" if not stateless else c.state + return False + return True + + +def nmod_useful(m, c, stateless=False): + # if list(set(c.upos.split('.'))) == ['NOUN']: # if it has only nouns + # return False + + parent = m.words[c.head - 1] + if ( + "subj" in str(parent.deprel) + or "obj" in str(parent.deprel) + or str(parent.deprel) == "root" + or (str(parent.deprel) == "obl" and obl_useful(m, parent, stateless=stateless)) + or if_any_in(action_relations, str(parent.deprel)) + ): + return True + if "PROPN" in c.upos: + return True + c.state = "done" if not stateless else c.state + return False + return True + + +def find_args(m, n, patterns, show, stateless=False): + """ + stateless: states change mat karna, I am just testing the function + """ + arg = phrases("", -1, -1, "", "", "", "", "") + for p in patterns: + + if len(p) == 2: + if not arg.text: + for c in m.children(n): + if ( + p[0] in str(c.deprel) + and p[1](m, c, stateless=stateless) + and "done" not in c.state + ): + arg = c + c.state = "done" if not stateless else c.state + pp("\n\t[" + c.text + "] is a <" + p[0] + ">", show) + return arg + else: + pp( + "\t[" + + c.text + + "] is not a <" + + p[0] + + "> because " + + str(p[0] in str(c.deprel)) + + str(p[1](m, c, stateless=True)) + + str("done" not in c.state) + + "#___# ", + show, + "", + ) + + else: + if not arg.text: + for c in m.children(n): + if p[0] in str(c.deprel) and "done" not in c.state: + arg = c + if not stateless: + c.state = "done" + pp("\n\t[" + c.text + "] is a <" + p[0] + ">", show) + return arg + else: + pp( + "\t[" + + c.text + + "] is not a <" + + p[0] + + "> because " + + str(p[0] in str(c.deprel)) + + str("done" not in c.state) + + "#___# ", + show, + "", + ) + pp("", show) + return arg + + +def clausal_node(m, n): + head = m.words[n].text.split()[m.words[n].upos.split(".").index("PRON")] + rel = m.words[n].text.split()[m.words[n].upos.split(".").index("VERB")] + if "PART" in m.words[n].upos: + rel = ( + m.words[n].text.split()[m.words[n].upos.split(".").index("PART")] + + " " + + rel + ) + if "AUX" in m.words[n].upos: + if m.words[n].upos.split(".").count("AUX") == 1: + rel = ( + rel + + " " + + m.words[n].text.split()[m.words[n].upos.split(".").index("AUX")] + ) + else: + for idx in [ + i for i, x in enumerate(m.words[n].upos.split(".")) if x == "AUX" + ]: + rel = rel + " " + m.words[n].text.split()[idx] + tail = m.words[n].text.split() + tail.remove(head) + for r in rel.split(" "): + tail.remove(r) + tail = " ".join(tail) + return head, rel, tail + + +def is_clausal_node(m, n): + return ( + "PRON" in m.words[n].upos.split(".") + and ( + "NOUN" in m.words[n].upos.split(".") + or "PROPN" in m.words[n].upos.split(".") + ) + and ("VERB" in m.words[n].upos.split(".")) + ) + + +def if_any_in(wlist, w): + for w2 in wlist: + if w2 in w: + return True + return False + + +def extract( + m, + n, + extraction_queue, + is_a, + running_no=0, + show=False, + argshow=False, + is_a_override=False, +): + """ + m: dmatrix + It is a matrix representation of MDT (refer paper to know MDT) + n: Integer + Id of the phrase you are standing on right now. It starts with root. + extraction_queue: list of lists + as the name suggests, it is a queue that stores the extractions + running_no: Integer + a number which helps us to infinite loops, during recursion (never happened in expts) + show: Bool + A flag to show the intermediate steps in an abstract level. + argshow: Bool + it is a flag to show the intermediate steps while matching the arguments. It can be said that it is used when we want to see most fine-grained intermediate steps. + is_a_override: Bool + This flag is set to True only in case of Hindi Benchie. It uses 'property' instead of language specific is_a labels + """ + pp("-" * 50, show) + pp("\t\t Node=" + m.words[n].text + "\n", show) + + if "cop" in [str(x.deprel) for x in m.children(n)]: + pp('Copular verb found in the children of "' + m.words[n].text + '"', show) + if len(m.children(n)) <= 2: + # keep copular verb as a relation + # in this, you are almost guaranteed to get a tail, a rel, and a head + pp("Keeping copular verb as a separate relation", show) + tail = m.words[n] + rel, head = "", "" + for c in m.children(n): + if str(c.deprel) == "cop": + rel = c + break + head = find_args( + m, + n, + [ + ["subj"], + ["comp"], + ["obj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if tail.text and head.text and rel.text: + rel.state, tail.state = "done", "done" + rel = rel.text + else: + pp("Something is missing among the triplets", show) + pp( + "Head=" + head.text + " Rel=" + rel.text + " Tail=" + tail.text, + show, + ) + else: + # move copular verb with its parent + pp("Moving copular verb with its parent", show) + rel, rel2 = m.words[n].text, "" + for c in m.children(n): + if str(c.deprel) == "cop": + rel += " " + c.text + rel2 = c + break + pp("Relation becomes " + rel, show) + head = find_args( + m, + n, + [ + ["subj"], + ["comp"], + ["obj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if ( + str(head.deprel) == "nmod" + and "done" in m.words[n].state + and "AUX" not in m.words[n].upos + ): + pp( + "Head=" + + head.text + + " It is a nmod that is an attribute of " + + rel, + show, + ) + sibl = m.siblings(head.id - 1) + aux_found = "है" + for sib in sibl: + if "AUX" in sib.upos: + aux_found = sib.text + break + aux_found = ( + "property" if is_a_override else aux_found + ) # <----------- here actual over-riding happens + tail = head + head = m.words[n] + rel = aux_found + else: + pp("Head=" + head.text, show) + tail = find_args( + m, + n, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if not tail.text: + pp("Empty tail found. Let us search in the head only.", show) + tail = find_args( + m, + head.id - 1, + [ + ["obj"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) # if the parent cannot give you a tail, then maybe head can give you, check it + if tail.text: # yes, head gave us a tail + pp("Tail=" + tail.text, show) + else: + pp("Still no tail found", show) + pp("Let us check for advcl etc etc", show) + tail = phrases("", -1, -1, "", "", "", "", "") + t1 = find_args( + m, n, [["advcl"], ["acl"], ["acl:relcl"]], argshow + ) + if not t1.text: + pp("Even now, it is not able to find any tail", show) + else: + pp('Found an advcl = "' + t1.text + '"', show) + t2 = find_args( + m, + t1.id - 1, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if t2.text: + pp('Found an argument "' + t2.text + '" with it', show) + tail.text = t2.text + " " + t1.text + else: + tail = t1 + if tail.text and head.text and rel: + m.words[n].state = "done" # rel + rel2.state = "done" + if head.text and tail.text: + extraction_queue.append([head.text, rel, tail.text]) + pp("Extraction obtained are\n", show) + pp(extraction_queue[-1], show) + else: + if head.text: + head.state = "done" + pp("This head (" + head.text + ") is done", show) + + elif ( + "advcl" in str(m.words[n].deprel) + and "mark" not in [str(x.deprel) for x in m.siblings(n)] + and "mark" not in [str(x.deprel) for x in m.children(n)] + ): + # mark represents a breakage of clause i.e. advcl clause becomes somewhat independent + # the dependent (rel+tail) is the main predicate of the clause + # the node on which you are standing, can modify the tail or relation, that is why we combine both + pp('advcl spotted at "' + m.words[n].text + '"', show) + rel = m.words[n].text + head = phrases("", -1, -1, "", "", "", "", "") + tail = find_args( + m, + n, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ["advcl"], + ], + argshow, + ) + parent = m.parent(n) + ext_found = False + for ext in extraction_queue: # checking previous extractions + if parent.text in ext: # parent exists in previous extractions, + if ( + m.words[n].text not in ext + ): # but the advcl node on which you are standing must not exist in that extraction + ext_found = ext + break + if ext_found: + head.text = ext_found[2] + " " + ext_found[1] # old_predicate + old_rel + else: + head = find_args( + m, + n, + [ + ["subj"], + ["comp"], + ["obj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + + if head.text and tail.text: + extraction_queue.append([head.text, rel, tail.text]) + pp("Extraction obtained are\n", show) + pp(extraction_queue[-1], show) + else: + if head.text: + head.state = "done" + pp("This head (" + head.text + ") is done", show) + + elif "acl" == str(m.words[n].deprel) or "acl:relcl" == str(m.words[n].deprel): + # the node on which you are standing modifies the predicate/tail (generally) + pp('acl spotted at "' + m.words[n].text + '"', show) + rel = m.words[n].text + tail = find_args( + m, + n, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + parent = m.parent(n) + ext_found = False + for ext in extraction_queue: + if parent.text in ext and m.words[n].text not in ext: + ext_found = ext + break + if ext_found: + pp("Previous extraction contains its parent", show) + head = closest_phrase( + m, rel, [ext_found[0], ext_found[2]] + ) # ext_found[0] is old_head, and ext_found[2] is old_tail + else: + pp( + "Parent not found in previous extraction. Let us make parent as head only.", + show, + ) + head = parent.text + + if head and tail.text: + extraction_queue.append([head, rel, tail.text]) + pp("Extraction obtained are\n", show) + pp(extraction_queue[-1], show) + else: + if tail.text: + tail.state = "done" + pp("This head (" + tail.text + ") is done", show) + + elif ( + "conj" == str(m.words[n].deprel) + and m.words[n].head != 0 + and if_any_in(arg_deprels, str(m.parent(n).deprel)) + and m.words[n].state != "conj done" + and m.words[n].state != "PRON done" + ): + pp("conj is seen representing a list", show) + ext_found = False + for ext in extraction_queue: + if m.parent(n).text == ext[0]: + head = m.words[n].text + rel = ext[1] + tail = ext[2] + ext_found = True + elif m.parent(n).text == ext[2]: + head = ext[0] + rel = ext[1] + tail = m.words[n].text + ext_found = True + m.words[n].state = "conj done" + if ext_found: + extraction_queue.append([head, rel, tail]) + pp("Extraction obtained are\n", show) + pp(extraction_queue[-1], show) + else: + pp( + "Its parent <" + + m.parent(n).text + + "> is not present in any previous extractions", + show, + ) + + else: + # action verb found + if is_clausal_node(m, n) and ( + m.words[n].state != "PRON done" and m.words[n].state != "completely done" + ): # PRON is pos tag for Pronoun + # entire clause exists in the node + pp(m.words[n].text + "<-- This node contains a clause within itself", show) + head, rel, tail = clausal_node(m, n) + extraction_queue.append([head, rel, tail]) + pp("here Extraction obtained are", show) + pp(extraction_queue[-1], show) + m.words[n].state = "PRON done" + # m.words[n].upos = m.words[n].upos.replace('PRON','pron') + else: + # here we take the phrase (on which you are standing on) as a relation + pp("I am at node=" + m.words[n].text, show) + rel = m.words[n].text + head = find_args( + m, + n, + [ + ["subj"], + ["comp"], + ["obj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + tail = phrases( + "", -1, -1, "", "", "", "", "" + ) # <------------------ creating a dummy tail + if ( + (str(head.deprel) == "nmod" or str(head.deprel) == "appos") + and "done" + in m.words[ + n + ].state # nmod merging step i.e. nmod will be treated "is-a" relationship + and "AUX" + not in m.words[n].upos # but there should not be an AUX in its pos tag + and not ( + str(m.words[n].deprel) == "nmod" + and m.words[n].head != 0 + and "AUX" in m.parent(n).upos + ) + ): # if it itself is an nmod, then there should not be an AUX in its parent (if parent exists) + pp( + "Head=" + + head.text + + " ---> It is a nmod that is an attribute of <" + + rel + + ">", + show, + ) + + # sibl = m.siblings(head.id-1) + # pp('It has '+str(len(sibl))+' siblings',show) + def find_nearest_aux(m, n, is_a): + # pp('First we search aux in the siblings of <'+rel+'>') + return is_a + + aux_found = find_nearest_aux(m, n, is_a) # is_a #'है' + # for sib in sibl: + # if 'AUX' in sib.upos: + # aux_found = sib.text + # break + # # else: + # # print('*'*100, sib.text) + aux_found = "property" if is_a_override else aux_found + tail = head + head = m.words[n] + rel = aux_found + else: + # so we are sure that it is not a appositive relationship, let us move on now + pp("Head=" + head.text, show) + tail = find_args( + m, + n, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if ( + head.text + and not tail.text + and str(m.words[n].deprel) in action_relations + ): # we have an head but tail is missing: part 1 + pp("Empty tail found. Let us search in the head only.", show) + tail = find_args( + m, + head.id - 1, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) # agar tail parent ke paas se ni mila, to head ke paas shayad mil jaye + if not tail.text: + pp("Still no tail found", show) + if ( + head.text and not tail.text + ): # # we have an head but tail is missing: part 2 + if is_clausal_node( + m, m.words[n].head - 1 + ): # check if its parent is a clausal node or not + pp( + "Since the parent of <" + + m.words[n].text + + "> is a clausal node", + show, + ) + pp("\t let us pick its relation and tail", show) + a, b, c = clausal_node(m, m.words[n].head - 1) + tail = head + head = phrases( + c, -1, -1, "", "", "", "", "" + ) # <---------notice this is not a dummy, head,text will be c + rel = b + elif m.words[n].head != 0: + pp( + "Since parent of <" + + m.words[n].text + + "> exists, let us make it tail only", + show, + ) + tail = m.parent(n) + else: + pp("Looking into previous extractions", show) + parent = m.words[n] + ext_found = False + for ext in extraction_queue: + if parent.text in ext and head.text not in ext: + ext_found = ext + # break + if ext_found: + pp("Found in previous extractions", show) + tail.text = closest_phrase( + m, head.text, [ext_found[0], ext_found[2]] + ) + else: + pp("Still no tail found", show) + pp("Let us check for advcl etc etc", show) + tail = phrases( + "", -1, -1, "", "", "", "", "" + ) # <------------------ creating a dummy tail + t1 = find_args( + m, n, [["advcl"], ["acl"], ["acl:relcl"]], argshow + ) + if not t1.text: + pp("Even now, it is not able to find any tail", show) + else: + pp('Found an advcl = "' + t1.text + '"', show) + t2 = find_args( + m, + t1.id - 1, + [ + ["obj"], + ["comp"], + ["subj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + ) + if t2.text: + pp( + 'Found an argument "' + t2.text + '" with it', + show, + ) + tail.text = t2.text + " " + t1.text + else: + tail = t1 + if tail.text: + pp("Tail=" + tail.text, show) + if head.text and tail.text: + extraction_queue.append([head.text, rel, tail.text]) + pp("Extraction is", show) + pp(extraction_queue[-1], show) + m.words[n].state = "done" if not m.words[n].state else m.words[n].state + else: + head.state = "done" if head.text != "" else "" + # print(head.text) + # input('wait') + + # input('this') + if running_no >= 300: + raise "Infinite loop it seems" + + pp( + "Checking for leftovers...", show + ) # by leftovers, here we mean those nodes, that can be a valid or a tail + leftover = find_args( + m, + n, + [ + ["subj"], + ["comp"], + ["obj"], + ["obl", obl_useful], + ["nmod", nmod_useful], + ["appos"], + ["nummod"], + ], + argshow, + stateless=True, + ) + if leftover.text: #'done' not in c.state and if_any_in(arg_deprels,c.deprel): + pp( + 'There are still some potential entities left in "' + m.words[n].text + '"', + show, + ) + pp('\tLike "' + leftover.text + '"', show) + extraction_queue = extract( + m, n, extraction_queue, is_a, running_no + 1, show, argshow, is_a_override + ) # <-------- calling recursive + m.words[n].state = "completely done" + pp('No leftovers found for "' + m.words[n].text + '"', show) + + for c in m.children(n): # let us move to its children now + if m.children(c.id - 1) or "conj" == str( + c.deprel + ): # if that child is not a leaf node or if that child has a conj deprel + pp("Looking at the child <" + c.text + "> now", show) + extraction_queue = extract( + m, + c.id - 1, + extraction_queue, + is_a, + running_no + 1, + show, + argshow, + is_a_override, + ) # <-------- calling recursive + else: + c.state = "leaf done" + return extraction_queue + + +def load_stanza_model(lang, use_gpu=False): + # 1 = will not download anything, probably resulting in failure if the resources aren't already in place. + # 2 = will reuse the existing resources.json and models, but will download any missing models. + # 3 = will download a new resources.json and will overwrite any out of date models. + try: + # nlp = stanza.Pipeline(lang,dir=stanza_path+'/'+stanza_version+'/',download_method=2,use_gpu=use_gpu) #stanza.Pipeline(lang, use_gpu=use_gpu) + nlp = stanza.Pipeline( + lang, use_gpu=use_gpu + ) # stanza.Pipeline(lang, use_gpu=use_gpu) + except: + stanza.download( + lang, dir=stanza_path + "/" + stanza_version + "/" + ) # or model_dir=stanza_path+'/'+stanza_version+'/' + nlp = stanza.Pipeline( + lang, + dir=stanza_path + "/" + stanza_version + "/", + download_method=2, + use_gpu=use_gpu, + ) # stanza.Pipeline(lang, use_gpu=use_gpu) + return nlp diff --git a/GSoC25_H/src/wikipedia/reader.py b/GSoC25_H/src/wikipedia/reader.py new file mode 100644 index 0000000..14ef435 --- /dev/null +++ b/GSoC25_H/src/wikipedia/reader.py @@ -0,0 +1,105 @@ +from SPARQLWrapper import SPARQLWrapper, JSON +import wikipedia + +# Create a SPARQLWrapper object with the DBpedia SPARQL endpoint URL +sparql = SPARQLWrapper("http://dbpedia.org/sparql") + + +def get_abstract(sparql_wrapper, uri): + query = f""" + SELECT ?abstract + WHERE {{ + ?abstract . + FILTER (LANG(?abstract) = 'en') + }} + """ + sparql_wrapper.setQuery(query) + sparql_wrapper.setReturnFormat(JSON) + results = sparql_wrapper.query().convert() + return results["results"]["bindings"][0]["abstract"]["value"] + + +def get_text_of_wiki_page(article_name: str): + """Given an article name(need not be exact title of page), + return the textual content of the wikipedia article. + We do a search for the articles and select the top-1 result, in case + where the article name is not the exact title. + + Args: + article_name (str): Name of a wikipedia article + + Returns: + str: The text of that article. + """ + wikipedia.set_lang("hi") + article_name_result = wikipedia.page( + wikipedia.search(article_name)[0], auto_suggest=False + ) + article_name_content = article_name_result.content + article_name_content.replace("\n", "").replace("\t", "") + return article_name_content + + +def get_wikiPageWikiLink_entities(entity, sparql_wrapper=sparql): + """A function to fetch all entities connected to the given entity + by the dbo:wikiPageWikiLink predicate. + + Args: + entity (_type_): The source entity, the wiki page we are parsing. + Example --> . + sparql_wrapper : The SPARQL endpoint. Defaults to sparql. + + Returns: List of entities. + """ + + query = f""" + PREFIX dbo: + + SELECT ?connected_entities + WHERE{{ + {entity} dbo:wikiPageWikiLink ?connected_entities . + }} + """ + sparql_wrapper.setQuery(query) + sparql_wrapper.setReturnFormat(JSON) + results = sparql_wrapper.query().convert() + entities = [ + r["connected_entities"]["value"] for r in results["results"]["bindings"] + ] + return entities + + +def get_only_wikiPageWikiLink(entity, sparql_wrapper=sparql): + """For a given entity(the current wiki page), returns all entities + that are connected with only the dbo:wikiPageWikiLink predicate and no + other predicate. + Args: + entity : The source entity, the current wiki page. + Example --> . + sparql_wrapper : The SPARQL endpoint. Defaults to sparql. + + Returns: List of entities. + """ + + query = f""" + PREFIX dbo: + + SELECT ?o + WHERE {{ + {{ + SELECT ?o + WHERE {{ + {entity} dbo:wikiPageWikiLink ?o . + }} + }} + MINUS + {{ + {entity} ?p ?o . + FILTER (?p != dbo:wikiPageWikiLink) + }} + }} + """ + sparql_wrapper.setQuery(query) + sparql_wrapper.setReturnFormat(JSON) + results = sparql_wrapper.query().convert() + return results["results"]["bindings"] diff --git a/GSoC25_H/src/wikipedia/test.py b/GSoC25_H/src/wikipedia/test.py new file mode 100644 index 0000000..456dc02 --- /dev/null +++ b/GSoC25_H/src/wikipedia/test.py @@ -0,0 +1,82 @@ +from src.reader import get_text_of_wiki_page +from fastcoref import spacy_component +import stanza +import re + +# from codeswitch.codeswitch import NER + + +# stanza initialization +# stanza.download("hi") +nlp = stanza.Pipeline(lang="hi", processors="tokenize,pos") +# ner = NER("hin-eng") + + +article = "ब्रिटिश_कोलम्बिया" +wiki_article = get_text_of_wiki_page(article) + +# Tokenization +doc = nlp(wiki_article) +# doc = nlp("मुझसे पूछा िक 'आप िकसका नाम लेना चाहेंगी', तब मैंने अपना नम ¶लय।") +# result = ner.tag("मुझसे पूछा िक 'आप िकसका नाम लेना चाहेंगी', तब मैंने अपना नम ¶लय।") +# print(f"====== Sentence {i+1} tokens =======") +# print( +# *[f"id: {token.id}\ttext: {token.text}" for token in sentence.tokens], sep="\n" +# ) +# if i == 5: +# break + +# Coreference resolution + +# print( +# *[ +# f'word: {word.text}\tupos: {word.upos}\txpos: {word.xpos}\tfeats: {word.feats.split("|") if word.feats else "_"}' +# for word in sentence.words +# ], +# sep="\n", +# ) + +# for i, sentence in enumerate(doc.sentences): +# # print(f"====== Sentence {i+1} tokens =======") +# print( +# *[ +# f"[{word.text}](#)" +# if (word.upos in ["PRON", "PROPN"]) +# or (word.upos == "DET" and word.xpos == "DEM") +# else word.text +# for word in sentence.words +# ], +# end="\n===\n", +# ) +# if i == 5: +# break + + +def extract_links_from_markdown(content): + link_pattern = r"\[(.*?)\]\(#(.*?)\)" + matches = re.findall(link_pattern, content) + + links = {} + for mention, link in matches: + if link not in links: + links[link] = [mention] + else: + links[link].append(mention) + + return links + + +output = """ +[ब्रिटिश](#1) [कोलम्बिया](#1) , ( [अंग्रेज़ी](#1) : [british](#1) [columbia](#1) , [फ्राँसीसी:](#1) a [colombi](#1) [e-britannique](#1) ) [कनाडा](#2) का एक प्रान्त है [जो](#2) [कनाडा](#2) के [प्रशान्त](#3) [महासागर](#3) से लगते पश्चिमी तट पर स्थित है । + +[यह](#2) [कनाडा](#2) का तीसरा सबसे बड़ा प्रान्त है [जिसका](#2) क्षेत्रफल ९,४४,७३५ वर्ग किमी है । + +[२००६](#4) की जनगणना के अनुसार [इस](#2) प्रान्त की कुल जनसंख्या ४१,१३,४८७ थी । + +[इस](#2) प्रान्त की राजधानी [विक्टोरिया](#5) है और राज्य का सबसे बड़ा नगर [वैंकूवर](#6) है । + +[इसी](#6) नगर में [ब्रिटिश](#1) [कोलम्बिया](#1) की लगभग आधी जनसंख्या निवास करती है ( २० लाख ) । + +अन्य बड़े नगर हैं : [केलोव्ना](#7) , [अबोट्स्फोर्ड](#8) , [कैम्लूप्स](#9) , [नानाइमो](#10) और [प्रिन्स](#11) [जॉर्ज।](#11) +""" +print(extract_links_from_markdown(output))