"docs/git@developer.sourcefind.cn:OpenDAS/mmdetection3d.git" did not exist on "9de2d96634ec8ab1f82381b5a914b0ccdab5e68a"
Commit e78edb19 authored by myhloli's avatar myhloli
Browse files

refactor(table): update default table model to Rapid Table

- Change the default table model from TABLE_MASTER to RAPID_TABLE
parent 240fe99e
...@@ -92,7 +92,7 @@ def get_table_recog_config(): ...@@ -92,7 +92,7 @@ def get_table_recog_config():
table_config = config.get('table-config') table_config = config.get('table-config')
if table_config is None: if table_config is None:
logger.warning(f"'table-config' not found in {CONFIG_FILE_NAME}, use 'False' as default") logger.warning(f"'table-config' not found in {CONFIG_FILE_NAME}, use 'False' as default")
return json.loads(f'{{"model": "{MODEL_NAME.TABLE_MASTER}","enable": false, "max_time": 400}}') return json.loads(f'{{"model": "{MODEL_NAME.RAPID_TABLE}","enable": false, "max_time": 400}}')
else: else:
return table_config return table_config
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment