doubledsbv commited on
Commit
576a3e8
1 Parent(s): a593df0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -19,7 +19,7 @@ pipeline_tag: text-generation
19
 
20
  # KafkaLM-7B-German-V0.1
21
 
22
- **KafkaLM 70b** is a Mistral 7b model - further pre-trained on a large german dataset from Björn Plüster and LAION. [leo-mistral-hessianai-7b](https://huggingface.co/LeoLM/leo-mistral-hessianai-7b) - which was finetuned on an ensemble of popular high-quality open-source instruction sets (translated from English to German).
23
 
24
  KafkaLM 7b is a [Seedbox](https://huggingface.co/seedboxai) project trained by [Dennis Dickmann](https://huggingface.co/doubledsbv).
25
 
@@ -61,9 +61,9 @@ Getting started with the model is straightforward
61
  ```python
62
  import transformers
63
 
64
- model_id = "seedboxai/KafkaLM-7B-German-V0.1"
65
 
66
- model = AutoModelForCausalLM.from_pretrained(model_id, load_in_4bit=True)
67
 
68
  tokenizer = AutoTokenizer.from_pretrained(model_id)
69
 
 
19
 
20
  # KafkaLM-7B-German-V0.1
21
 
22
+ **KafkaLM 7b** is a Mistral 7b model - further pre-trained on a large german dataset from Björn Plüster and LAION. [leo-mistral-hessianai-7b](https://huggingface.co/LeoLM/leo-mistral-hessianai-7b) - which was finetuned on an ensemble of popular high-quality open-source instruction sets (translated from English to German).
23
 
24
  KafkaLM 7b is a [Seedbox](https://huggingface.co/seedboxai) project trained by [Dennis Dickmann](https://huggingface.co/doubledsbv).
25
 
 
61
  ```python
62
  import transformers
63
 
64
+ model_id = "seedboxai/KafkaLM-7B-German-V0.1-DPO"
65
 
66
+ model = AutoModelForCausalLM.from_pretrained(model_id, load_in_4bit=True, trust_remote_code=True)
67
 
68
  tokenizer = AutoTokenizer.from_pretrained(model_id)
69