DOMMETI commited on
Commit
741b7dd
·
verified ·
1 Parent(s): 753fbae

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +31 -31
Home.py CHANGED
@@ -4,17 +4,17 @@ from keras.models import load_model
4
  import numpy as np
5
  import cv2
6
 
7
- # --- Page Configuration ---
8
- st.set_page_config(page_title="Digit Recognizer", layout="centered")
9
 
10
- # --- Custom CSS Styling ---
11
  st.markdown("""
12
  <style>
13
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Outfit:wght@300;400;600&display=swap');
14
 
15
  html, body, [class*="css"] {
16
  font-family: 'Outfit', sans-serif;
17
- background: linear-gradient(to right, #0f0f0f, #1e1e2e);
18
  color: white;
19
  }
20
 
@@ -23,16 +23,27 @@ h1 {
23
  color: #00fff7;
24
  font-size: 3em;
25
  text-align: center;
26
- text-shadow: 0 0 15px #00fff7;
27
- margin-bottom: 10px;
28
  }
29
 
30
  p {
31
  text-align: center;
32
  font-size: 1.1em;
33
- color: #bbbbbb;
34
  margin-top: 0;
35
- margin-bottom: 35px;
 
 
 
 
 
 
 
 
 
 
 
36
  }
37
 
38
  .prediction-box {
@@ -43,8 +54,7 @@ p {
43
  background: rgba(255, 255, 255, 0.05);
44
  padding: 20px;
45
  border-radius: 15px;
46
- box-shadow: 0 0 12px rgba(0,255,255,0.4);
47
- margin-top: 25px;
48
  }
49
 
50
  .emoji {
@@ -55,13 +65,13 @@ p {
55
  </style>
56
  """, unsafe_allow_html=True)
57
 
58
- # --- Title + Instructions ---
59
  st.markdown("<h1>Digit Recognizer</h1>", unsafe_allow_html=True)
60
- st.markdown("<p>Draw a digit from 0–9 below. The AI will predict what you wrote.</p>", unsafe_allow_html=True)
61
 
62
- # --- Sidebar Controls ---
63
- st.sidebar.title("✏️ Drawing Settings")
64
- drawing_mode = st.sidebar.selectbox("Drawing Tool", ("freedraw", "line", "rect", "circle", "transform"))
65
  stroke_width = st.sidebar.slider("Stroke Width", 1, 25, 10)
66
  stroke_color = st.sidebar.color_picker("Stroke Color", "#FFFFFF")
67
  bg_color = st.sidebar.color_picker("Background Color", "#000000")
@@ -74,20 +84,10 @@ def load_mnist_model():
74
 
75
  model = load_mnist_model()
76
 
