Virajtharinda commited on
Commit
e45dc5e
1 Parent(s): ab8be84

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ # create pieline for MLM
3
+ mlm = pipeline('fill-mask')
4
+
5
+ mlm("The cat <mask> on the roof")