Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -95,7 +95,7 @@ if choice == "Sketchpad input":
|
|
95 |
if pred_raw is not None:
|
96 |
pred_class, accuracy = labels[np.argmax(pred_raw)], np.max(pred_raw)*100
|
97 |
st.write(f"Class : {labels[np.argmax(pred_raw)]}")
|
98 |
-
st.write(f"with
|
99 |
|
100 |
st.divider()
|
101 |
strokes = Getdetail()[pred_class]['Strokes']
|
@@ -123,7 +123,7 @@ elif choice == "Image input":
|
|
123 |
if pred_raw is not None:
|
124 |
pred_class, accuracy = labels[np.argmax(pred_raw)], np.max(pred_raw)*100
|
125 |
st.write(f"Class : {labels[np.argmax(pred_raw)]}")
|
126 |
-
st.write(f"with
|
127 |
|
128 |
st.write('---------------------------------------')
|
129 |
strokes = Getdetail()[pred_class]['Strokes']
|
@@ -162,7 +162,7 @@ elif choice == "about NihonGO !":
|
|
162 |
st.markdown("- JLPTN5 : ระบบสามารถแยกแยะคันจิจำนวน 80 ตัวพื้นฐานตามเนื้อหาคันจิจากการสอบวัดระดับ JLPTN5")
|
163 |
st.image('total_kanji.png', caption='JLPTN5 Kanji detail')
|
164 |
st.subheader("Feature")
|
165 |
-
st.markdown(""" 1. บอกคันจิที่ระบบตรวจจับได้พร้อมกับค่าความเชื่อมั่น (
|
166 |
|
167 |
2. จำนวนเส้น stroke ที่ใช้ในการเขียนคันจิ
|
168 |
|
|
|
95 |
if pred_raw is not None:
|
96 |
pred_class, accuracy = labels[np.argmax(pred_raw)], np.max(pred_raw)*100
|
97 |
st.write(f"Class : {labels[np.argmax(pred_raw)]}")
|
98 |
+
st.write(f"with probability : {accuracy:.2f} %")
|
99 |
|
100 |
st.divider()
|
101 |
strokes = Getdetail()[pred_class]['Strokes']
|
|
|
123 |
if pred_raw is not None:
|
124 |
pred_class, accuracy = labels[np.argmax(pred_raw)], np.max(pred_raw)*100
|
125 |
st.write(f"Class : {labels[np.argmax(pred_raw)]}")
|
126 |
+
st.write(f"with probability : {accuracy:.2f} %")
|
127 |
|
128 |
st.write('---------------------------------------')
|
129 |
strokes = Getdetail()[pred_class]['Strokes']
|
|
|
162 |
st.markdown("- JLPTN5 : ระบบสามารถแยกแยะคันจิจำนวน 80 ตัวพื้นฐานตามเนื้อหาคันจิจากการสอบวัดระดับ JLPTN5")
|
163 |
st.image('total_kanji.png', caption='JLPTN5 Kanji detail')
|
164 |
st.subheader("Feature")
|
165 |
+
st.markdown(""" 1. บอกคันจิที่ระบบตรวจจับได้พร้อมกับค่าความเชื่อมั่น (probability score.)
|
166 |
|
167 |
2. จำนวนเส้น stroke ที่ใช้ในการเขียนคันจิ
|
168 |
|