| # Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License | |
| """ | |
| Add a new task (required arguments): | |
| TASK_NAME: { | |
| 'tokens_to_generate': how many tokens we want to generate. | |
| 'template': the template with at least {context} and {query}. | |
| } | |
| """ | |
| TASKS = { | |
| 'niah': { | |
| 'tokens_to_generate': 128, | |
| 'template': """Some special magic {type_needle_v} are hidden within the following text. Make sure to memorize it. I will quiz you about the {type_needle_v} afterwards.\n{context}\nWhat are all the special magic {type_needle_v} for {query} mentioned in the provided text?""", | |
| 'answer_prefix': """ The special magic {type_needle_v} for {query} mentioned in the provided text are""" | |
| }, | |
| 'variable_tracking': { | |
| 'tokens_to_generate': 30, | |
| 'template': """Memorize and track the chain(s) of variable assignment hidden in the following text.\n\n{context}\nQuestion: Find all variables that are assigned the value {query} in the text above.""", | |
| 'answer_prefix': """ Answer: According to the chain(s) of variable assignment in the text above, {num_v} variables are assigned the value {query}, they are: """ | |
| }, | |
| 'common_words_extraction': { | |
| 'tokens_to_generate': 120, | |
| 'template': """Below is a numbered list of words. In these words, some appear more often than others. Memorize the ones that appear most often.\n{context}\nQuestion: What are the 10 most common words in the above list?""", | |
| 'answer_prefix': """ Answer: The top 10 words that appear most often in the list are:""" | |
| }, | |
| 'freq_words_extraction' : { | |
| 'tokens_to_generate': 50, | |
| 'template': """Read the following coded text and track the frequency of each coded word. Find the three most frequently appeared coded words. {context}\nQuestion: Do not provide any explanation. Please ignore the dots '....'. What are the three most frequently appeared words in the above coded text?""", | |
| 'answer_prefix': """ Answer: According to the coded text above, the three most frequently appeared words are:""" | |
| }, | |
| 'qa': { | |
| 'tokens_to_generate': 32, | |
| 'template': """Answer the question based on the given documents. Only give me the answer and do not output any other words.\n\nThe following are given documents.\n\n{context}\n\nAnswer the question based on the given documents. Only give me the answer and do not output any other words.\n\nQuestion: {query}""", | |
| 'answer_prefix': """ Answer:""", | |
| }, | |
| } |
Xet Storage Details
- Size:
- 3.05 kB
- Xet hash:
- bdbaf670771551d7495c3a4966d3c87c1485160bbbdf8d05c9e1a9b12f5379a8
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.