Adam Pocock

Results 375 comments of Adam Pocock

In Tribuo 4.0.X you can use [AggregateDataSource](https://tribuo.org/learn/4.0/javadoc/org/tribuo/datasource/AggregateDataSource.html) to aggregate across files if you're happy with it round-robining the iterators and that the provenance won't be able to produce a configuration....

The PR is out for the short term work which extends `AggregateDataSource` and adds `AggregateConfigurableDataSource`. Once it's merged you'll be able to put a collection of `JsonDataSource`s into a config...

We discuss our compatibility guidance in the [FAQ](https://github.com/oracle/tribuo/blob/main/docs/FAQs.md#whats-the-versioning-strategy--compatibility-plan). Basically we guarantee that serialized models will be upwards compatible within the major version (e.g. a model trained in 4.0 will work...

We've started landing ONNX export support in preparation for the 4.2 release - https://github.com/oracle/tribuo/pull/154. Initially this will cover a subset of Tribuo's models, and probably not support arbitrary recursion over...

Our current focus is to develop the documentation for people who are looking for an ML library on the Java platform, and have some understanding of both Java and ML....

Note to contribute to Tribuo you'll need to sign the Oracle Contributors Agreement before we can look at your PR. There are instructions in [CONTRIBUTING.md](https://github.com/oracle/tribuo/blob/main/CONTRIBUTING.md).

I'm a bit confused, because `CSVReaderHeaderAware` is from `OpenCSV`, it's not a Tribuo class. We have a `CSVReader` class, but that's very simple, if you want to use the row...

Ah ok. The map named `regexMappingProcessors` is being fed into the `RowProcessor` where it's expecting a map with concrete column names. To use the regex expansion you need to use...

Is the issue is that at prediction time some examples which are far from the training data are being assigned to a non-noise cluster? Or are they being assigned to...

I don't think XGBoost exposes a programmatic callback that you could use to get that kind of progress bar, and Tribuo generally doesn't have any hooks for its models during...