File size: 1,850 Bytes
225a4fc a07ee95 225a4fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import streamlit as st
def home_ui():
# Streamlit app title
st.title("Transformer-Based Text Classification Project π")
# Objective section
st.header("π Objective")
st.write("""
The primary objective of this project is to classify text into positive or negative sentiment using a
**Transformer-based pre-trained model**. This model helps in understanding the sentiment of user-provided text,
which can be useful in applications like customer feedback analysis, review classification, and more.
""")
# Tools used
st.header("π οΈ Tools Used")
st.write("""
This project leverages the following tools and technologies:
- **Python**: For data preprocessing and backend logic.
- **Hugging Face Transformers**: For leveraging pre-trained Transformer models.
- **PyTorch**: For model operations and predictions.
- **Docker** (optional): To containerize the application for deployment.
- **Mlflow** : For model tracking and version control.
- **Git**: For version control and collaboration.
- **Streamlit**: To create an interactive and user-friendly UI.
""")
# Architecture section
st.header("ποΈ Project Architecture")
st.write("""
The architecture of this project can be summarized in the following flow:
""")
# Display architecture image
architecture_image_path = "project_flow.svg" # Replace with your image path
st.image(architecture_image_path, caption="Project Architecture", use_column_width=True)
# Footer or additional information
st.write("---")
st.write("""
π‘ This application is designed to showcase the integration of **NLP** and **Machine Learning** with
an easy-to-use web interface. The predictions are generated in real-time, providing insights into text sentiments.
""")
|