louiecerv commited on
Commit
9fb0d26
Β·
1 Parent(s): 96ef6c7

add the about this app

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -24,9 +24,24 @@ with open(model_path, "rb") as f:
24
  def main():
25
  # Streamlit app
26
  st.title("Customer Churn Prediction App")
27
- st.write("This app demonstrates how to use Hugging Face Datasets and Models for a "
28
- "real-world classification task: predicting customer churn.")
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  # --- Dataset Exploration ---
31
  st.header("Dataset Exploration")
32
  st.write("Let's explore the customer churn dataset:")
 
24
  def main():
25
  # Streamlit app
26
  st.title("Customer Churn Prediction App")
 
 
27
 
28
+ about = """## πŸ€— Hugging Face for Machine Learning
29
+
30
+ This app showcases the power of **Hugging Face** for ML applications:
31
+ - πŸ“‚ **Datasets**: Easily access and share datasets.
32
+ - 🧠 **Models**: Download and use pre-trained models or upload your own.
33
+ - 🌍 **Spaces**: Deploy your app effortlessly.
34
+
35
+ πŸ‘‰ **Explore Hugging Face** and build your own ML-powered projects!
36
+
37
+ ---
38
+ πŸš€ *Developed with Streamlit & Hugging Face πŸ€—*
39
+
40
+ **Created by: Louie F. Cervantes, M.Eng. (Information Engineering) (c) 2025 West Visayas State University**
41
+ """
42
+ with st.expander("About thiss app"):
43
+ st.markdown(about)
44
+
45
  # --- Dataset Exploration ---
46
  st.header("Dataset Exploration")
47
  st.write("Let's explore the customer churn dataset:")