Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.set_page_config(page_title="Neural Network Playground", layout="centered")
|
| 4 |
+
|
| 5 |
+
# Colorful, centered title with new theme
|
| 6 |
+
st.markdown(
|
| 7 |
+
"""
|
| 8 |
+
<h1 style='text-align: center; color: #FF6347; font-weight: bold;'>
|
| 9 |
+
🤖 Neural Network Playground
|
| 10 |
+
</h1>
|
| 11 |
+
""",
|
| 12 |
+
unsafe_allow_html=True
|
| 13 |
+
)
|
| 14 |
+
|
| 15 |
+
# Colorful, centered subtitle with new theme
|
| 16 |
+
st.markdown(
|
| 17 |
+
"""
|
| 18 |
+
<h3 style='text-align: center; color: #2E8B57; font-weight: normal;'>
|
| 19 |
+
Dive into the world of neural networks—explore and train with ease!
|
| 20 |
+
</h3>
|
| 21 |
+
""",
|
| 22 |
+
unsafe_allow_html=True
|
| 23 |
+
)
|
| 24 |
+
|
| 25 |
+
st.subheader("🔎 :blue[About the App:]")
|
| 26 |
+
|
| 27 |
+
st.markdown("""Neural Network Playground is an interactive tool designed for hands-on exploration of machine learning models.
|
| 28 |
+
Whether you're just starting or already exploring advanced concepts, this platform lets you:
|
| 29 |
+
- 🧑💻 Build and visualize neural networks with ease and fun.
|
| 30 |
+
- 🔬 Train models on interactive datasets with real-time updates.
|
| 31 |
+
- 🛠️ Experiment with various architectures and see instant results.
|
| 32 |
+
- 🧠 Adjust hyperparameters and observe their effects on model learning—live!
|
| 33 |
+
No coding required. Just pure, interactive learning.""")
|