How to detect check boxes as boolean values with the Machine Learning Extractor?
Issue Description:
ML Extractor is extracting the check boxes as ☐ and ☒ when field type is set to Text in taxonomy, but does not set them to True or False automatically when set to Boolean, similar to how Form Extractor does.
ML Extractor does not have interpretation defined for converting the checkboxes (☐ and ☒) to boolean.
Root Cause: ML extractor does not have Boolean interpretation defined for checkboxes.
Resolution:
As a workaround, the field can be extracted as Text and as part of post-processing after extraction, compare if the extracted text is equal to ☐ or ☒, and then change it to True or False using a simple if statement.