File size: 623 Bytes
08fba49
 
 
 
b8dbcb9
08fba49
 
 
 
 
46a52fc
5fa5e9a
46a52fc
5fa5e9a
46a52fc
5fa5e9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
from datasets import load_dataset

dataset = load_dataset("reshinthadith/pairwise-code-review-instruct-critique-revision-python")
total_length = len(dataset["train"])

st.title('Pairwise Comparison')
with st.form("dataset_form"):
    len_index = st.slider('Dataset Index', 0, total_length,0)
    if st.form_submit_button("Load"):
        st.markdown("## Question")
        st.text(dataset["train"]["prompt"][len_index])
        st.markdown("## Chosen")
        st.text(dataset["train"]["chosen"][len_index])
        st.markdown("## Rejected")
        st.text(dataset["train"]["rejected"][len_index])