List of JSON's - Are not yet supported #1289
Answered
by
omri374
arulreddy
asked this question in
Requested features
-
@omri374 We are using BatchAnalyzerEngine to process single JSON object at a time. Do you have any plans to launch feature to support for processing "list of json" objects. |
Beta Was this translation helpful? Give feedback.
Answered by
omri374
Feb 12, 2024
Replies: 1 comment 3 replies
-
Hi, not anytime soon, but contributions are welcome. The reason why it is not supported is because we would like to leverage spaCy's pipe mechanism which runs the NER model in parallel, and having a list of jsons would require going over the list. Have you tried parsing the json a priori, and calling the BatchAnalayzerEngine on every json in a list? |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
arulreddy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, not anytime soon, but contributions are welcome. The reason why it is not supported is because we would like to leverage spaCy's pipe mechanism which runs the NER model in parallel, and having a list of jsons would require going over the list.
Have you tried parsing the json a priori, and calling the BatchAnalayzerEngine on every json in a list?