Rename pages/Introduction of Natural Language Processing.py to pages/22.Introduction of Natural Language Processing.py
460e1fa
verified
import streamlit as st | |
def main(): | |
st.title("Natural Language Processing (NLP)") | |
st.markdown( | |
""" | |
### What is NLP? | |
NLP (Natural Language Processing) is a branch of artificial intelligence (AI) that enables computers to understand, interpret, and generate human language. It combines linguistics and machine learning techniques to process text and speech data. | |
""" | |
) | |
# Button to redirect to another Hugging Face space | |
if st.button("Explore More"): | |
st.markdown( | |
'<a href="https://huggingface.co/spaces/shwetashweta05/Natural_language_processing" target="_blank">Click here to explore!</a>', | |
unsafe_allow_html=True, | |
) | |
if __name__ == "__main__": | |
main() | |