Skip to content
Snippets Groups Projects
Commit 20e3b60e authored by Thomas Edwards's avatar Thomas Edwards
Browse files

Work towards USAS

parent c0327c5b
No related branches found
No related tags found
No related merge requests found
import spacy import spacy
# Perform USAS on Text # Perform USAS on Text
def run_usas_on_text(page): def run_usas_on_text(page):
# We exclude the following components as we do not need them. # We exclude the following components as we do not need them.
...@@ -17,7 +16,5 @@ def run_usas_on_text(page): ...@@ -17,7 +16,5 @@ def run_usas_on_text(page):
for token in output_doc: for token in output_doc:
print(f'{token.text}\t{token.pos_}\t{token._.pymusas_tags}') print(f'{token.text}\t{token.pos_}\t{token._.pymusas_tags}')
result = {'output': "Hello USAS", 'message': 'Done', 'code': 'SUCCESS'}
result = {'output': "Hello USAS",'message': 'Done', 'code': 'SUCCESS'}
return result return result
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment