66a06524eba0b22d14204baeb2ca6d4c9db7d1d0,scripts/semantic_types.py,,convert_coq_to_nltk_type,#Any#,245

Before Change


            type_ids.append("t")
        elif type_item.startswith("Event"):
            type_ids.append("v")
        elif type_item != "->":
            raise(ValueError("Invalid type name: %s in %s" % (type_item, coq_type)))
    assert len(type_ids) > 0
    if len(type_ids) == 1:
        nltk_type_str = type_ids[0]
    else:

After Change


        "Entity", "e").replace(
        "Prop", "t").replace(
        "Event", "v")
    if not nltk_type_str.startswith("(") or not nltk_type_str.endswith("("):
        nltk_type_str = "(" + nltk_type_str + ")"
    // Add pre-terminals (necessary for NLTK, if we convert to CNF).
    nltk_type_str = re.sub(r"([evt])", r"(N \1)", nltk_type_str)
    nltk_type_tree = tree_or_string(nltk_type_str)
    nltk_type_tree.chomsky_normal_form(factor="right")
    nltk_type_str = remove_labels_and_unaries(nltk_type_tree).replace(
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: mynlp/ccg2lambda
Commit Name: 66a06524eba0b22d14204baeb2ca6d4c9db7d1d0
Time: 2017-05-12
Author: pascual@nii.ac.jp
File Name: scripts/semantic_types.py
Class Name:
Method Name: convert_coq_to_nltk_type


Project Name: senarvi/theanolm
Commit Name: beac4348c327e6a104f709fe3180887bbfe36a2f
Time: 2016-12-22
Author: seppo.git@marjaniemi.com
File Name: theanolm/parameters.py
Class Name: Parameters
Method Name: add


Project Name: chartbeat-labs/textacy
Commit Name: 0f71b788558b8dbd8acec33d1ea5dba46848d2b8
Time: 2017-12-02
Author: burton@chartbeat.com
File Name: textacy/doc.py
Class Name: Doc
Method Name: __init__