From 8cddbfdd5895050a3170a9e20ddc9fed5755d483 Mon Sep 17 00:00:00 2001 From: Donald Della Pietra Date: Thu, 21 Dec 2023 12:14:52 -0500 Subject: [PATCH] fix model name (#135) * update model name * Update data_augmenter.py --- synthesizer/scripts/data_augmenter.py | 2 +- synthesizer/scripts/rag_harness.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/synthesizer/scripts/data_augmenter.py b/synthesizer/scripts/data_augmenter.py index 3744181..c66caf0 100644 --- a/synthesizer/scripts/data_augmenter.py +++ b/synthesizer/scripts/data_augmenter.py @@ -55,7 +55,7 @@ def main( n_samples: int = 100, # LLM Settings llm_provider_name="sciphi", - llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", + llm_model_name="SciPhi/Sensei-7B-V1", llm_max_tokens_to_sample=128, llm_temperature=0.1, llm_top_k=100, diff --git a/synthesizer/scripts/rag_harness.py b/synthesizer/scripts/rag_harness.py index 05dee92..f2c4787 100644 --- a/synthesizer/scripts/rag_harness.py +++ b/synthesizer/scripts/rag_harness.py @@ -21,7 +21,7 @@ def main( # LLM Settings llm_provider_name="sciphi", - llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", + llm_model_name="SciPhi/Sensei-7B-V1", llm_max_tokens_to_sample=32, llm_temperature=0.1, llm_top_k=100,