package textrazor
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Analysis.Options
Module for analysis options.
Available classifiers.
Available extractors.
type t = {
allow_overlap : bool;
classifiers : classifier list;
cleanup_mode : cleanup_mode option;
dbpedia_types : string list;
extractors : extractor list;
freebase_types : string list;
language : string option;
return_cleaned_text : bool;
return_raw_text : bool;
user_agent : string option;
}
Data structure for analysis options.
val default : t
A sensible default for analysis options.
You can use this value an customize it with functional updates. {default with key1 = value1; key2 = value2}
val to_params : t -> (string * string list) list
Gets the POST params for the given options.