"include/composable_kernel/utility/Array.hpp" did not exist on "1cc683a3a3add570d4cde015fa7da7ac5fb87d4d"
Unverified Commit b48a1f08 authored by Manuel Romero's avatar Manuel Romero Committed by GitHub
Browse files

Add text shown in example of usage (#3464)

parent 99833a9c
...@@ -66,6 +66,8 @@ nlp_ner = pipeline( ...@@ -66,6 +66,8 @@ nlp_ner = pipeline(
{"use_fast": False} {"use_fast": False}
)) ))
text = 'Mis amigos están pensando viajar a Londres este verano'
nlp_ner(text) nlp_ner(text)
#Output: [{'entity': 'B-LOC', 'score': 0.9998720288276672, 'word': 'Londres'}] #Output: [{'entity': 'B-LOC', 'score': 0.9998720288276672, 'word': 'Londres'}]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment