codelion commited on
Commit
e46f9dd
·
verified ·
1 Parent(s): 181b7be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -130,13 +130,13 @@ def visualize_logprobs(json_input):
130
  with gr.Blocks(title="Log Probability Visualizer") as app:
131
  gr.Markdown("# Log Probability Visualizer")
132
  gr.Markdown(
133
- "Paste your JSON or Python dictionary log prob data below to visualize the tokens and their probabilities."
134
  )
135
 
136
  json_input = gr.Textbox(
137
  label="JSON Input",
138
  lines=10,
139
- placeholder="Paste your JSON or Python dict here...",
140
  )
141
 
142
  plot_output = gr.HTML(label="Log Probability Plot")
 
130
  with gr.Blocks(title="Log Probability Visualizer") as app:
131
  gr.Markdown("# Log Probability Visualizer")
132
  gr.Markdown(
133
+ "Paste your JSON log prob data below to visualize the tokens and their probabilities."
134
  )
135
 
136
  json_input = gr.Textbox(
137
  label="JSON Input",
138
  lines=10,
139
+ placeholder="Paste your JSON here (ensure property names are in double quotes, e.g., \"token\")...",
140
  )
141
 
142
  plot_output = gr.HTML(label="Log Probability Plot")