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
Transformer and the associated TransformerAsOperation classes serve a useful role in abstracting over the construction of transformers. SDK users can not build against them because the abstract method Transformer._transform is marked as private[deeplang]. Would the project consider agging it and _transformSchema as protected instead?
The text was updated successfully, but these errors were encountered:
Turns out that just changing the private[deeplang] to protected doesn't work, because TransformerWrapper and StringIndexingWrapperModel call the _transform and _transformSchema methods directly on the entities they wrap. As best I know, there's no way in Scala to say access is either protected or private[xyz].
Transformer
and the associatedTransformerAsOperation
classes serve a useful role in abstracting over the construction of transformers. SDK users can not build against them because the abstract methodTransformer._transform
is marked asprivate[deeplang]
. Would the project consider agging it and_transformSchema
asprotected
instead?The text was updated successfully, but these errors were encountered: