Nucha commited on
Commit
f4abe81
·
verified ·
1 Parent(s): 325248e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -15
app.py CHANGED
@@ -78,21 +78,22 @@ with col1:
78
  # แสดงผล Named Entity Annotation
79
  st.markdown("##### Named Entity Annotation (Tagging)")
80
 
81
- default_text = """Job Description:
82
- We are seeking a talented Software Engineering to join our dynamic team at Technology Innovations Inc. You will be responsible for designing, developing, and maintaining software applications that meet the needs of our clients.
83
- Key Responsibilities:
84
- Develop high-quality software design and architecture
85
- Identify, prioritize, and execute tasks in the software development life cycle
86
- Review and debug code
87
- Collaborate with other developers and engineers to ensure software quality
88
- Required Qualifications:
89
- Bachelor s degree in Computer Science or related field
90
- Proven experience as a Software Engineer or similar role
91
- Familiarity with Agile development methodologies
92
- Proficiency in programming languages such as Python or C#
93
- Strong problem-solving skills and the ability to a team work
94
- Preferred Qualifications: english language communication
95
- """
 
96
  text = st.text_area("Enter text for NER analysis:", value=default_text, height=400)
97
  analyze_button = st.button("Analyze")
98
 
 
78
  # แสดงผล Named Entity Annotation
79
  st.markdown("##### Named Entity Annotation (Tagging)")
80
 
81
+ default_text = """
82
+ Job Description:
83
+ We are seeking a talented Software Engineering to join our dynamic team at Technology Innovations Inc. You will be responsible for designing, developing, and maintaining software applications that meet the needs of our clients.
84
+ Key Responsibilities:
85
+ Develop high-quality software design and architecture
86
+ Identify, prioritize, and execute tasks in the software development life cycle
87
+ Review and debug code
88
+ Collaborate with other developers and engineers to ensure software quality
89
+ Required Qualifications:
90
+ Bachelor s degree in Computer Science or related field
91
+ Proven experience as a Software Engineer or similar role
92
+ Familiarity with Agile development methodologies
93
+ Proficiency in programming languages such as Python or C#
94
+ Strong problem-solving skills and the ability to a team work
95
+ Preferred Qualifications: english language communication
96
+ """
97
  text = st.text_area("Enter text for NER analysis:", value=default_text, height=400)
98
  analyze_button = st.button("Analyze")
99