-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OPT20014: Create Structure Annotations for Chonjuk Data #30
Comments
chonjuk data chosen |
The Pecha Parser is designed with the following key principles in mind:
The parser operates with the following logic:
|
Read annotations and its annotation data in stamfrom stam import AnnotationStore
stam_obj = AnnotationStore(file="annotation_store_path_str.json")
anns = list(stam_obj.annotations())
ann_data = []
for ann in anns:
curr_data = {}
curr_data["content"] = str(ann)
for data in ann:
curr_data[data.key().id()] = str(data.value())
ann_data.append(curr_data)
print(ann_data) |
Issues with the new
|
I have created an issue regarding STAM here. |
Framework Design1.Text Processing:
2.Condition Check:
3: Modular Design:
4:Custom Pipeline:
|
For metadata
For Translation
For Root and Commentary
For OPF
|
Description
We are planning to implement DTS Specifications to develop a text api. One of the key endpoints is the Navigation endpoint, which helps retrieve specific text by allowing users to navigate through the content. To ensure proper functionality and testing of this feature, we are preparing structured annotations for the Chonjuk dataset.
Requirement
Chonjuk Data and Annotation Illustration
Expected Output
An OPF/Pecha for Chonjuk with three levels of structural annotations.
Implementation Steps
annotation on annotation
The text was updated successfully, but these errors were encountered: