seungone commited on
Commit
eacaa95
·
1 Parent(s): ad8c90d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md CHANGED
@@ -39,6 +39,37 @@ Prometheus is trained with two different sizes (7B and 13B).
39
  You could check the 13B sized LM on [this page](https://huggingface.co/kaist-ai/prometheus-13b-v1.0).
40
  Also, check out our dataset as well on [this page](https://huggingface.co/datasets/kaist-ai/Feedback-Collection).
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  ## License
43
  Feedback Collection and Prometheus is subject to OpenAI's Terms of Use for the generated data. If you suspect any violations, please reach out to us.
44
 
 
39
  You could check the 13B sized LM on [this page](https://huggingface.co/kaist-ai/prometheus-13b-v1.0).
40
  Also, check out our dataset as well on [this page](https://huggingface.co/datasets/kaist-ai/Feedback-Collection).
41
 
42
+ ## Prompt Format
43
+ Prometheus requires 4 components in the input: An instruction, a response to evaluate, a score rubric, and a reference answer. You could refer to the prompt format below.
44
+ ```
45
+ ###Task Description:
46
+ An instruction (might include an Input inside it), a response to evaluate, a reference answer that gets a score of 5, and a score rubric representing a evaluation criteria are given.
47
+ 1. Write a detailed feedback that assess the quality of the response strictly based on the given score rubric, not evaluating in general.
48
+ 2. After writing a feedback, write a score that is an integer between 1 and 5. You should refer to the score rubric.
49
+ 3. The output format should look as follows: \"Feedback: (write a feedback for criteria) [RESULT] (an integer number between 1 and 5)\"
50
+ 4. Please do not generate any other opening, closing, and explanations.
51
+
52
+ ###The instruction to evaluate:
53
+ {instruction}
54
+
55
+ ###Response to evaluate:
56
+ {response}
57
+
58
+ ###Reference Answer (Score 5):
59
+ {reference_answer}
60
+
61
+ ###Score Rubrics:
62
+ [{criteria_description}]
63
+ Score 1: {score1_description}
64
+ Score 2: {score2_description}
65
+ Score 3: {score3_description}
66
+ Score 4: {score4_description}
67
+ Score 5: {score5_description}
68
+
69
+ ###Feedback:
70
+ ```
71
+
72
+
73
  ## License
74
  Feedback Collection and Prometheus is subject to OpenAI's Terms of Use for the generated data. If you suspect any violations, please reach out to us.
75