Package org.apache.stanbol.enhancer.topic.api.training

Examples of org.apache.stanbol.enhancer.topic.api.training.Example


                    Collection<Object> labelValues = result.getFieldValues(topicUrisField);
                    Collection<Object> textValues = result.getFieldValues(exampleTextField);
                    if (textValues == null) {
                        continue;
                    }
                    items.add(new Example(exampleId, labelValues, textValues));
                }
            }
        } catch (SolrServerException e) {
            String msg = String.format(
                "Error while fetching positive examples for topics ['%s'] on Solr Core '%s'.",
View Full Code Here

TOP

Related Classes of org.apache.stanbol.enhancer.topic.api.training.Example

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.