Spaces:
Runtime error
Runtime error
Commit
·
211c5c8
1
Parent(s):
59505b3
order of models
Browse files
app.py
CHANGED
@@ -232,10 +232,10 @@ def normalize_bbox(box, width, height, padding=0.005):
|
|
232 |
|
233 |
|
234 |
MODELS = {
|
235 |
-
TEXTRACT: run_textract,
|
236 |
LAYOUTLM: run_layoutlm,
|
237 |
DONUT: run_donut,
|
238 |
LILT: run_lilt,
|
|
|
239 |
}
|
240 |
|
241 |
|
|
|
232 |
|
233 |
|
234 |
MODELS = {
|
|
|
235 |
LAYOUTLM: run_layoutlm,
|
236 |
DONUT: run_donut,
|
237 |
LILT: run_lilt,
|
238 |
+
TEXTRACT: run_textract,
|
239 |
}
|
240 |
|
241 |
|