Text Generation
Transformers
Safetensors
Arabic
English
mistral
quiz-generator
exam-generator
educational
conversational
text-generation-inference
8-bit precision
bitsandbytes
Instructions to use medodeyaa/mistral-exam-generator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use medodeyaa/mistral-exam-generator with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="medodeyaa/mistral-exam-generator") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("medodeyaa/mistral-exam-generator") model = AutoModelForMultimodalLM.from_pretrained("medodeyaa/mistral-exam-generator") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use medodeyaa/mistral-exam-generator with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "medodeyaa/mistral-exam-generator" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "medodeyaa/mistral-exam-generator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/medodeyaa/mistral-exam-generator
- SGLang
How to use medodeyaa/mistral-exam-generator with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "medodeyaa/mistral-exam-generator" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "medodeyaa/mistral-exam-generator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "medodeyaa/mistral-exam-generator" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "medodeyaa/mistral-exam-generator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use medodeyaa/mistral-exam-generator with Docker Model Runner:
docker model run hf.co/medodeyaa/mistral-exam-generator
Mistral Exam Generator (كويز جينيريتور)
This model is a fine-tuned version of Mistral, specifically optimized for generating quizzes, exams, and educational questions based on given prompts or contexts.
Model Description
- Task: Text Generation / Question Generation (توليد أسئلة واختبارات)
- Languages Supported: Arabic and English
- Intended Use: Educational applications, teachers' assistance, and automatic quiz generation.
How to use (كيفية الاستخدام برمجياً)
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "oewis16/mistral-exam-generator"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="auto"
)
prompt = "اكتب سؤال اختيار من متعدد عن الذكاء الاصطناعي مع الإجابات:"
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=150)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
- Downloads last month
- 41
Model tree for medodeyaa/mistral-exam-generator
Base model
mistralai/Mistral-7B-v0.1