Skip to content
Open
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
6 changes: 4 additions & 2 deletions notebooks/ml-function-classify/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
"metadata": {},
"outputs": [],
"source": [
"import json\n",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import needed for indenting json output in notebook

"import seaborn as sns\n",
"import pandas as pd\n",
"import numpy as np\n",
Expand Down Expand Up @@ -366,7 +367,8 @@
"target_column: survival_status\n",
"description: \"Titanic passenger survival prediction based on demographics and ticket info\"\n",
"runtime: cpu-small\n",
"selected_features: {\"mode\":\"*\",\"features\":null}"
"selected_features: {\"mode\":\"*\",\"features\":null}\n",
"force: True"
Comment on lines +370 to +371
Copy link
Contributor Author

@bharathts07 bharathts07 Oct 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@syutika added this force command based on you suggestion

]
},
{
Expand All @@ -388,7 +390,7 @@
"outputs": [],
"source": [
"# Display the training result\n",
"training_result"
"print(json.dumps(training_result, indent=4))"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For better indentation in output

]
},
{
Expand Down