Rustamshry commited on
Commit
f2eed85
·
verified ·
1 Parent(s): 165a185

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
- instruction = "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"""### Instruction:\n{instruction}\n\n### Response:\n"""
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