Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Parameter
    summaryif used with automatic pipeline creation, it assigns the tag to which the recognizer belongs to.
    defaultmatch
    nametagWith
  • Parameter
    summaryProbability threshold. Will only tag sentences that match better or equal to prob.
    default0.95
    nameprob
    typedouble
  • Parameter
    summaryFile location of the model.
    namemodel
  • Parameter
    summaryList of Tags used to normalize the text
    namenormalize
    typestring array
    • For example, let's say you want to normalize all different numbers in the text. You can create a "Numeric" tag using the numeric recognizer, that way each different number will me normalized to "{Numeric}".


Saga_config_stage
boundaryFlagstext block split, sentence split
stageNamePredictorStage
requiredFlagstoken, semantic tag
skipFlagsskip
"tagWith": "component", //NAME-OF-OUTPUT-TAG
"prob": "0.95", 
"model": ".\model-file.bin",
"normalize": ["Numeric"]

Example Output

Saga_graph
V---------------------------------[ONE MAIN ROTOR BLADE CONTACTED A WIRE WHILE GOING THROUGH MOUNTAINS ON TRAFFIC WATCH.]---------------------------------V 
 ^-------------------------------[ONE MAIN ROTOR BLADE CONTACTED A WIRE WHILE GOING THROUGH MOUNTAINS ON TRAFFIC WATCH]-------------------------------V-[]-^ 
 ^-[ONE]-V-[MAIN]-V-----[ROTOR]-----V-[BLADE]-V-[CONTACTED]-V-[A]-V-[WIRE]-V-[WHILE]-V-[GOING]-V-[THROUGH]-V-[MOUNTAINS]-V-[ON]-V-[TRAFFIC]-V-[WATCH]-^      
 ^-[one]-^-[main]-^-----[rotor]-----^-[blade]-^-[contacted]-^-[a]-^-[wire]-^-[while]-^-[going]-^-[through]-^-[mountains]-^-[on]-^-[traffic]-^-[watch]-^      
                  ^--[{component}]--^

...