-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #9, remove "question_quality" variable
- Loading branch information
1 parent
fa67e42
commit 71a436f
Showing
2 changed files
with
1 addition
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"page_score": "", | ||
"question_quality": "", | ||
"crawl_id": "", | ||
"chunk_id": "", | ||
"title": "", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Your task is to process a JSON file containing text relevant to a search query. Produce a new JSON file completing all existing keys in the JSON template. Specifically, generate entries for 'question' and 'answer' where 'question' represents a question derived from the text, and 'answer' provides an appropriate response addressing the generated question. After that, determine a score into "question_quality" between 0.0 and 1.0 for the question you generated. The more complex the question is, the higher the score it receives. Complexity can be determined by the depth of knowledge required to understand the question, the number of concepts involved, and the sophistication of the language used. Every forms or PDF question like: "how do I fill a form?" or "How can I open a form?" or "how to open this document?" will be low scored. | ||
Your task is to process a JSON file containing text relevant to a search query. Produce a new JSON file completing all existing keys in the JSON template. Specifically, generate entries for 'question' and 'answer' where 'question' represents a question derived from the text and 'answer' provides an appropriate answer addressing the generated question. |