We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78597b commit b162b27Copy full SHA for b162b27
code/util/plot_autotrain_manager.py
@@ -104,6 +104,10 @@ def plot_manager_all_progress_bokeh_source(
104
axis=1,
105
)
106
df_to_draw.round(3)
107
+
108
+ # --- Remove rows with NaN in color or edge_color ---
109
+ # to fix a bug where non-normalized stages appears in the autotrain table
110
+ df_to_draw = df_to_draw.dropna(subset=["color", "edge_color"])
111
112
# --- Filter recent days ---
113
df_to_draw['session_date'] = pd.to_datetime(df_to_draw['session_date'])
0 commit comments