Update README.md
Browse files
README.md
CHANGED
@@ -67,8 +67,8 @@ base_model = AutoModelForCausalLM.from_pretrained(
|
|
67 |
|
68 |
model = PeftModel.from_pretrained(base_model,"Rustamshry/Qwen2.5-1.5B-Medical-Az")
|
69 |
|
70 |
-
|
71 |
-
prompt = f"""###
|
72 |
|
73 |
input_ids = tokenizer(prompt, return_tensors="pt").to(model.device)
|
74 |
|
|
|
67 |
|
68 |
model = PeftModel.from_pretrained(base_model,"Rustamshry/Qwen2.5-1.5B-Medical-Az")
|
69 |
|
70 |
+
question = "45 yaşlı kişi qəfil danışıqda pozulma, yeriyişində dəyişiklik və titrəmə meydana gəlir. Ən ehtimal diaqnoz nədir?"
|
71 |
+
prompt = f"""### Question:\n{question}\n\n### Response:\n"""
|
72 |
|
73 |
input_ids = tokenizer(prompt, return_tensors="pt").to(model.device)
|
74 |
|