James Baker
James Baker
As of Baleen 2.4, the required inputs and produced outputs of each annotator are declared in order to the pipeline orderers to function. It would be beneficial if this information...
Can we add a parameter to the affected annotators (any that use DateTimeFormatter I believe) to allow the configuration of the pivot point?
For pipelines that take longer to initialise, users get a 404 error after pipeline creation as Baleen tries to redirect them to the pipeline page before the pipeline is ready....
Currently, you can't create maps (objects) via the UI when configuring components. This is an issue for some components, such as the Machine Translation setting, which requires a map of...
Fixes issue #467 by looping through all parent interfaces and superclasses, rather than just direct parents. Includes tests for looping logic. Replaces #468 with version that meets code standards
I have the following class setup ``` interface MyInterfaceA {...} interface MyInterfaceB extends MyInterfaceA {...} class Foo implements MyInterfaceA {...} class Bar implements MyInterfaceB {...} class MySerializer implements JsonbSerializer {...}...