|
import streamlit as st |
|
|
|
|
|
st.title("π Welcome to the NLP Application!") |
|
|
|
st.subheader("π Introduction to Natural Language Processing (NLP)") |
|
with st.expander("What is NLP? π€"): |
|
st.write(""" |
|
**Natural Language Processing (NLP)** is a field at the intersection of **Artificial Intelligence** and **Linguistics**. |
|
It enables machines to understand, interpret, and generate human language. From **speech recognition** to **text summarization** and **machine translation**, NLP is a game changer in technology. |
|
""") |
|
|
|
st.subheader("π Key NLP Tasks") |
|
tasks = [ |
|
"Text Classification: Assigning predefined labels to text (e.g., spam detection).", |
|
"Named Entity Recognition (NER): Identifying entities like names, dates, locations, etc.", |
|
"Sentiment Analysis: Determining the sentiment (positive, negative, neutral) of text.", |
|
"Part-of-Speech (POS) Tagging: Identifying the grammatical components (e.g., noun, verb).", |
|
"Machine Translation: Translating text from one language to another.", |
|
"Text Generation: Creating meaningful text based on input." |
|
] |
|
|
|
for task in tasks: |
|
st.write(f"β
{task}") |
|
|
|
st.subheader("π‘ Why is NLP Important?") |
|
st.write( |
|
"With vast amounts of unstructured textual data online, NLP helps extract insights, automate tasks, and provide personalized services. From chatbots to recommendation systems and search engines, NLP is reshaping human-computer interactions." |
|
) |
|
|
|
st.title("π€ About the Creator") |
|
st.write(""" |
|
**Hi there! π I'm Gopi Krishna Venigandla**, an **AI enthusiast** and **Data Science professional**. |
|
With a background in **Machine Learning**, I specialize in: |
|
""") |
|
|
|
with st.expander("π οΈ My Skills"): |
|
skills = { |
|
"Programming": "Python, R, SQL", |
|
"Data Visualization": "Tableau, Power BI, Matplotlib", |
|
"Machine Learning": "Scikit-Learn" |
|
} |
|
|
|
for category, skillset in skills.items(): |
|
st.write(f"**{category}**: {skillset}") |
|
|
|
st.title("π¬ Connect with Me") |
|
st.write("[LinkedIn](https://www.linkedin.com/in/gopi-krishna-aa8641308/)") |
|
st.write("π§ Email: [[email protected]](mailto:[email protected])") |
|
st.write("π Contact: 8309183669") |
|
|
|
|
|
st.markdown(""" |
|
--- |
|
<center> |
|
<p style='font-size:14px; color:#888;'> Β© 2024 AI & Data Science Hub. All Rights Reserved. </p> |
|
</center> |
|
""", unsafe_allow_html=True) |
|
|