Update app.py
Browse files
app.py
CHANGED
@@ -20,31 +20,12 @@ if user_input:
|
|
20 |
with st.spinner('Generating response...'):
|
21 |
response = pipe(contexted_ipnut)
|
22 |
st.write("Response:")
|
23 |
-
|
24 |
-
# Tokenize input to get token-level alignment
|
25 |
-
tokens = tokenizer(user_input, return_offsets_mapping=True, return_tensors='pt')
|
26 |
-
offset_mapping = tokens['offset_mapping'][0].numpy().tolist()
|
27 |
-
|
28 |
-
# Initialize the highlighted text
|
29 |
-
highlighted_text = ""
|
30 |
-
last_position = 0
|
31 |
-
|
32 |
# Process each entity and highlight the labeled words
|
33 |
for entity in response:
|
34 |
-
start, end = offset_mapping[entity['index']][0], offset_mapping[entity['index']][1]
|
35 |
label = entity['entity']
|
36 |
-
|
37 |
-
|
38 |
-
highlighted_text += user_input[last_position:start]
|
39 |
-
|
40 |
-
# Add the highlighted entity
|
41 |
-
highlighted_text += f'<mark style="background-color: #FFFF00;">{user_input[start:end]}</mark><sup>{label}</sup>'
|
42 |
-
|
43 |
-
# Update the last position
|
44 |
-
last_position = end
|
45 |
-
|
46 |
-
# Add remaining text after the last entity
|
47 |
-
highlighted_text += user_input[last_position:]
|
48 |
|
49 |
# Display the highlighted text using st.markdown
|
50 |
-
st.
|
|
|
20 |
with st.spinner('Generating response...'):
|
21 |
response = pipe(contexted_ipnut)
|
22 |
st.write("Response:")
|
23 |
+
tuples = ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
# Process each entity and highlight the labeled words
|
25 |
for entity in response:
|
|
|
26 |
label = entity['entity']
|
27 |
+
word = entity["word"]
|
28 |
+
tuples += f"{word}\t{label}\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
# Display the highlighted text using st.markdown
|
31 |
+
st.text(tuples)
|