Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created August 24, 2020 21:40
Show Gist options
  • Select an option

  • Save sevperez/163e522bb1a9d8f654e04e65bedca4da to your computer and use it in GitHub Desktop.

Select an option

Save sevperez/163e522bb1a9d8f654e04e65bedca4da to your computer and use it in GitHub Desktop.
def print_doc_info(doc):
print(f"Num sentences:\t{len(doc.sentences)}")
print(f"Num tokens:\t{doc.num_tokens}")
print(f"Num words:\t{doc.num_words}")
print(f"Num entities:\t{len(doc.entities)}")
print_doc_info(moby_p1)
# Num sentences: 8
# Num tokens: 222
# Num words: 222
# Num entities: 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment