-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e656642
commit 4c4eaa3
Showing
31 changed files
with
722 additions
and
652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
@startuml | ||
|
||
class Token <<serializable>> { | ||
string txt | ||
string gloss | ||
bool is_delimiter | ||
} | ||
|
||
class Paragraph <<serializable>> { | ||
string pstate | ||
|
||
Token[] tokens | ||
bool is_delimiter | ||
char[] token_delimiters | ||
|
||
<strike>string annotator_info</strike> | ||
string original_text | ||
|
||
AnnotatorInfo annotator_info_obj | ||
} | ||
Paragraph o-left- Token | ||
|
||
class Corpus <<serializable>> { | ||
Paragraph[] paragraphs | ||
string[] paragraph_delimiters | ||
|
||
string orignal_text | ||
int[] p_div_locs | ||
<strike>string[] task_ids</strike> | ||
} | ||
Corpus o-left- Paragraph | ||
|
||
enum pstate <<quasi>> ##[dashed] { | ||
"PLAIN" | ||
"DIVIDED" | ||
"PARSED" | ||
"ANNOTATED" | ||
} | ||
Paragraph *-- pstate | ||
note right of pstate::"ANNOTATED" | ||
default fallback | ||
end note | ||
|
||
class AnnotatorInfo <<serializable>> { | ||
string annotator_name | ||
string lang_from | ||
string lang_to | ||
} | ||
Paragraph *-- AnnotatorInfo | ||
|
||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.