KES commited on
Commit
5260ab4
1 Parent(s): f9aad7c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -43,7 +43,7 @@ sentence = "Wat iz your nam"
43
 
44
  correction = model.generate_text("grammar: "+sentence, args=arguments)
45
  if(correction.text.find(" .")):
46
- correction.text=result.text.replace(" .", ".")
47
 
48
  print(correction.text) # Correction: "What is your name?".
49
 
 
43
 
44
  correction = model.generate_text("grammar: "+sentence, args=arguments)
45
  if(correction.text.find(" .")):
46
+ correction.text=correction.text.replace(" .", ".")
47
 
48
  print(correction.text) # Correction: "What is your name?".
49