How can we extract entities from strings, can we have some examples? #914
-
Example for entities:
|
Beta Was this translation helpful? Give feedback.
Answered by
spencermountain
Apr 20, 2022
Replies: 1 comment 1 reply
-
hi, this is covered in the docs, here looks like you also would dates and numbers: let m = doc.topics()
m = m.concat(doc.numbers())
m = m.concat(doc.dates())
//and so forth..
m.debug() cheers |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
spencermountain
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi, this is covered in the docs, here
https://observablehq.com/@spencermountain/topics-named-entity-recognition
looks like you also would dates and numbers:
cheers