hassaanik commited on
Commit
3fb6d62
·
1 Parent(s): b81aa3b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -7
README.md CHANGED
@@ -25,6 +25,11 @@ The model generates corrected text, highlighting the corrections made. Additiona
25
  Model Deployment:
26
  Deploy the model easily using the Hugging Face inference API. Users can leverage the API to integrate the grammar correction capability into their applications, websites, or text processing pipelines.
27
 
 
 
 
 
 
28
  ```python
29
  from transformers import pipeline
30
 
@@ -39,15 +44,8 @@ result = grammar_correction_model(input_text, max_length=200, num_beams=5, no_re
39
 
40
  # Print the corrected output
41
  print(result)
42
- <button class="clipboard" data-clipboard-target="#code">Copy code</button>
43
-
44
- <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js"></script>
45
- <script>
46
- new ClipboardJS('.clipboard');
47
- </script>'''
48
 
49
 
50
- By incorporating the Grammar Correction T5 Model, users can enhance the accuracy and clarity of written content, ultimately improving the overall quality of text-based communication.
51
 
52
 
53
 
 
25
  Model Deployment:
26
  Deploy the model easily using the Hugging Face inference API. Users can leverage the API to integrate the grammar correction capability into their applications, websites, or text processing pipelines.
27
 
28
+ By incorporating the Grammar Correction T5 Model, users can enhance the accuracy and clarity of written content, ultimately improving the overall quality of text-based communication.
29
+
30
+
31
+ ## Usage
32
+
33
  ```python
34
  from transformers import pipeline
35
 
 
44
 
45
  # Print the corrected output
46
  print(result)
 
 
 
 
 
 
47
 
48
 
 
49
 
50
 
51