Adam Pocock

Results 375 comments of Adam Pocock

It's the last argument when constructing an `ONNXExternalModel` - https://tribuo.org/learn/4.3/javadoc/org/tribuo/interop/onnx/ONNXExternalModel.html#createOnnxModel(org.tribuo.OutputFactory,java.util.Map,java.util.Map,org.tribuo.interop.onnx.ExampleTransformer,org.tribuo.interop.onnx.OutputTransformer,ai.onnxruntime.OrtSession.SessionOptions,java.nio.file.Path,java.lang.String).

The model exposes a `predict` function which accepts `Iterable` or `Example`, returning `Prediction` which contains the predicted values and any confidence scores produced by the model.

Not specifically, but you can see how the examples are built in all the `DataSource` implementations, e.g. this one for loading in LibSVM format data - https://github.com/oracle/tribuo/blob/main/Core/src/main/java/org/tribuo/datasource/LibSVMDataSource.java#L348.

We have trained XGBoost models in Tribuo with hundreds of thousands of records, though we used a fairly large machine to do so. Batch loading from the SQL DB isn't...

Not currently. You can format the features into windows and perform regular classification or regression using our existing models, but we have no plans to add explicit time series support...

Thanks for the contribution. Once you've sorted out the OCA I can go through and review this, but I'm not allowed to review it until the OCA check passes.

> I signed the OCA form 4 days ago. And now I am waiting for the confirmation. Ok, thanks. Once it's gone through the system we can get going with...

It looks like there were some issues with the OCA you submitted, could you check the status of it and fix the issues it describes?

Not easily from the selected feature dataset as it's stored row wise. The current information theoretic feature selection dataset converts the data into a columnar storage format before running the...

To run the tutorials you need to compile Tribuo, then copy the jar files listed in the first code block into the tutorials folder. Alternatively if you aren't behind a...