Quantization made by Richard Erkhov.
library_name: transformers
base_model: dicta-il/dictalm2.0-instruct
license: apache-2.0
language:
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.
1from transformers import AutoModelForQuestionAnswering, AutoTokenizer
2
3model_name = "Guysh1805/dictalm2-it-qa-fine-tune"
4model = AutoModelForQuestionAnswering.from_pretrained(model_name)
5tokenizer = AutoTokenizer.from_pretrained(model_name)