Models
Collection
2 items
•
Updated
This is a fine-tuned version of the Dicta-IL dictalm2.0-instruct model, specifically tailored for generating question-answer pairs in Hebrew.
The model, Guysh1805/dictalm2-it-qa-fine-tunetuned, is a fine-tuned version of the dictalm2.0-instruct model on a both synthetically generated datasets and already existing Q&A datasets wrapped in insturction prompts.
To get started, load the model using the Transformers library by Hugging Face:
from transformers import AutoModelForQuestionAnswering, AutoTokenizer
model_name = "Guysh1805/dictalm2-it-qa-fine-tune"
model = AutoModelForQuestionAnswering.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)