titipata commited on
Commit
ae94582
·
verified ·
1 Parent(s): 980e451

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -53,14 +53,12 @@ def predict(img):
53
  as a dictionary:
54
  {label: confidence, label: confidence, ...}
55
  """
56
- print("Input type:", type(img))
57
- print("Input type:", img.keys())
58
 
59
  try:
60
  if img is None or not isinstance(img, dict) or 'image' not in img:
61
  return {"Error": 1.0}
62
 
63
- img_data = img['layers'][0]
64
  img_gray = Image.fromarray(img_data).convert('L').resize((28, 28))
65
  img_tensor = transforms.ToTensor()(img_gray).unsqueeze(0)
66
 
@@ -78,7 +76,12 @@ def predict(img):
78
 
79
  demo = gr.Interface(
80
  fn=predict,
81
- inputs=gr.Sketchpad(label="Draw Here", brush=gr.Brush(default_size=20, default_color="#000000", colors=["#000000"]), image_mode="L"),
 
 
 
 
 
82
  outputs=gr.Label(label="Guess"),
83
  title="Thai Digit Handwritten Classification",
84
  description="ทดลองวาดภาพตัวอักษรเลขไทยลงใน Sketchpad ด้านล่างเพื่อทำนายผลตัวเลข ตั้งแต่ ๐ (ศูนย์) ๑ (หนึ่ง) ๒ (สอง) ๓ (สาม) ๔ (สี่) ๕ (ห้า) ๖ (หก) ๗ (เจ็ด) ๘ (แปด) จนถึง ๙ (เก้า)",
 
53
  as a dictionary:
54
  {label: confidence, label: confidence, ...}
55
  """
 
 
56
 
57
  try:
58
  if img is None or not isinstance(img, dict) or 'image' not in img:
59
  return {"Error": 1.0}
60
 
61
+ img_data = img['composite']
62
  img_gray = Image.fromarray(img_data).convert('L').resize((28, 28))
63
  img_tensor = transforms.ToTensor()(img_gray).unsqueeze(0)
64
 
 
76
 
77
  demo = gr.Interface(
78
  fn=predict,
79
+ inputs=gr.Sketchpad(
80
+ label="Draw Here",
81
+ brush=gr.Brush(default_size=20, default_color="#FFFFFF", colors=["#FFFFFF"]),
82
+ image_mode="L",
83
+ layers=False
84
+ ),
85
  outputs=gr.Label(label="Guess"),
86
  title="Thai Digit Handwritten Classification",
87
  description="ทดลองวาดภาพตัวอักษรเลขไทยลงใน Sketchpad ด้านล่างเพื่อทำนายผลตัวเลข ตั้งแต่ ๐ (ศูนย์) ๑ (หนึ่ง) ๒ (สอง) ๓ (สาม) ๔ (สี่) ๕ (ห้า) ๖ (หก) ๗ (เจ็ด) ๘ (แปด) จนถึง ๙ (เก้า)",