added model files f460d39
ANTOUN Wissam commited on
How to use almanach/camemberta-base with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="almanach/camemberta-base") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("almanach/camemberta-base")
model = AutoModel.from_pretrained("almanach/camemberta-base")