Text Generation
Safetensors
English
gemma4
unsloth
gemma-4
classification
esco
occupations
conversational
Instructions to use mazafard/esco-gemma4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use mazafard/esco-gemma4 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mazafard/esco-gemma4 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mazafard/esco-gemma4 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mazafard/esco-gemma4 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="mazafard/esco-gemma4", max_seq_length=2048, )
esco-gemma4
This model is a fine-tuned version of gemma-4 designed to map job descriptions and user inputs to official ESCO (European Skills, Competences, Qualifications and Occupations) taxonomies.
The model was trained efficiently utilizing the unsloth library and merged into 16-bit format for optimal inference performance.
Usage (Inference)
You can load this model directly using unsloth or standard transformers for sequence generation. For best results, use the identical prompt formatting applied during fine-tuning (see the provided inference.py script).
Loading with Unsloth
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
model_name="mazafard/esco-gemma4",
max_seq_length=2048,
dtype=None,
load_in_4bit=True,
)
FastLanguageModel.for_inference(model)
Training Framework
- Base Model: Google Gemma 4 (4-bit)
- Fine-Tuning: LoRA / PEFT
- Engine: Unsloth
- Downloads last month
- -