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
The node source in wide mode has a column for each predicate. With language strings, each language of each predicate requires its own column, which needs to be known upfront. Configuration could provide a set of languages for those predicates, but this is not very handy. Zero service should tell us for each predicate, which languages exist for predicates with @lang directive. From this, we can derive the output DataFrame schema and configure the encoder.
The text was updated successfully, but these errors were encountered:
Alternatively, the type of a column with @lang in wide mode could be a Map[String, T] where the key is the language tag mapping to the respective value of type T. This would not require any upfront information on existing languages, and the table does not explode in width and get sparse.
The node source in wide mode has a column for each predicate. With language strings, each language of each predicate requires its own column, which needs to be known upfront. Configuration could provide a set of languages for those predicates, but this is not very handy. Zero service should tell us for each predicate, which languages exist for predicates with
@lang
directive. From this, we can derive the output DataFrame schema and configure the encoder.The text was updated successfully, but these errors were encountered: