Instructions to use billfass/camembert-base-sentiment-analysis with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use billfass/camembert-base-sentiment-analysis with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="billfass/camembert-base-sentiment-analysis")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("billfass/camembert-base-sentiment-analysis") model = AutoModelForMaskedLM.from_pretrained("billfass/camembert-base-sentiment-analysis") - Notebooks
- Google Colab
- Kaggle