Spaces:
Running
Running
import streamlit as st | |
from view_utils import default_page_setting, set_nav_bar | |
sidebar_placeholder = default_page_setting() | |
set_nav_bar( | |
False, sidebar_placeholder=sidebar_placeholder, toggle_hashstr="brief_intro_init" | |
) | |
st.image("va_en.png") | |
if st.session_state.korean: | |
st.info("μ¬λ¬λΆμ΄ μ λ‘λνλ νμΌμ μ κ·Έλ¦Όμ LLM μΆλ ₯λ€μ λλ€.") | |
with st.expander("ββ 무μμ μ λ‘λ νλμββ"): | |
st.info(open("guide_mds/input_jsonls_kr.md", encoding="UTF8").read()) | |
else: | |
st.info( | |
"What you upload is the generated responses of LLMs regarding the test prompts." | |
) | |
with st.expander("ββ What should I upload ββ"): | |
st.info(open("guide_mds/input_jsonls_en.md", encoding="UTF8").read()) | |
st.image("va_concept_new.png") | |
st.markdown( | |
""" | |
| |Current Practice|Varco Arena| | |
|-|-|-| | |
|Total no. matches|$$n_{\\text{model}}*\\|X\\|$$|$$(n_{\\text{model}}-1)*\\|X\\|$$| | |
|No. matches per LLM|$$\\|X\\|$$|$$\\left[\\|X\\|,\\|X\\|\\text{log}n_{\\text{model}}\\right]$$| | |
|Comparison type|reference-mediated (anchored) |direct| | |
""" | |
) | |
if st.session_state.korean: | |
st.info( | |
"Varco Arenaλ μ λ’°μ± μλ μμλ₯Ό λ μ μ νμμ λΉκ΅ λ΄μ μ»μ΄λ΄λ©°, μ΄λ¬ν νΉμ§μ LLM μ§μ λΉκ΅μ μ΄μ μΌλ‘λΆν° κΈ°μΈν©λλ€." | |
) | |
else: | |
st.info( | |
"Varco Arena takes advantage of direct comparison between LLM responses to guarantee better reliability in fewer number of total matches." | |
) | |