File size: 2,545 Bytes
618fdc2 ec0918d 618fdc2 ec0918d 618fdc2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# Copyright Jiaqi Liu
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
from database.database_clients import get_node_label_attribute_key
from german_parser import get_declension_attributes
from vocabulary_parser import GERMAN
from vocabulary_parser import get_attributes
from vocabulary_parser import get_definitions
from vocabulary_parser import get_inferred_links
from vocabulary_parser import get_vocabulary
def generate_dataset(yaml_path: str, dataset_path: str):
"""
Generates a Hugging Face Dataset from https://github.com/QubitPi/wilhelm-vocabulary/blob/master/german.yaml
:param yaml_path: The absolute or relative path (to the invoking script) to the YAML file above
:param dataset_path: The absolute or relative path (to the invoking script) to the generated dataset file
"""
vocabulary = get_vocabulary(yaml_path)
label_key = get_node_label_attribute_key()
all_nodes = {}
with open(dataset_path, "w") as graph:
for word in vocabulary:
term = word["term"]
attributes = get_attributes(word, GERMAN, label_key, get_declension_attributes)
source_node = attributes
all_nodes[term] = source_node
for definition_with_predicate in get_definitions(word):
predicate = definition_with_predicate[0]
definition = definition_with_predicate[1]
target_node = {label_key: definition}
label = {label_key: predicate if predicate else "definition"}
graph.write(json.dumps({"source": source_node, "target": target_node, label_key: label}))
graph.write("\n")
for link in get_inferred_links(vocabulary, label_key, get_declension_attributes):
source_node = all_nodes[link["source_label"]]
target_node = all_nodes[link["target_label"]]
label = link["attributes"]
graph.write(json.dumps({"source": source_node, "target": target_node, "link": label}))
graph.write("\n")
|