@@ -726,9 +726,18 @@ <h2 class="title is-3 has-text-centered">Evaluation Framework</h2>
726726 />
727727 </ div >
728728 < div class ="content has-text-justified ">
729- < p > Our evaluation framework employs three core metrics:</ p >
729+ < p > Our evaluation framework employs four core metrics:</ p >
730730 < div class ="columns " style ="margin-top: 10px ">
731- < div class ="column is-4 ">
731+ < div class ="column is-3 ">
732+ < div class ="box ">
733+ < h5 class ="title is-5 "> 🔧 Render Score (T/V)</ h5 >
734+ < p style ="text-align: left ">
735+ Measures the percentage of generated code that can be
736+ successfully loaded or rendered into images
737+ </ p >
738+ </ div >
739+ </ div >
740+ < div class ="column is-3 ">
732741 < div class ="box ">
733742 < h5 class ="title is-5 "> ✓ Syntax Score (T)</ h5 >
734743 < p style ="text-align: left ">
@@ -737,7 +746,7 @@ <h5 class="title is-5">✓ Syntax Score (T)</h5>
737746 </ p >
738747 </ div >
739748 </ div >
740- < div class ="column is-4 ">
749+ < div class ="column is-3 ">
741750 < div class ="box ">
742751 < h5 class ="title is-5 "> 🔍 Keyword Matching (V)</ h5 >
743752 < p style ="text-align: left ">
@@ -746,7 +755,7 @@ <h5 class="title is-5">🔍 Keyword Matching (V)</h5>
746755 </ p >
747756 </ div >
748757 </ div >
749- < div class ="column is-4 ">
758+ < div class ="column is-3 ">
750759 < div class ="box ">
751760 < h5 class ="title is-5 "> 👁️ VQA Score (V)</ h5 >
752761 < p style ="text-align: left ">
@@ -756,6 +765,37 @@ <h5 class="title is-5">👁️ VQA Score (V)</h5>
756765 </ div >
757766 </ div >
758767 </ div >
768+
769+ < div style ="margin-top: 40px ">
770+ < h3 class ="title is-4 has-text-centered "> Score Aggregation Methods</ h3 >
771+ < div class ="columns " style ="margin-top: 20px ">
772+ < div class ="column is-6 ">
773+ < div class ="box has-background-info-light ">
774+ < h5 class ="title is-5 has-text-centered "> 🎨 Renderable Formats</ h5 >
775+ < p class ="has-text-centered " style ="margin-bottom: 15px ">
776+ < em > HTML, React, SVG, LaTeX, Mermaid, etc.</ em >
777+ </ p >
778+ < div class ="content ">
779+ < pre style ="background: #f5f5f5; padding: 15px; border-radius: 5px; font-size: 0.9em; "> final_score = (0.2 × render_score) +
780+ (0.1 × keyword_matching) +
781+ (0.7 × vqa_score)</ pre >
782+ </ div >
783+ </ div >
784+ </ div >
785+ < div class ="column is-6 ">
786+ < div class ="box has-background-light ">
787+ < h5 class ="title is-5 has-text-centered "> 📝 Non-Renderable Formats</ h5 >
788+ < p class ="has-text-centered " style ="margin-bottom: 15px ">
789+ < em > JSON, XML, YAML, CSV, TOML</ em >
790+ </ p >
791+ < div class ="content ">
792+ < pre style ="background: #f5f5f5; padding: 15px; border-radius: 5px; font-size: 0.9em; "> final_score = (0.2 × render_score) +
793+ (0.8 × syntax_score)</ pre >
794+ </ div >
795+ </ div >
796+ </ div >
797+ </ div >
798+ </ div >
759799 </ div >
760800 </ div >
761801 </ div >
0 commit comments