Skip to content

Commit

Permalink
LLMFactCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
mlupei committed Feb 28, 2024
1 parent 9d26fdc commit 0ae0372
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/get_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ def get_result(model_info, prompt, model_type):
ASSISTANT:
'''
prompt_template='''Чи фраза «Альбендазол лікує стронгілоїдоз» отримує принаймні непряму підтримку з твердження: «Для визначення факторів господаря, які беруть участь у відповіді на лікування, 46 пацієнтів зі стронгілоїдозом лікували альбендазолом, спостерігали протягом 1 року та розділили на дві групи. групи: вилікувані та невилікувані.»?'''
prompt_chunks = [prompt_template]
result_text = ""
for chunk in prompt_chunks:
# Interact with the Llama model
print(chunk)
response = model(prompt=chunk, max_tokens=256, temperature=0.3,
response = model(prompt=chunk, max_tokens=256, temperature=0.1,
top_p=0.95, repeat_penalty=1.2, top_k=150, echo=False)
result_text += response["choices"][0]["text"]
print(result_text)
Expand Down

0 comments on commit 0ae0372

Please sign in to comment.