Instructions to use Ayon128/Fine-tuned-BanglaBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ayon128/Fine-tuned-BanglaBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Ayon128/Fine-tuned-BanglaBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Ayon128/Fine-tuned-BanglaBERT") model = AutoModelForSequenceClassification.from_pretrained("Ayon128/Fine-tuned-BanglaBERT") - Notebooks
- Google Colab
- Kaggle