ba10671f4d99fbcf52550571ba787e6ca1b8ac00,deeppavlov/models/kbqa/wiki_parser.py,WikiParser,search,#WikiParser#Any#Any#,167

Before Change


            if obj:
                direction = "backw"
            subj = subj.split("/")[-1]
            triplets = self.document.get(subj, {}).get(direction, [])
            triplets = [[subj, triplet[0], obj] for triplet in triplets for obj in triplet[1:]]
            if rel:
                if rel == self.description_rel:

After Change


            if subj:
                subj, triplets = self.find_triplets(subj, "forw")
                triplets = [[subj, triplet[0], obj] for triplet in triplets for obj in triplet[1:]]
            if obj:
                obj, triplets = self.find_triplets(obj, "backw")
                triplets = [[subj, triplet[0], obj] for triplet in triplets for subj in triplet[1:]]
            if rel:
                if rel == self.description_rel:
                    triplets = [triplet for triplet in triplets if triplet[1] == "descr_en"]
                else:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: deepmipt/DeepPavlov
Commit Name: ba10671f4d99fbcf52550571ba787e6ca1b8ac00
Time: 2020-12-24
Author: dmitrij.euseew@yandex.ru
File Name: deeppavlov/models/kbqa/wiki_parser.py
Class Name: WikiParser
Method Name: search


Project Name: dmlc/gluon-nlp
Commit Name: 1e50a6606c5215e0dc28d016bb5f57bd668f47af
Time: 2019-06-06
Author: lausen@amazon.com
File Name: src/gluonnlp/vocab/bert.py
Class Name: BERTVocab
Method Name: from_json


Project Name: NifTK/NiftyNet
Commit Name: 1f5bd7028636e6320079fc785c4aca9eda51defa
Time: 2019-01-31
Author: wenqi.li@ucl.ac.uk
File Name: niftynet/utilities/util_common.py
Class Name:
Method Name: average_multi_opt_gradients