How to use RichelieuGVG/tinek_sample_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="RichelieuGVG/tinek_sample_model")
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("RichelieuGVG/tinek_sample_model") model = AutoModelForSeq2SeqLM.from_pretrained("RichelieuGVG/tinek_sample_model")
The community tab is the place to discuss and collaborate with the HF community!