de-Rodrigo commited on
Commit
16e804d
·
1 Parent(s): 9ecd5cd

Minor Tweak to Filter Shchool Subsets

Browse files
Files changed (1) hide show
  1. app.py +16 -2
app.py CHANGED
@@ -1048,7 +1048,19 @@ def run_model(model_name):
1048
 
1049
  # -------------------------------------------------------------------------
1050
  # 4. Cálculo de distancias y scatter plot: Distance vs F1 (usando PC1 y PC2 globales)
1051
- model_options = ["es-digital-paragraph-degradation-seq", "es-digital-line-degradation-seq", "es-digital-seq", "es-digital-rotation-degradation-seq", "es-digital-zoom-degradation-seq", "es-render-seq"]
 
 
 
 
 
 
 
 
 
 
 
 
1052
  model_options_with_default = [""]
1053
  model_options_with_default.extend(model_options)
1054
 
@@ -1269,13 +1281,15 @@ def run_model(model_name):
1269
  'label': df_heatmap['name']
1270
  })
1271
  invisible_renderer = heatmap_fig.circle('x', 'y', size=10, source=source_points, fill_alpha=0, line_alpha=0.5)
1272
-
1273
  if select_extra_dataset_hm != "-":
1274
  df_extra = df_all["synthetic"][df_all["synthetic"]["source"] == select_extra_dataset_hm].copy()
1275
  df_extra["x"] = df_extra[x_comp]
1276
  df_extra["y"] = df_extra[y_comp]
1277
  if 'name' not in df_extra.columns:
1278
  df_extra["name"] = df_extra["img"].apply(lambda x: x.split("/")[-1].replace(".png", "") if isinstance(x, str) else x)
 
 
1279
  source_extra_points = ColumnDataSource(data={
1280
  'x': df_extra['x'],
1281
  'y': df_extra['y'],
 
1048
 
1049
  # -------------------------------------------------------------------------
1050
  # 4. Cálculo de distancias y scatter plot: Distance vs F1 (usando PC1 y PC2 globales)
1051
+ model_options = [
1052
+ "es-digital-paragraph-degradation-seq",
1053
+ "es-digital-line-degradation-seq",
1054
+ "es-digital-seq",
1055
+ "es-digital-rotation-degradation-seq",
1056
+ "es-digital-zoom-degradation-seq",
1057
+ "es-render-seq",
1058
+ "es-digital-seq_filtered_deus",
1059
+ "es-digital-seq_filtered_liceo",
1060
+ "es-digital-seq_filtered_lusitano",
1061
+ "es-digital-seq_filtered_monterraso",
1062
+ "es-digital-seq_filtered_patria"
1063
+ ]
1064
  model_options_with_default = [""]
1065
  model_options_with_default.extend(model_options)
1066
 
 
1281
  'label': df_heatmap['name']
1282
  })
1283
  invisible_renderer = heatmap_fig.circle('x', 'y', size=10, source=source_points, fill_alpha=0, line_alpha=0.5)
1284
+ # school = "patria"
1285
  if select_extra_dataset_hm != "-":
1286
  df_extra = df_all["synthetic"][df_all["synthetic"]["source"] == select_extra_dataset_hm].copy()
1287
  df_extra["x"] = df_extra[x_comp]
1288
  df_extra["y"] = df_extra[y_comp]
1289
  if 'name' not in df_extra.columns:
1290
  df_extra["name"] = df_extra["img"].apply(lambda x: x.split("/")[-1].replace(".png", "") if isinstance(x, str) else x)
1291
+ # mask = df_extra["name"].str.contains(school, case=False, na=False)
1292
+ # df_extra = df_extra[mask].copy()
1293
  source_extra_points = ColumnDataSource(data={
1294
  'x': df_extra['x'],
1295
  'y': df_extra['y'],