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