ayethuzar commited on
Commit
966415b
·
unverified ·
1 Parent(s): ba6bb47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,10 +12,10 @@ st.title('Can I Patent This?')
12
 
13
  st.write("This model is tuned with all patent applications submitted in Jan 2016 in [the Harvard USPTO patent dataset](https://github.com/suzgunmirac/hupd)")
14
 
15
- tuple_of_choices = ('Email', 'Home phone', 'Mobile phone')
16
 
17
  # steamlit form
18
- option = st.selectbox('How would you like to be contacted?', tuple_of_choices)
19
 
20
  st.write('You selected:', option)
21
 
 
12
 
13
  st.write("This model is tuned with all patent applications submitted in Jan 2016 in [the Harvard USPTO patent dataset](https://github.com/suzgunmirac/hupd)")
14
 
15
+ tuple_of_choices = ('patent_number', 'title', 'background', 'summary', 'description')
16
 
17
  # steamlit form
18
+ option = st.selectbox('Which other sections would you like to view?', tuple_of_choices)
19
 
20
  st.write('You selected:', option)
21