Update
Browse files
app.py
CHANGED
@@ -208,9 +208,12 @@ with demo:
|
|
208 |
y_lim=(-model_cnt - 1, 4),
|
209 |
tooltip=["bug_id", "method_name", "time", "bug_type"],
|
210 |
)
|
211 |
-
gr.
|
212 |
-
|
213 |
-
gr.
|
|
|
|
|
|
|
214 |
fixed_bug_title_id_pairs = [(bug_id_to_title[bug_id], bug_id) for bug_id in sorted(fixed_bug_ids)]
|
215 |
with gr.Row():
|
216 |
inspect_issue = gr.Dropdown(fixed_bug_title_id_pairs, label="Inspct Issue", interactive=True)
|
|
|
208 |
y_lim=(-model_cnt - 1, 4),
|
209 |
tooltip=["bug_id", "method_name", "time", "bug_type"],
|
210 |
)
|
211 |
+
with gr.Row():
|
212 |
+
gr.Dataframe(fixed_by_cat_df)
|
213 |
+
with gr.Row():
|
214 |
+
gr.Dataframe(fixed_by_comp_df)
|
215 |
+
with gr.Row():
|
216 |
+
gr.Dataframe(unique_bugs_df)
|
217 |
fixed_bug_title_id_pairs = [(bug_id_to_title[bug_id], bug_id) for bug_id in sorted(fixed_bug_ids)]
|
218 |
with gr.Row():
|
219 |
inspect_issue = gr.Dropdown(fixed_bug_title_id_pairs, label="Inspct Issue", interactive=True)
|