You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invalid SGML can break the spreadsheet conversion, for example:
<lb>ⲧⲱⲛ_·>_ϫⲉ|ⲟⲩ|ⲣⲱ</lb>
Additionally, some NLP components expect specific constraints on data. For Coptic Scriptorium, element content (not inside attributes) may not contain - or |, since the NLP chain is expecting no pre-tokenization. The latter problem could potentially be solved in the NLP tools, but users would be unaware of what is probably an error.
Possible solutions:
Validate SGML to rule out unescaped >, < in element content (probably in JS in client, maybe highlighting in CodeMirror?)
Make an easily configurable script that also checks for specific characters in element content, configurable per instance, or via the validations table
The text was updated successfully, but these errors were encountered:
Invalid SGML can break the spreadsheet conversion, for example:
<lb>ⲧⲱⲛ_·>_ϫⲉ|ⲟⲩ|ⲣⲱ</lb>
Additionally, some NLP components expect specific constraints on data. For Coptic Scriptorium, element content (not inside attributes) may not contain
-
or|
, since the NLP chain is expecting no pre-tokenization. The latter problem could potentially be solved in the NLP tools, but users would be unaware of what is probably an error.Possible solutions:
The text was updated successfully, but these errors were encountered: