alirezamsh commited on
Commit
133bb56
·
1 Parent(s): e185eaa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -5
README.md CHANGED
@@ -32,17 +32,13 @@ results = rquge.compute(generated_questions=generated_questions, contexts=contex
32
  print([round(v, 2) for v in results["score"]])
33
  >>> [5.0]
34
  ```
35
-
36
- output_dict = {
37
- "mean_score": total/len(output),
38
- "instance_score": output,
39
- }
40
 
41
  ## Output Values
42
 
43
  RQUGE score outputs a dictionary with the following values:
44
 
45
  `mean_score`: The average RQUGE score over the input texts, ranging from 1 to 5
 
46
  `instance_score`: Invidivual RQUGE score of each instance in the input, ranging from 1 to 5
47
 
48
 
 
32
  print([round(v, 2) for v in results["score"]])
33
  >>> [5.0]
34
  ```
 
 
 
 
 
35
 
36
  ## Output Values
37
 
38
  RQUGE score outputs a dictionary with the following values:
39
 
40
  `mean_score`: The average RQUGE score over the input texts, ranging from 1 to 5
41
+
42
  `instance_score`: Invidivual RQUGE score of each instance in the input, ranging from 1 to 5
43
 
44