Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"\n",
"Before you begin, you will need to make sure you're in an environment where you have API access to Nemo Evaluator API, baseline model NIM, the customized model NIM, and a judge LLM NIM.\n",
"\n",
"For instructions on the above, please check out the detailed [Nemo Evaluator deployment guide](https://developer.nvidia.com/docs/nemo-microservices/evaluation/source/deploy-helm.html), and the [NIM deployment guide](https://developer.nvidia.com/docs/nemo-microservices/inference/getting_started/deploy-helm.html)."
"For instructions on the above, please check out the detailed [Nemo Evaluator deployment guide](https://docs.nvidia.com/nemo/microservices/latest/set-up/deploy-as-microservices/evaluator/parent-chart.html), and the [NIM deployment guide](https://developer.nvidia.com/docs/nemo-microservices/inference/getting_started/deploy-helm.html)."
]
},
{
Expand Down
6 changes: 4 additions & 2 deletions nemo/Evaluator/LLMAsAJudge/LLM As a Judge.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Upload dataset to NeMo Datastore"
"### Upload dataset to NeMo Datastore\n",
"\n",
"> NOTE: Your `DATASTORE_URL` should be in the format: `http://localhost:3000`."
]
},
{
Expand All @@ -112,7 +114,7 @@
"repo_type = \"dataset\"\n",
"dir_path = \"./llm_as_a_judge\"\n",
"\n",
"hf_api = hh.HfApi(endpoint=DATASTORE_URL, token=token)\n",
"hf_api = hh.HfApi(endpoint=f\"{DATASTORE_URL}/v1/hf\", token=token)\n",
"\n",
"# create repo\n",
"hf_api.create_repo(\n",
Expand Down