Math

How can I set up a recognizer to only recognize the content of mathematical formulas and not other recognitions?

How can I set up a recognizer to only recognize the content of mathematical formulas and not other recognitions? 
{
  "raw-content": {
    "configuration": {
      "analyzer": {
        "bundle": "raw-content2",
        "name": "standard"
      },
      "math": {
        "bundle": "math2",
        "name": "standard"
      }
    },
    "classification": {
      "types": ["text", "drawing",  "math"]
    },
    "recognition": {
      "types": [   "text", "math" ]
    }
  },
  "math": {
    "solver": {
      "options": "algebraic",
      "angle-unit": "rad",
      "number-format": "decimal",
      "numerical-computation": [
        "at-right-of-equal-sign",
        "at-question-mark"
      ],
      "enable-syntactic-correction": false,
      "display-implicit-multiply": false,
      "auto-variable-management": {
        "enable": true,
        "scoping-policy": "closest"
      }
    }
  },

  "export": {
    "jiix": {
      "text": {
        "chars": true,
        "words": true
      },
      "bounding-box": true,
      "strokes": false,
      "glyphs": false,
      "primitives": false,
      "ids": true,
      "math": {
        "result": true
      }
    }
  }}

 

How do I configure the part_conf and viewmodel code level?
Login or Signup to post a comment
  • Support
  • Forums
  • Math
  • How can I set up a recognizer to only recognize the content of mathematical formulas and not other recognitions?