Package org.dbpedia.spotlight.topical

Examples of org.dbpedia.spotlight.topical.TopicalClassifier


    }

    @GET
    @Produces( MediaType.APPLICATION_JSON )
    public Response getJSON(@DefaultValue(SpotlightConfiguration.DEFAULT_TEXT) @QueryParam("text") String text) {
        TopicalClassifier classifier = TopicalServer.getClassifier();
        Text textObj = new Text(text);
        Tuple2<Topic,Object>[] result = classifier.getPredictions(textObj);

        return ok(TopicalOutputSerializer.topicTagsAsJson(textObj, result).toString());
    }
View Full Code Here


    @Produces(MediaType.APPLICATION_JSON)
    public Response postJSON(
            @DefaultValue(SpotlightConfiguration.DEFAULT_TEXT) @FormParam("text") String text,
            @Context HttpServletRequest request
    ) {
        TopicalClassifier classifier = TopicalServer.getClassifier();
        Text textObj = new Text(text);
        Tuple2<Topic,Object>[] result = classifier.getPredictions(textObj);

        return ok(TopicalOutputSerializer.topicTagsAsJson(textObj, result).toString());
    }
View Full Code Here

    }

    @GET
    @Produces( MediaType.APPLICATION_XML )
    public Response getXML(@DefaultValue(SpotlightConfiguration.DEFAULT_TEXT) @QueryParam("text") String text) {
        TopicalClassifier classifier = TopicalServer.getClassifier();
        Text textObj = new Text(text);
        Tuple2<Topic,Object>[] result = classifier.getPredictions(textObj);

        return ok(TopicalOutputSerializer.topicTagsAsXml(textObj, result).toString());
    }
View Full Code Here

    @Produces(MediaType.APPLICATION_XML)
    public Response postXML(
            @DefaultValue(SpotlightConfiguration.DEFAULT_TEXT) @FormParam("text") String text,
            @Context HttpServletRequest request
    ) {
        TopicalClassifier classifier = TopicalServer.getClassifier();
        Text textObj = new Text(text);
        Tuple2<Topic,Object>[] result = classifier.getPredictions(textObj);

        return ok(TopicalOutputSerializer.topicTagsAsXml(textObj, result).toString());
    }
View Full Code Here

TOP

Related Classes of org.dbpedia.spotlight.topical.TopicalClassifier

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.