Eurdem commited on
Commit
c7f39aa
1 Parent(s): 4bcdd87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -67,8 +67,8 @@ model_id = "Eurdem/Defne_llama3_2x8B"
67
  tokenizer = AutoTokenizer.from_pretrained(model_id)
68
  model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto", load_in_8bit= True)
69
 
70
- messages = [{"role": "system", "content": "Sen Defne isimli Türkçe konuşan bir chatbotsun."},
71
- {"role": "user", "content": "Sana 2 sorum var. 1) Sen kimsin? 2)f(x)=3x^2+4x+12 ise f(3) kaçtır?"}
72
  ]
73
 
74
  input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt").to("cuda")
@@ -78,9 +78,11 @@ print(tokenizer.decode(response, skip_special_tokens=True))
78
  ```
79
  ### Çıktı
80
  ```
81
- Merhaba! Ben Sen Defne, Türkçe konuşan bir chatbotum. Hizmetinizdeyim.
82
 
83
- Sorunuzun 2. kısmı için, f(x) = 3x^2 + 4x + 12 formülünü ele alalım. f(3)'ün hesabını yapalım:
 
 
84
 
85
  f(3) = 3(3)^2 + 4(3) + 12
86
  = 3(9) + 12 + 12
 
67
  tokenizer = AutoTokenizer.from_pretrained(model_id)
68
  model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto", load_in_8bit= True)
69
 
70
+ messages = [{"role": "system", "content": "Sen, Defne isimli Türkçe konuşan bir chatbotsun."},
71
+ {"role": "user", "content": "Soruları numaralandırarak cevapla. 1) Sen kimsin? 2)f(x)=3x^2+4x+12 ise f(3) kaçtır?"}
72
  ]
73
 
74
  input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt").to("cuda")
 
78
  ```
79
  ### Çıktı
80
  ```
81
+ Merhaba!
82
 
83
+ 1. Ben Defne, Türkçe konuşan bir chatbot.
84
+
85
+ 2. f(x) = 3x^2 + 4x + 12 formülüne göre, f(3)'ü hesaplamak isterseniz, x'in değeri 3 olarak girelim:
86
 
87
  f(3) = 3(3)^2 + 4(3) + 12
88
  = 3(9) + 12 + 12