Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh committed Jan 4, 2025
1 parent 4b2da72 commit 6054c90
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions add_results_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,7 @@ def get_table_header(division, category):
<tr>"""

for i in range(num_scenarios):
html_table_head += f"""
{accuracy_achieved_header}
html_table_head += f"""{accuracy_achieved_header}
<td>Metric</td>
<td>Performance</td>"""

Expand Down Expand Up @@ -348,7 +347,7 @@ def get_table_header(division, category):
html_table += f"""<td>{data[model][scenario]["Accuracy"]}</td>"""
html_table += f"""<td>{data[model][scenario]["Performance_Units"]}</td> <td>{data[model][scenario]["Performance_Result"]}</td>"""
else:
if "MultiStream" in required_scenarios_edge: #must be open
if "SingleStream" in required_scenarios_edge: #must be open
html_table += scenario_missing_td
else:
html_table += f"""<td colspan="{colspan}"> N/A </td>"""
Expand Down

0 comments on commit 6054c90

Please sign in to comment.