Spaces:
Running
Running
only m3
Browse files
app.py
CHANGED
|
@@ -173,18 +173,19 @@ def m6(que, image):
|
|
| 173 |
|
| 174 |
|
| 175 |
def predict_answer(category, que, image):
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
|
|
|
| 188 |
|
| 189 |
|
| 190 |
|
|
|
|
| 173 |
|
| 174 |
|
| 175 |
def predict_answer(category, que, image):
|
| 176 |
+
return m3(que, image)
|
| 177 |
+
# if category == 0:
|
| 178 |
+
# return m1(que, image)
|
| 179 |
+
# elif category == 1:
|
| 180 |
+
# return m2(que, image)
|
| 181 |
+
# elif category == 2:
|
| 182 |
+
# return m3(que, image)
|
| 183 |
+
# elif category == 3:
|
| 184 |
+
# return m4(que, image)
|
| 185 |
+
# elif category == 4:
|
| 186 |
+
# return m5(que, image)
|
| 187 |
+
# else:
|
| 188 |
+
# return m6(que, image)
|
| 189 |
|
| 190 |
|
| 191 |
|