77
- # --- Centered Canvas Drawing Pad ---
78
- st.markdown("""
79
- <div style="display: flex; justify-content: center; align-items: center; padding: 30px 0;">
80
- <div style="
81
- background: rgba(255, 255, 255, 0.05);
82
- padding: 25px;
83
- border-radius: 20px;
84
- box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
85
- backdrop-filter: blur(10px);
86
- ">
87
- """, unsafe_allow_html=True)
88
-
89
  canvas_result = st_canvas(
90
- fill_color="rgba(255, 255, 255, 0.1)",
91
  stroke_width=stroke_width,
92
  stroke_color=stroke_color,
93
  background_color=bg_color,
@@ -97,10 +97,9 @@ canvas_result = st_canvas(
97
  drawing_mode=drawing_mode,
98
  key="canvas"
99
  )
 
100
 
101
- st.markdown("</div></div>", unsafe_allow_html=True)
102
-
103
- # --- Prediction Output ---
104
  if canvas_result.image_data is not None:
105
  img = cv2.cvtColor(canvas_result.image_data.astype("uint8"), cv2.COLOR_RGBA2GRAY)
106
  img_resized = cv2.resize(img, (28, 28))
@@ -113,3 +112,4 @@ if canvas_result.image_data is not None:
113
  st.markdown(f"<div class='prediction-box'>Prediction: {predicted_digit}</div>", unsafe_allow_html=True)
114
  st.markdown(f"<div class='emoji'>{['0️⃣','1️⃣','2️⃣','3️⃣','4️⃣','5️⃣','6️⃣','7️⃣','8️⃣','9️⃣'][predicted_digit]}</div>", unsafe_allow_html=True)
115
 
 
 
4
  import numpy as np
5
  import cv2
6
 
7
+ # --- Page Config ---
8
+ st.set_page_config(page_title="Digit AI", layout="centered")
9
 
10
+ # --- Custom UI Styling ---
11
  st.markdown("""
12
  <style>
13
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Outfit:wght@300;400;600&display=swap');
14
 
15
  html, body, [class*="css"] {
16
  font-family: 'Outfit', sans-serif;
17
+ background: linear-gradient(to right, #090909, #1f1c2c);
18
  color: white;
19
  }
20
 
 
23
  color: #00fff7;
24
  font-size: 3em;
25
  text-align: center;
26
+ text-shadow: 0 0 10px #00fff7;
27
+ margin-bottom: 0;
28
  }
29
 
30
  p {
31
  text-align: center;
32
  font-size: 1.1em;
33
+ color: #ccc;
34
  margin-top: 0;
35
+ margin-bottom: 30px;
36
+ }
37
+
38
+ .canvas-wrapper {
39
+ display: flex;
40
+ justify-content: center;
41
+ background: rgba(255,255,255,0.05);
42
+ padding: 25px;
43
+ border-radius: 25px;
44
+ box-shadow: 0 8px 24px rgba(0,255,255,0.1);
45
+ backdrop-filter: blur(10px);
46
+ margin-bottom: 30px;
47
  }
48
 
49
  .prediction-box {
 
54
  background: rgba(255, 255, 255, 0.05);
55
  padding: 20px;
56
  border-radius: 15px;
57
+ box-shadow: 0 0 15px rgba(0,255,255,0.4);
 
58
  }
59
 
60
  .emoji {
 
65
  </style>
66
  """, unsafe_allow_html=True)
67
 
68
+ # --- Title + Description ---
69
  st.markdown("<h1>Digit Recognizer</h1>", unsafe_allow_html=True)
70
+ st.markdown("<p>Draw a digit (0–9) below and see what the AI thinks it is!</p>", unsafe_allow_html=True)
71
 
72
+ # --- Sidebar Settings ---
73
+ st.sidebar.markdown("### ✏️ Drawing Settings")
74
+ drawing_mode = st.sidebar.selectbox("Tool", ("freedraw", "line", "rect", "circle", "transform"))
75
  stroke_width = st.sidebar.slider("Stroke Width", 1, 25, 10)
76
  stroke_color = st.sidebar.color_picker("Stroke Color", "#FFFFFF")
77
  bg_color = st.sidebar.color_picker("Background Color", "#000000")
 
84
 
85
  model = load_mnist_model()
86
 
87
+ # --- Canvas Drawing Area ---
88
+ st.markdown('<div class="canvas-wrapper">', unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
 
89
  canvas_result = st_canvas(
90
+ fill_color="rgba(255, 255, 255, 0.05)",
91
  stroke_width=stroke_width,
92
  stroke_color=stroke_color,
93
  background_color=bg_color,
 
97
  drawing_mode=drawing_mode,
98
  key="canvas"
99
  )
100
+ st.markdown('</div>', unsafe_allow_html=True)
101
 
102
+ # --- Prediction Display ---
 
 
103
  if canvas_result.image_data is not None:
104
  img = cv2.cvtColor(canvas_result.image_data.astype("uint8"), cv2.COLOR_RGBA2GRAY)
105
  img_resized = cv2.resize(img, (28, 28))
 
112
  st.markdown(f"<div class='prediction-box'>Prediction: {predicted_digit}</div>", unsafe_allow_html=True)
113
  st.markdown(f"<div class='emoji'>{['0️⃣','1️⃣','2️⃣','3️⃣','4️⃣','5️⃣','6️⃣','7️⃣','8️⃣','9️⃣'][predicted_digit]}</div>", unsafe_allow_html=True)
114
 
115
+