Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Cristian283
/
Imagenes
like
0
Text-to-Image
ESPnet
HuggingFaceM4/WebSight
Abkhaz
Afrikaans
finance
License:
apache-2.0
Model card
Files
Files and versions
Community
Use this model
Cristian283
commited on
Feb 4
Commit
b1ee364
•
1 Parent(s):
f2f1866
Create D
Browse files
Files changed (1)
hide
show
D
+5
-0
D
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from transformers import AutoModel, AutoTokenizer
2
+
3
+
model_name = "bert-base-uncased"
4
+
model = AutoModel.from_pretrained(model_name)
5
+
tokenizer = AutoTokenizer.from_pretrained(model_name)