Skip to content

Commit 436fa31

Browse files
author
Raghav Dhall
committed
documentation: removed ProblemType column from dynamic tables
1 parent 28cabbb commit 436fa31

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

doc/doc_utils/jumpstart_doc_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,15 +274,14 @@ def create_jumpstart_model_table():
274274
):
275275
file_content_single_entry.append("\n")
276276
file_content_single_entry.append(".. list-table:: Available Models\n")
277-
file_content_single_entry.append(" :widths: 50 20 20 20 30 20\n")
277+
file_content_single_entry.append(" :widths: 50 20 20 20 20\n")
278278
file_content_single_entry.append(" :header-rows: 1\n")
279279
file_content_single_entry.append(" :class: datatable\n")
280280
file_content_single_entry.append("\n")
281281
file_content_single_entry.append(" * - Model ID\n")
282282
file_content_single_entry.append(" - Fine Tunable?\n")
283283
file_content_single_entry.append(" - Latest Version\n")
284284
file_content_single_entry.append(" - Min SDK Version\n")
285-
file_content_single_entry.append(" - Problem Type\n")
286285
file_content_single_entry.append(" - Source\n")
287286

288287
dynamic_table_files.append(
@@ -293,7 +292,6 @@ def create_jumpstart_model_table():
293292
file_content_single_entry.append(" - {}\n".format(model_spec["training_supported"]))
294293
file_content_single_entry.append(" - {}\n".format(model["version"]))
295294
file_content_single_entry.append(" - {}\n".format(model["min_version"]))
296-
file_content_single_entry.append(" - {}\n".format(model_task))
297295
file_content_single_entry.append(
298296
" - `{} <{}>`__\n".format(model_source, model_spec["url"])
299297
)

0 commit comments

Comments
 (0)