boltuix commited on
Commit
6a0e191
Β·
verified Β·
1 Parent(s): 6a2099f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -77,7 +77,7 @@ from transformers import pipeline
77
  mlm = pipeline("fill-mask", model="boltuix/bert-lite")
78
  result = mlm("The cat [MASK] on the mat.")
79
  print(result[0]['sequence']) # ✨ "The cat sat on the mat."
80
-
81
  ---
82
 
83
  ## 🌟 Why bert-lite? The Lightweight Edge
@@ -106,6 +106,9 @@ print(result[0]['sequence']) # ✨ "The cat sat on the mat."
106
  ## πŸ“œ License
107
  MIT License β€” free to use, modify, and share.
108
 
 
 
 
109
 
110
  ## πŸ”€ Usage Example – Masked Language Modeling (MLM)
111
 
 
77
  mlm = pipeline("fill-mask", model="boltuix/bert-lite")
78
  result = mlm("The cat [MASK] on the mat.")
79
  print(result[0]['sequence']) # ✨ "The cat sat on the mat."
80
+ ```
81
  ---
82
 
83
  ## 🌟 Why bert-lite? The Lightweight Edge
 
106
  ## πŸ“œ License
107
  MIT License β€” free to use, modify, and share.
108
 
109
+ ---
110
+
111
+
112
 
113
  ## πŸ”€ Usage Example – Masked Language Modeling (MLM)
114