From 8155bb70100110899f3ac04f0eb365f087d9f2af Mon Sep 17 00:00:00 2001 From: Sujee Maniyam Date: Wed, 30 Oct 2024 22:20:42 -0700 Subject: [PATCH] fixed model descriptions, clarified a comment Signed-off-by: Sujee Maniyam --- examples/notebooks/rag/rag_1A_dpk_process_ray.ipynb | 5 ++--- examples/notebooks/rag/rag_1D_query_replicate.ipynb | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/notebooks/rag/rag_1A_dpk_process_ray.ipynb b/examples/notebooks/rag/rag_1A_dpk_process_ray.ipynb index e41bc0613..8bdea1ff6 100644 --- a/examples/notebooks/rag/rag_1A_dpk_process_ray.ipynb +++ b/examples/notebooks/rag/rag_1A_dpk_process_ray.ipynb @@ -222,7 +222,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "b0cd8ebd-bf71-42d6-a397-8df0c7b66a26", "metadata": {}, "outputs": [ @@ -303,8 +303,7 @@ " \"data_files_to_use\": ast.literal_eval(\"['.pdf']\"),\n", " # orchestrator\n", " \"runtime_worker_options\": ParamsUtils.convert_to_ast(worker_options),\n", - " # \"runtime_num_workers\": MY_CONFIG.RAY_RUNTIME_WORKERS,\n", - " \"runtime_num_workers\": 1 , # Setting it to 1 for this particular run\n", + " \"runtime_num_workers\": 1, # so model download to cleanup works properly\n", " \"runtime_pipeline_id\": \"pipeline_id\",\n", " \"runtime_job_id\": \"job_id\",\n", " \"runtime_code_location\": ParamsUtils.convert_to_ast(code_location),\n", diff --git a/examples/notebooks/rag/rag_1D_query_replicate.ipynb b/examples/notebooks/rag/rag_1D_query_replicate.ipynb index 04bd4a0e5..5e94ac0e8 100644 --- a/examples/notebooks/rag/rag_1D_query_replicate.ipynb +++ b/examples/notebooks/rag/rag_1D_query_replicate.ipynb @@ -255,8 +255,8 @@ "| ibm-granite/granite-3.0-8b-instruct | IBM | 8 B | IBM's newest Granite Model v3.0 (default) |\n", "| ibm-granite/granite-3.0-2b-instruct | IBM | 2 B | IBM's newest Granite Model v3.0 |\n", "| meta/meta-llama-3.1-405b-instruct | Meta | 405 B | Meta's flagship 405 billion parameter language model |\n", - "| meta/meta-llama-3-8b-instruct | Meta | 8 B | |\n", - "| meta/meta-llama-3-70b-instruct | Meta | 70 B | |\n", + "| meta/meta-llama-3-8b-instruct | Meta | 8 B | Meta's 8 billion parameter language model |\n", + "| meta/meta-llama-3-70b-instruct | Meta | 70 B | Meta's 70 billion parameter language model |\n", "\n", "References \n", "\n",