sotirios-slv commited on
Commit
c93d68b
·
verified ·
1 Parent(s): d5d984c

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (1) hide show
  1. dataset_wrangler.py +10 -8
dataset_wrangler.py CHANGED
@@ -125,14 +125,16 @@ def create_grid(df, palette_columns=["pal_1", "pal_3", "pal_5"]):
125
  p = figure(sizing_mode="stretch_width", max_width=1000, tools=TOOLS)
126
  p.grid.grid_line_color = None
127
  p.axis.visible = False
128
- hover = HoverTool(
129
- # tooltips=[
130
- # ("Title", "@titles"),
131
- # ("Date created", "@created"),
132
- # ("SLV Viewer", "@viewer_link"),
133
- # ]
134
- tt
135
- )
 
 
136
  p.add_tools(hover)
137
 
138
  radius = 12
 
125
  p = figure(sizing_mode="stretch_width", max_width=1000, tools=TOOLS)
126
  p.grid.grid_line_color = None
127
  p.axis.visible = False
128
+ # hover = HoverTool(
129
+ # # tooltips=[
130
+ # # ("Title", "@titles"),
131
+ # # ("Date created", "@created"),
132
+ # # ("SLV Viewer", "@viewer_link"),
133
+ # # ]
134
+ # tt
135
+ # )
136
+
137
+ hover = HoverTool(tooltips=tt)
138
  p.add_tools(hover)
139
 
140
  radius = 12