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, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("medodeyaa/mistral-exam-generator") model = AutoModelForCausalLM.from_pretrained("medodeyaa/mistral-exam-generator", device_map="auto") 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,16 +1,21 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
- ar
|
| 5 |
-
- en
|
|
|
|
|
|
|
| 6 |
base_model: mistralai/Mistral-7B-v0.1
|
| 7 |
pipeline_tag: text-generation
|
| 8 |
tags:
|
| 9 |
-
- quiz-generator
|
| 10 |
-
- exam-generator
|
| 11 |
-
- educational
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
|
|
|
| 14 |
# Mistral Exam Generator (كويز جينيريتور)
|
| 15 |
|
| 16 |
This model is a fine-tuned version of Mistral, specifically optimized for generating quizzes, exams, and educational questions based on given prompts or contexts.
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
+
- ar
|
| 4 |
+
- en
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
library_name: transformers
|
| 7 |
base_model: mistralai/Mistral-7B-v0.1
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
+
- quiz-generator
|
| 11 |
+
- exam-generator
|
| 12 |
+
- educational
|
| 13 |
+
inference: true
|
| 14 |
+
widget:
|
| 15 |
+
- text: "Generate 3 MCQ questions about dental caries with answers."
|
| 16 |
---
|
| 17 |
|
| 18 |
+
|
| 19 |
# Mistral Exam Generator (كويز جينيريتور)
|
| 20 |
|
| 21 |
This model is a fine-tuned version of Mistral, specifically optimized for generating quizzes, exams, and educational questions based on given prompts or contexts.
|