Trent commited on
Commit
d2acb47
·
1 Parent(s): 5d6dd83

Prompt for custom

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -192,9 +192,9 @@ For more cool information on sentence embeddings, see the [sBert project](https:
192
  male_text = st.text_input("Male-assumed Text", "He administered the vaccine and rubbed alcohol.")
193
  female_text = st.text_input("Female-assumed Text", "She administered the vaccine and rubbed alcohol.")
194
  else:
195
- base_text = st.text_input("Gender Neutral Text")
196
- male_text = st.text_input("Male-assumed Text")
197
- female_text = st.text_input("Female-assumed Text")
198
 
199
 
200
  enter = st.button("Compare")
 
192
  male_text = st.text_input("Male-assumed Text", "He administered the vaccine and rubbed alcohol.")
193
  female_text = st.text_input("Female-assumed Text", "She administered the vaccine and rubbed alcohol.")
194
  else:
195
+ base_text = st.text_input("Gender Neutral Text", "<Occupation> \"did something....\"")
196
+ male_text = st.text_input("Male-assumed Text", "He \"did something....\"")
197
+ female_text = st.text_input("Female-assumed Text", "She \"did something....\"")
198
 
199
 
200
  enter = st.button("Compare")