Spaces:
Running
Running
dbleek
commited on
Commit
•
b6121f8
1
Parent(s):
38aee5a
fixed typo
Browse files- milestone-3.py +2 -1
milestone-3.py
CHANGED
@@ -46,7 +46,8 @@ applications = {}
|
|
46 |
for ds_index, example in enumerate(dataset):
|
47 |
applications.update({example["patent_number"]: ds_index})
|
48 |
st.selectbox(
|
49 |
-
"Select a sample patent application:", applications, on_change=load_data, key="id"
|
|
|
50 |
|
51 |
# Sample title/decision displayed for additional context only, not used with model
|
52 |
st.text_input("Sample Title", key="title", value=dataset[0]["title"],)
|
|
|
46 |
for ds_index, example in enumerate(dataset):
|
47 |
applications.update({example["patent_number"]: ds_index})
|
48 |
st.selectbox(
|
49 |
+
"Select a sample patent application:", applications, on_change=load_data, key="id"
|
50 |
+
)
|
51 |
|
52 |
# Sample title/decision displayed for additional context only, not used with model
|
53 |
st.text_input("Sample Title", key="title", value=dataset[0]["title"],)
|