Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| GEITje-7B-ultra.Q2_K.gguf | Q2_K | 2.53GB |
| GEITje-7B-ultra.IQ3_XS.gguf | IQ3_XS | 2.81GB |
| GEITje-7B-ultra.IQ3_S.gguf | IQ3_S | 2.96GB |
| GEITje-7B-ultra.Q3_K_S.gguf | Q3_K_S | 2.95GB |
| GEITje-7B-ultra.IQ3_M.gguf | IQ3_M | 3.06GB |
| GEITje-7B-ultra.Q3_K.gguf | Q3_K | 3.28GB |
| GEITje-7B-ultra.Q3_K_M.gguf | Q3_K_M | 3.28GB |
| GEITje-7B-ultra.Q3_K_L.gguf | Q3_K_L | 3.56GB |
| GEITje-7B-ultra.IQ4_XS.gguf | IQ4_XS | 3.67GB |
| GEITje-7B-ultra.Q4_0.gguf | Q4_0 | 3.83GB |
| GEITje-7B-ultra.IQ4_NL.gguf | IQ4_NL | 3.87GB |
| GEITje-7B-ultra.Q4_K_S.gguf | Q4_K_S | 3.86GB |
| GEITje-7B-ultra.Q4_K.gguf | Q4_K | 4.07GB |
| GEITje-7B-ultra.Q4_K_M.gguf | Q4_K_M | 4.07GB |
| GEITje-7B-ultra.Q4_1.gguf | Q4_1 | 4.24GB |
| GEITje-7B-ultra.Q5_0.gguf | Q5_0 | 4.65GB |
| GEITje-7B-ultra.Q5_K_S.gguf | Q5_K_S | 4.65GB |
| GEITje-7B-ultra.Q5_K.gguf | Q5_K | 4.78GB |
| GEITje-7B-ultra.Q5_K_M.gguf | Q5_K_M | 4.78GB |
| GEITje-7B-ultra.Q5_1.gguf | Q5_1 | 5.07GB |
| GEITje-7B-ultra.Q6_K.gguf | Q6_K | 5.53GB |
| GEITje-7B-ultra.Q8_0.gguf | Q8_0 | 7.17GB |

[!TIP] 🚀 Looking for the fast GGUF version? You can find it, and how to use it withollama, here. 🚀
1from transformers import pipeline, Conversation
2
3# load_in_8bit: lower precision but saves a lot of GPU memory
4# device_map=auto: loads the model across multiple GPUs
5chatbot = pipeline("conversational", model="BramVanroy/GEITje-7B-ultra", model_kwargs={"load_in_8bit": True}, device_map="auto")
6
7start_messages = [
8 {"role": "system", "content": "Je bent een grappige chatbot die Bert heet. Je maakt vaak mopjes."},
9 {"role": "user", "content": "Hallo, ik ben Bram. Ik wil vanavond graag een film kijken. Heb je enkele suggesties?"}
10]
11conversation = Conversation(start_messages)
12conversation = chatbot(conversation)
13response = conversation.messages[-1]["content"]
14print(response)1from transformers import pipeline, Conversation
2
3# load_in_8bit: lower precision but saves a lot of memory
4# device_map=auto: loads the model across multiple GPUs
5# attn_implementation: uses flash attention, if your device supports it - otherwise remove it
6chatbot = pipeline("conversational", model="BramVanroy/GEITje-7B-ultra", model_kwargs={"load_in_8bit": True, "attn_implementation": "flash_attention_2"}, device_map="auto")
7
8while (system_message := input("System message ('q' to quit): ")) != "q":
9 start_messages = [
10 {"role": "system", "content": system_message},
11 ]
12 conversation = Conversation(start_messages)
13 while (user_input := input("User ('r' to reset): ")) != "r":
14 conversation.add_user_input(user_input)
15 conversation = chatbot(conversation)
16 response = conversation.messages[-1]["content"]
17 print("Assistant:", response)
181# Model arguments
2model_name_or_path: BramVanroy/GEITje-7B-ultra-sft
3model_revision: main
4torch_dtype: bfloat16
5use_flash_attention_2: true
6
7# Data training arguments
8# For definitions, see: src/h4/training/config.py
9dataset_mixer:
10 BramVanroy/ultra_feedback_dutch: 1.0
11dataset_splits:
12- train_prefs
13- test_prefs
14preprocessing_num_workers: 8
15
16# DPOTrainer arguments
17bf16: true
18beta: 0.1
19do_eval: true
20evaluation_strategy: steps
21eval_steps: 100
22gradient_accumulation_steps: 4
23gradient_checkpointing: true
24gradient_checkpointing_kwargs:
25 use_reentrant: False
26hub_model_id: BramVanroy/GEITje-ultra
27learning_rate: 5.0e-7
28log_level: info
29logging_steps: 10
30lr_scheduler_type: cosine
31max_length: 2048
32max_prompt_length: 1536
33num_train_epochs: 1
34optim: adamw_torch
35output_dir: data/GEITje-ultra
36per_device_train_batch_size: 4
37per_device_eval_batch_size: 4
38push_to_hub: true
39save_strategy: "steps"
40save_steps: 100
41save_total_limit: 3
42seed: 42
43warmup_ratio: 0.1| Training Loss | Epoch | Step | Validation Loss | Rewards/chosen | Rewards/rejected | Rewards/accuracies | Rewards/margins | Logps/rejected | Logps/chosen | Logits/rejected | Logits/chosen |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.03 | 0.22 | 100 | 0.0260 | -0.9740 | -9.8635 | 0.9913 | 8.8895 | -524.8940 | -508.1891 | -3.0753 | -3.0315 |
| 0.0184 | 0.44 | 200 | 0.0164 | -1.7162 | -12.4772 | 0.9926 | 10.7610 | -551.0317 | -515.6115 | -3.0349 | -2.9873 |
| 0.0121 | 0.66 | 300 | 0.0142 | -2.0575 | -13.6818 | 0.9938 | 11.6244 | -563.0778 | -519.0242 | -3.0325 | -2.9835 |
| 0.0198 | 0.88 | 400 | 0.0139 | -2.1431 | -13.8857 | 0.9950 | 11.7426 | -565.1163 | -519.8801 | -3.0293 | -2.9801 |