From fdca94b5a881c692d03b9958aef520c14b2c3c54 Mon Sep 17 00:00:00 2001 From: emrgnt-cmplxty <68796651+emrgnt-cmplxty@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:06:05 -0500 Subject: [PATCH] Feature/update sciphi model (#132) * add output * remove broken pdf build * update model * tally distribution --- pyproject.toml | 2 +- synthesizer/scripts/data_augmenter.py | 2 +- synthesizer/scripts/rag_harness.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6bc6d2a..6f00c94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Owen Colegrove "] license = "Apache-2.0" readme = "README.md" name = 'sciphi-synthesizer' -version = '1.0.1' +version = '1.0.2' packages = [ { include = "synthesizer" } ] diff --git a/synthesizer/scripts/data_augmenter.py b/synthesizer/scripts/data_augmenter.py index e91bbb2..3744181 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-Mistral-7B-32k", + llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", 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 bd13ccc..05dee92 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-Mistral-7B-32k", + llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", llm_max_tokens_to_sample=32, llm_temperature=0.1, llm_top_k=100,