Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Update TermFinderTask.py
Browse files Browse the repository at this point in the history
  • Loading branch information
charhart committed Jan 28, 2019
1 parent 0e6f81d commit 553bde7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nlp/tasks/TermFinderTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def run_custom_task(self, temp_file, mongo_client):
"end": term.end,
"negation": term.negex,
"temporality": term.temporality,
"experiencer": term.experiencer
"experiencer": term.experiencer,
"value": True
}
self.write_result_data(temp_file, mongo_client, doc, obj)

Expand Down Expand Up @@ -70,7 +71,8 @@ def run_custom_task(self, temp_file, mongo_client):
"end": term.end,
"negation": term.negex,
"temporality": term.temporality,
"experiencer": term.experiencer
"experiencer": term.experiencer,
"value": True
}

self.write_result_data(temp_file, mongo_client, doc, obj)
Expand Down

0 comments on commit 553bde7

Please sign in to comment.