Skip to content

Commit 975f4af

Browse files
gustavocidornelaswhoseoyster
authored andcommitted
Remove LLM subtasks in favor of base LLM task type
1 parent d927d5e commit 975f4af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/llms/ner/entity-extraction.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@
453453
"\n",
454454
"project = client.create_or_load_project(\n",
455455
" name=\"NER with LLMs\",\n",
456-
" task_type=TaskType.LLMNER,\n",
456+
" task_type=TaskType.LLM,\n",
457457
" description=\"Evaluating entity extracting LLM.\"\n",
458458
")"
459459
]

examples/llms/question-answering/website-faq.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
"\n",
218218
"project = client.create_or_load_project(\n",
219219
" name=\"QA with LLMs\",\n",
220-
" task_type=TaskType.LLMQuestionAnswering,\n",
220+
" task_type=TaskType.LLM,\n",
221221
" description=\"Evaluating an LLM used for QA.\"\n",
222222
")"
223223
]

examples/llms/summarization/meeting-notes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
"\n",
397397
"project = client.create_or_load_project(\n",
398398
" name=\"Summarizing with LLMs\",\n",
399-
" task_type=TaskType.LLMSummarization,\n",
399+
" task_type=TaskType.LLM,\n",
400400
" description=\"Evaluating an LLM that summarizes meeting notes.\"\n",
401401
")"
402402
]

examples/llms/translation/portuguese-translations.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
"\n",
230230
"project = client.create_or_load_project(\n",
231231
" name=\"Translation with LLMs\",\n",
232-
" task_type=TaskType.LLMTranslation,\n",
232+
" task_type=TaskType.LLM,\n",
233233
" description=\"Evaluating translations with an LLM from En -> Pt.\"\n",
234234
")"
235235
]

0 commit comments

Comments
 (0)