Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -27,6 +27,10 @@ Knowledge in Software Engineering/Architecture is a plus.
|
|
27 |
"""
|
28 |
text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
|
29 |
analyze_button = st.button("Analyze")
|
|
|
|
|
|
|
|
|
30 |
|
31 |
with col2:
|
32 |
st.header("Result")
|
|
|
27 |
"""
|
28 |
text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
|
29 |
analyze_button = st.button("Analyze")
|
30 |
+
|
31 |
+
st.write("""**Example Inputs:**
|
32 |
+
- I am proficient in Python, Java, and machine learning.
|
33 |
+
- The candidate has experience with TensorFlow, data analysis, and cloud computing.""")
|
34 |
|
35 |
with col2:
|
36 |
st.header("Result")
|