oracle / tribuo

Tribuo - A Java machine learning library
https://tribuo.org
Apache License 2.0
1.24k stars 172 forks source link

Load data from List obj in memory #349

Open hongchenme opened 10 months ago

hongchenme commented 10 months ago

Can I load data directly from a JAVA list object? I saw there are tutorials about loading data from persistent sources, but didn't find any example about how to convert a in-memory data, such as list or table, into Datasource in Java

Craigacp commented 10 months ago

If you have in memory data then you can use ListDataSource, along with a suitable function to convert your data into Example instances.