File size: 587 Bytes
9f3c7b7
65eef23
 
9f3c7b7
 
 
 
 
 
e2893d0
9f3c7b7
42f5f04
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from turtle import onclick
import streamlit as st

def reset():
    st.write("Reset clicked!")

memory = st.text_area(
    label="Edits applied",
    value="Who is the UK PM? Boris Johnson\nWhat team does Messi play for? PSG", 
    help="The are the edits that have been applied to the original model.")

reset = st.button("Reset edits", on_click=reset)

edit_input = st.text_input("Edit input", placeholder="e.g., 'What is the tallest mountain on Earth?'")
edit_label = st.text_input("Edit label", placeholder="e.g., 'Denali'", help="The desired output of the model for the edit input")