How to use ElisonSherton/hf-course with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="ElisonSherton/hf-course")
# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("ElisonSherton/hf-course") model = AutoModelForMaskedLM.from_pretrained("ElisonSherton/hf-course")
This is my first model repo.
This aims to document my progress in going through the huggingface course and my understanding of different libraries provided by huggingface.