Update README.md
Browse files
README.md
CHANGED
@@ -19,18 +19,9 @@ datasets:
|
|
19 |
- This model is a fine tuned mistral-7b-instruct-v0.2 with merve/turkish_instructions dataset.
|
20 |
|
21 |
- Instruct format:
|
22 |
-
```python
|
23 |
-
"Aşağıda bir görevi tanımlayan bir talimat ve daha fazla bağlam sağlayan bir girdi bulunmaktadır. Talebi uygun şekilde tamamlayan bir yanıt yazın
|
24 |
-
|
25 |
-
### Talimat:
|
26 |
-
{}
|
27 |
-
|
28 |
-
### Girdi:
|
29 |
-
{}
|
30 |
-
|
31 |
-
### Yanıt:
|
32 |
-
{}"
|
33 |
-
```python
|
34 |
|
35 |
- example inference code:
|
36 |
-
|
@@ -54,4 +45,4 @@ model.to(device)
|
|
54 |
generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
|
55 |
decoded = tokenizer.batch_decode(generated_ids)
|
56 |
print(decoded[0])
|
57 |
-
```
|
|
|
19 |
- This model is a fine tuned mistral-7b-instruct-v0.2 with merve/turkish_instructions dataset.
|
20 |
|
21 |
- Instruct format:
|
22 |
+
```python
|
23 |
+
"Aşağıda bir görevi tanımlayan bir talimat ve daha fazla bağlam sağlayan bir girdi bulunmaktadır. Talebi uygun şekilde tamamlayan bir yanıt yazın.\n\n### Talimat:\n{}\n\n### Girdi:\n{}\n\n### Yanıt:\n{}"
|
24 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
- example inference code:
|
27 |
-
|
|
|
45 |
generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
|
46 |
decoded = tokenizer.batch_decode(generated_ids)
|
47 |
print(decoded[0])
|
48 |
+
```
|