samagra14wefi commited on
Commit
2e8e831
1 Parent(s): eddac7a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -58,8 +58,8 @@ context_string = '''India won the world cup in 1983 and 2011. Australia won the
58
  response_string_wrong = '''India has won the world cup most number of times.'''
59
  response_string_correct = '''Australia has won the world cup most number of times.'''
60
 
61
- score_wrong = calc_score(context_string, response_string_one)
62
- score_correct = calc_score(context_string, response_string_two)
63
 
64
  print(score_correct > score_wrong)
65
  ```
 
58
  response_string_wrong = '''India has won the world cup most number of times.'''
59
  response_string_correct = '''Australia has won the world cup most number of times.'''
60
 
61
+ score_wrong = calc_score(context_string, response_string_wrong)
62
+ score_correct = calc_score(context_string, response_string_correct)
63
 
64
  print(score_correct > score_wrong)
65
  ```