CoolFace
Apppublic

3rdn4/openhands_official_evaluation

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.py19 linesDownload Raw Back to root
1"""Streamlit visualizer for the evaluation model outputs.2 3Run the following command to start the visualizer:4    streamlit run app.py --server.port 8501 --server.address 0.0.0.05NOTE: YOU SHOULD BE AT THE ROOT OF THE REPOSITORY TO RUN THIS COMMAND.6"""7import streamlit as st8st.set_page_config(layout="wide")9 10home_page = st.Page("pages/0_๐Ÿ“Š_OpenHands_Benchmark.py", title="OpenHands Benchmark", icon="๐Ÿ“Š")11swe_bench_page = st.Page("pages/1_๐Ÿ”Ž_SWEBench_Visualizer.py", title="SWE-Bench Visualizer", icon="๐Ÿ”Ž")12pg = st.navigation([13    home_page,14    swe_bench_page15])16# st.sidebar.success("Select a tab above for visualization about a particular dataset.")17pg.run()18 19 
3rdn4/openhands_official_evaluation ยท CoolFace