File size: 2,761 Bytes
639cd0a 3df0eec 731ec1c 3df0eec 731ec1c 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec 639cd0a 3df0eec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
---
library_name: transformers
tags:
- deutsch
- german
- seedbox
- mistral
- mixtral
- multilingual
license: apache-2.0
language:
- de
- en
pipeline_tag: text-generation
---
![image/jpeg](/static-proxy?url=https%3A%2F%2Fcdn-uploads.huggingface.co%2Fproduction%2Fuploads%2F645ded34a45b4182d7f5c385%2F9QywLGTbRrHYSq-m6fQmJ.jpeg%3C%2Fspan%3E)
# KafkaLM-8x7b-German-V0.1
**KafkaLM 8x7b** is a MoE model based on [Mistral AI´s Mixtral 8x7b](https://mistral.ai/news/mixtral-of-experts/) which was finetuned on an ensemble of popular high-quality open-source instruction sets (translated from English to German).
KafkaLM 8x7b is a [Seedbox](https://huggingface.co/seedboxai) project trained by [Dennis Dickmann](https://huggingface.co/doubledsbv).
**Why Kafka?**
The models are proficient, yet creative, have some tendencies to linguistically push boundaries 😊
## Model Details
The purpose of releasing the **KafkaLM series** is to contribute to the German AI community with a set of fine-tuned LLMs that are easy to use in everyday applications across a variety of tasks.
The main goal was to provide LLMs proficient in German, especially to be used in German-speaking business contexts where English alone is not sufficient.
### DPO
The model has been aligned with a german and modified version of the ultra feedback dataset from huggingface.
### Dataset
I used a 8k filtered version of the following [seedboxai/multitask_german_examples_32k](https://huggingface.co/datasets/seedboxai/multitask_german_examples_32k)
### Inference
Getting started with the model is straightforward
```python
import transformers
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "seedboxai/KafkaLM-Mixtral-8x7B-V0.2"
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16)
tokenizer = transformers.AutoTokenizer.from_pretrained(model_id)
pipeline = transformers.pipeline(
model=model, tokenizer=tokenizer,
return_full_text=True,
task='text-generation',
device="cuda",
)
messages = [
{"role": "system", "content": "Du bist ein hilfreicher KI-Assistent."},
{"role": "user", "content": "Wer ist eigentlich dieser Kafka?"},
]
prompt = pipeline.tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
terminators = [
pipeline.tokenizer.eos_token_id,
pipeline.tokenizer.convert_tokens_to_ids("</s>")
]
outputs = pipeline(
prompt,
max_new_tokens=max_new_tokens,
eos_token_id=terminators,
do_sample=True,
temperature=0.7,
top_p=0.9,
)
print(outputs[0]["generated_text"][len(prompt):])
```
## Disclaimer
The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. |