CoolFace
Modelpublic

fenyo/gpt-oss-20b-FAQ-MES-mxfp4

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes16downloads
Model Card

Model

This model is a mxfp4 quantified version of fenyo/gpt-oss-20b-FAQ-MES

It can run on low-end GPU with only 16 Gb VRAM.

Ce modèle est comparé à d'autres modèles ici : https://huggingface.co/fenyo/MonEspaceSante-FAQ-Mistral-Small-24B-GGUF/blob/main/REPORT.md

Run with Ollama (on your own GPU with 16Gb VRAM)

It has been uploaded to Ollama: https://ollama.com/eowyneowyn/gpt-oss-20b-FAQ-MES

shell
ollama run eowyneowyn/gpt-oss-20b-FAQ-MES:faq "Qu'est-ce que Mon Espace Santé ?"

Run on Colab for free (using the free T4 GPU)

Run it on Google Colab: click here

Add the system prompt to the messages list to get best results :

python
from transformers import pipeline

pipe = pipeline("text-generation", model="fenyo/gpt-oss-20b-FAQ-MES-mxfp4")
messages = [
    {"role": "system", "content": "You are a helpful chatbot assistant for the Mon Espace Santé website."},
    {"role": "user", "content": "Qu'est ce que Mon Espace Santé ?"},
]
pipe(messages)