Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 = ('
|
16 |
|
17 |
# steamlit form
|
18 |
-
option = st.selectbox('
|
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 |
|