Update README.md
Browse files
README.md
CHANGED
@@ -4,38 +4,37 @@ language:
|
|
4 |
- tr
|
5 |
pipeline_tag: text-generation
|
6 |
---
|
7 |
-
|
8 |
-
# Model Card for Model ID
|
9 |
-
|
10 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
## Model Details
|
15 |
-
|
16 |
### Model Description
|
17 |
|
18 |
-
<!-- Provide a longer summary of what this model is. -->
|
19 |
-
|
20 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
21 |
|
22 |
-
- **Developed by:**
|
23 |
-
- **Model type:**
|
24 |
-
- **Language(s) (NLP):**
|
25 |
-
- **
|
26 |
-
- **Finetuned from model [optional]:** [Trendyol-LLM-7b-chat-v0.1]
|
27 |
-
|
28 |
-
### Recommendations
|
29 |
-
|
30 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
31 |
-
|
32 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
33 |
|
34 |
## How to Get Started with the Model
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
## Training Details
|
41 |
|
|
|
4 |
- tr
|
5 |
pipeline_tag: text-generation
|
6 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
### Model Description
|
8 |
|
|
|
|
|
9 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
10 |
|
11 |
+
- **Developed by:** Umar Igan
|
12 |
+
- **Model type:** LLama-2-7B-chat
|
13 |
+
- **Language(s) (NLP):** Turkish
|
14 |
+
- **Finetuned from model:** Trendyol-LLM-7b-chat-v0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
## How to Get Started with the Model
|
17 |
|
18 |
+
```
|
19 |
+
# Use a pipeline as a high-level helper
|
20 |
+
from transformers import pipeline
|
21 |
+
|
22 |
+
pipe = pipeline("text-generation", model="umarigan/Trendyol-LLM-7b-chat-v0.1-DPO")
|
23 |
+
|
24 |
+
# Generate text
|
25 |
+
sequences = pipe(
|
26 |
+
"büyük dil modellerinin finans alanındaki kullanımları nelerdir",
|
27 |
+
do_sample=True,
|
28 |
+
temperature=0.7,
|
29 |
+
top_p=0.9,
|
30 |
+
num_return_sequences=1,
|
31 |
+
max_length=200,
|
32 |
+
)
|
33 |
+
print(sequences[0]['generated_text'])
|
34 |
+
|
35 |
+
Question: büyük dil modellerinin finans alanındaki kullanımları nelerdir?
|
36 |
+
Answer: Çok büyük dil modelleri, özellikle de Transformer gibi, karmaşık dil görevlerinin üstesinden gelmek için tasarlanmışlardır. Bu, finansal piyasalardaki veri işleme, fiyat tahmini ve analizleri, finansal haberler ve raporlama gibi süreçleri içerir. Ayrıca, büyük dil modelleri, doğal dil işleme, metin sınıflandırma ve soru cevaplama gibi görevlerin yanı sıra, müşteri hizmetleri gibi insan etkileşimi gerektiren finansal hizmetlerde de kullanılmaktadır.
|
37 |
+
```
|
38 |
|
39 |
## Training Details
|
40 |
|