From f0c88ff322fc8a13f47af90212899261484377b8 Mon Sep 17 00:00:00 2001 From: Pat Alvarado Date: Mon, 16 Jun 2025 19:39:01 +0000 Subject: [PATCH] Modified the .ipynb files under Recipes, Resume Analyzer, and Knee Replacement use case directories to remove hard-coded colors to work with JupyterLab Dark Theme as well as JupyterLab Light Theme. --- .../Creating_Workshop_Notebooks.ipynb | 32 +- ..._Engineering_and_Feature_Store_Usage.ipynb | 662 +++++++++--------- .../Huggingface_model_STO_Python.ipynb | 70 +- ...Deploy_HyperSegmented_Model_Pipeline.ipynb | 126 ++-- .../NPath_Visualizer_Widget.ipynb | 64 +- Recipes/TD_Geo_Esri/TD_Geo_Esri.ipynb | 60 +- ...tomatic_DataPreprocessing_tdprepview.ipynb | 242 +++---- Recipes/tdprepview/startup.ipynb | 2 +- Resume_Analyzer/Introduction.ipynb | 34 +- ...Resume_Classification_model_training.ipynb | 120 ++-- .../Knee_Replacement_Attribution_SQL.ipynb | 176 ++--- .../Knee_Replacement_nPath_Python.ipynb | 182 ++--- 12 files changed, 885 insertions(+), 885 deletions(-) diff --git a/Recipes/Creating_Workshop_Notebooks/Creating_Workshop_Notebooks.ipynb b/Recipes/Creating_Workshop_Notebooks/Creating_Workshop_Notebooks.ipynb index 6d2a340c..be59a283 100644 --- a/Recipes/Creating_Workshop_Notebooks/Creating_Workshop_Notebooks.ipynb +++ b/Recipes/Creating_Workshop_Notebooks/Creating_Workshop_Notebooks.ipynb @@ -14,15 +14,15 @@ "\n", "\n", "\n", - "

Introduction

\n", + "

Introduction

\n", "\n", - "

In an era where customer and prospect engagement is vital, especially during workshops and training sessions, creating an interactive and impactful learning experience can significantly enhance outcomes. Workshops often involve passive learning, where participants either observe pre-written code demonstrations or execute them without active involvement. This results in shallow learning experiences, limited engagement, and challenges in catering to varied skill levels within an audience.
This notebook addresses these issues by converting code cells into interactive exercises. The create_exercise function intelligently replaces parts of the code in the original notebook with placeholders, requiring participants to actively fill in the gaps. It provides hints and solutions, enabling self-paced learning and accommodating diverse skill levels. Trainers can seamlessly integrate it into existing workshops, ensuring an engaging and productive environment.

\n", - "

Key Features

\n", - "
  • Interactive Exercises: Converts static code cells into exercises with placeholders.
  • \n", - "
  • Hints and Solutions: Offers guidance to participants and solutions that can be collapsed or expanded.
  • \n", - "
  • Self-Paced Learning: Supports individual progress while maintaining the workshop flow.
  • \n", - "
  • Seamless Integration: Works with existing demos in environments like Kiosk Experience.
  • \n", - "
  • Customizable Output: Allows trainers to adjust exercises and hints for relevance and clarity.
  • " + "

    In an era where customer and prospect engagement is vital, especially during workshops and training sessions, creating an interactive and impactful learning experience can significantly enhance outcomes. Workshops often involve passive learning, where participants either observe pre-written code demonstrations or execute them without active involvement. This results in shallow learning experiences, limited engagement, and challenges in catering to varied skill levels within an audience.
    This notebook addresses these issues by converting code cells into interactive exercises. The create_exercise function intelligently replaces parts of the code in the original notebook with placeholders, requiring participants to actively fill in the gaps. It provides hints and solutions, enabling self-paced learning and accommodating diverse skill levels. Trainers can seamlessly integrate it into existing workshops, ensuring an engaging and productive environment.

    \n", + "

    Key Features

    \n", + "
  • Interactive Exercises: Converts static code cells into exercises with placeholders.
  • \n", + "
  • Hints and Solutions: Offers guidance to participants and solutions that can be collapsed or expanded.
  • \n", + "
  • Self-Paced Learning: Supports individual progress while maintaining the workshop flow.
  • \n", + "
  • Seamless Integration: Works with existing demos in environments like Kiosk Experience.
  • \n", + "
  • Customizable Output: Allows trainers to adjust exercises and hints for relevance and clarity.
  • " ] }, { @@ -30,9 +30,9 @@ "id": "4b8d6485-f144-4258-a7b9-0f6dc9bc3676", "metadata": {}, "source": [ - "
    \n", - "

    1. Configure the environment

    \n", - "

    In the section, we import the required libraries, get the openAI key and the path of the notebook we want to create the excercise notebook for.

    " + "
    \n", + "

    1. Configure the environment

    \n", + "

    In the section, we import the required libraries, get the openAI key and the path of the notebook we want to create the excercise notebook for.

    " ] }, { @@ -64,7 +64,7 @@ "id": "6d9d2128-f302-4a74-9e41-53f801991d42", "metadata": {}, "source": [ - "

    Next we will get the path of the notebook we want to create the excercise notebook for.

    " + "

    Next we will get the path of the notebook we want to create the excercise notebook for.

    " ] }, { @@ -83,7 +83,7 @@ "id": "8e664235-2a63-4850-bec5-29ee6e7237a8", "metadata": {}, "source": [ - "

    Get the openAi key

    " + "

    Get the openAi key

    " ] }, { @@ -101,7 +101,7 @@ "id": "a9530a23-703a-41cf-9091-eabdbc42e25c", "metadata": {}, "source": [ - "

    Call the create_exercise code to create the excercise notebook.

    " + "

    Call the create_exercise code to create the excercise notebook.

    " ] }, { @@ -119,7 +119,7 @@ "id": "1bf339fb-9af4-4716-9e39-9b23f007d886", "metadata": {}, "source": [ - "

    The excercise notebook will be created at the same path as the original notebook having name \"_with-exercise\" appended at the end of notebook name. The next step is to review and adjust the notebook as required. The below image shows the original notebook and the exercise version notebook created using the python function above.

    \n", + "

    The excercise notebook will be created at the same path as the original notebook having name \"_with-exercise\" appended at the end of notebook name. The next step is to review and adjust the notebook as required. The below image shows the original notebook and the exercise version notebook created using the python function above.

    \n", "" ] }, @@ -128,7 +128,7 @@ "id": "d976f3b2-fa95-49af-bc0d-fbcbb3721ea9", "metadata": {}, "source": [ - "