forked from trigaten/Learn_Prompting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossary.yml
36 lines (36 loc) · 2.04 KB
/
glossary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
api:
term: API
def: "Application Programming Interface. Enables different systems to interact with each other programmatically. Two types of APIs are REST APIs (web APIs) and native-library APIs."
link: See <a href='https://www.redhat.com/en/topics/api/what-is-a-rest-api'>What is a REST API?</a>
self_consistency:
term: Self Consistency
def: Generating multiple chains of thought and taking the majority answer.
link: See <a href='https://learnprompting.org/docs/intermediate/self_consistency'>Self Consistency</a>
labelspace:
term: Label space
def: All of the possible labels for a given task.
few shot standard prompt:
term: few shot standard prompt
def: Standard prompts that have exemplars in them. Exemplars are examples of the task that the prompt is trying to solve, which are included in the prompt itself.
exemplars:
term: Exemplars
def: Examples of the task that the prompt is trying to solve, which are included in the prompt itself.
CoT prompting:
term: CoT prompting
def: The main idea of CoT is that by showing the LLM some few shot exemplars where the reasoning process is explained in the exemplars, the LLM will also show the reasoning process when answering the prompt.
PAL:
term: PAL
def: A method that uses code as intermediate reasoning
link: see <a href='https://learnprompting.org/docs/advanced_applications/pal'>PAL</a>
LLM:
term: LLM
def: Large Language Model. A model that is trained to predict the next word in a sentence.
gold_labels:
term: Gold Labels
def: The correct labels for a given task.
labels:
term: labels
def: The concept of labels is best understood with an example. <br/><br/>Say we want to classify some Tweets as mean or not mean. If we have a list of Tweets and their corresponding *label* (mean or not mean), we can train a model to classify whether tweets are mean or not. Labels are generally just possibilities for the classification task.
sentiment analysis:
term: Sentiment Analysis
def: Sentiment analysis is the task of classifying text into positive, negative, or other sentiments.