Spaces:
Runtime error
Runtime error
cccmatthew
commited on
Commit
•
4ef9400
1
Parent(s):
7b875b3
trial run
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ example_sentences = [
|
|
62 |
sentence = st.selectbox('Choose an example sentence or type your own below:', example_sentences + ['Custom Input...'])
|
63 |
|
64 |
if sentence == 'Custom Input...':
|
65 |
-
sentence = st.text_input('Input your sentence here', '')
|
66 |
|
67 |
def merge_entities(sentence, entities):
|
68 |
entities = sorted(entities, key=lambda x: x['start'])
|
|
|
62 |
sentence = st.selectbox('Choose an example sentence or type your own below:', example_sentences + ['Custom Input...'])
|
63 |
|
64 |
if sentence == 'Custom Input...':
|
65 |
+
sentence = st.text_input('Input your sentence here:', '')
|
66 |
|
67 |
def merge_entities(sentence, entities):
|
68 |
entities = sorted(entities, key=lambda x: x['start'])
|