Nucha commited on
Commit
d632c67
·
verified ·
1 Parent(s): 5cd743d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -14,7 +14,15 @@ col1, col2 = st.columns(2)
14
 
15
  with col1:
16
  st.header("Input")
17
- default_text="To enhance my programming skills, I took online courses in Python, PHP, and cloud computing technologies. The workshop on machine learning taught me valuable skills in TensorFlow and neural networks."
 
 
 
 
 
 
 
 
18
  text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
19
  analyze_button = st.button("Analyze")
20
 
 
14
 
15
  with col1:
16
  st.header("Input")
17
+ default_text="""
18
+ To enhance my programming skills, I took online courses in Python, PHP, and cloud computing technologies.
19
+ The workshop on machine learning taught me valuable skills in TensorFlow and neural networks.
20
+ The developer utilized Python for backend development and JavaScript for frontend, ensuring a seamless user experience.
21
+ In my previous role, I collaborated with data scientists to implement machine learning models using R and TensorFlow.
22
+ I have strong communication skills and excel in teamwork.
23
+ My problem-solving ability has helped me overcome many challenges in projects.
24
+ I pride myself on my adaptability and ability to work under pressure.
25
+ """
26
  text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
27
  analyze_button = st.button("Analyze")
28