Lev McKinney commited on
Commit
e1b6e5d
1 Parent(s): 9814918

removed dark theme from plot

Browse files
Files changed (1) hide show
  1. app.py +0 -6
app.py CHANGED
@@ -42,12 +42,6 @@ def make_plot(lens, text, statistic, token_cutoff):
42
  start_pos=max(len(input_ids[0]) - token_cutoff, 0),
43
  statistic=statistic_options_dict[statistic],
44
  )
45
- fig.update_layout(template="plotly_dark")
46
-
47
- # Update the colorscale of the heatmap trace
48
- for trace in fig.data:
49
- if trace.type == "heatmap":
50
- trace.update(colorscale="Inferno")
51
 
52
  return fig
53
 
 
42
  start_pos=max(len(input_ids[0]) - token_cutoff, 0),
43
  statistic=statistic_options_dict[statistic],
44
  )
 
 
 
 
 
 
45
 
46
  return fig
47