Geneva 12B GammaCorpus v2-100k is a fine-tune of Mistral's
Mistral Nemo Instruct 2407 model. Geneva is designed to outperform other models that have a similar size while also showcasing
GammaCorpus v2-100k.
Geneva-12B-GCv2-100k underwent fine-tuning with 1 A100 GPU for ~20 minutes and trained with the
Unsloth framework. Geneva-12B-GCv2-100k was trained for
60 Epochs.
1from transformers import pipeline
2
3prompt = "How tall is the Eiffel tower?"
4
5messages = [
6 {"role": "system", "content": "You are a helpful assistant named Geneva, built on the Mistral NeMo model developed by Mistral AI, and fine-tuned by Ruben Roy."},
7 {"role": "user", "content": prompt},
8]
9
10infer = pipeline("text-generation", model="rubenroy/Geneva-12B-GCv2-100k", max_new_tokens=128)
11
12infer(messages)
This model, and all Geneva models, are trained with GammaCorpus. GammaCorpus is a dataset on HuggingFace that is filled with structured and filtered multi-turn conversations.
GammaCorpus has 4 version with different sizes in each. These are the following versions and sizes:
The model is released under the
Apache 2.0 License. Please refer to the license for usage rights and restrictions.