From efbae959986d52bd5b38af0cdb76bedb1ca5b206 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 19 Jan 2024 14:24:11 +0100 Subject: [PATCH] add seed and temperature to the zeroshot config --- tutorials/llm_clinical_trials/configs/ner_zeroshot_openai.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/llm_clinical_trials/configs/ner_zeroshot_openai.cfg b/tutorials/llm_clinical_trials/configs/ner_zeroshot_openai.cfg index fc152e9b..33e1bdb8 100644 --- a/tutorials/llm_clinical_trials/configs/ner_zeroshot_openai.cfg +++ b/tutorials/llm_clinical_trials/configs/ner_zeroshot_openai.cfg @@ -10,6 +10,7 @@ factory = "llm" [components.llm.model] @llm_models = "spacy.GPT-4.v2" +config = {"seed": 342, "temperature": 0.0} [components.llm.task] @llm_tasks = "spacy.NER.v2"