diff --git a/README.md b/README.md index 63bc2b07..27f51d12 100644 --- a/README.md +++ b/README.md @@ -445,9 +445,9 @@ If you find this project useful, please consider citing our tool: ``` @misc{dingo, - title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models}, + title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models}, author={Dingo Contributors}, - howpublished={\url{https://github.com/DataEval/dingo}}, + howpublished={\url{https://github.com/MigoXLab/dingo}}, year={2024} } ``` diff --git a/README_ja.md b/README_ja.md index 8c3ea279..61023e97 100644 --- a/README_ja.md +++ b/README_ja.md @@ -438,9 +438,9 @@ result = executor.execute() ``` @misc{dingo, - title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models}, + title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models}, author={Dingo Contributors}, - howpublished={\url{https://github.com/DataEval/dingo}}, + howpublished={\url{https://github.com/MigoXLab/dingo}}, year={2024} } ``` diff --git a/README_zh-CN.md b/README_zh-CN.md index 3fcc4e19..08c7601a 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -444,9 +444,9 @@ If you find this project useful, please consider citing our tool: ``` @misc{dingo, - title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models}, + title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models}, author={Dingo Contributors}, - howpublished={\url{https://github.com/DataEval/dingo}}, + howpublished={\url{https://github.com/MigoXLab/dingo}}, year={2024} } ``` diff --git a/app_gradio/app.py b/app_gradio/app.py index b30eaaed..1294d69d 100644 --- a/app_gradio/app.py +++ b/app_gradio/app.py @@ -369,7 +369,7 @@ def get_data_column_mapping(): visible=False ) column_content = gr.Textbox( - value="", + value="content", placeholder="Column name of content in the input file. If exists multiple levels, use '.' separate", label="column_content", visible=False @@ -388,7 +388,7 @@ def get_data_column_mapping(): # 修改输出组件部分,使用Tabs with gr.Tabs(): with gr.Tab("Result Summary"): - summary_output = gr.Textbox(label="summary", max_lines=50) + summary_output = gr.JSON(label="summary", max_height=800) with gr.Tab("Result Detail"): detail_output = gr.JSON(label="detail", max_height=800) # 使用JSON组件来更好地展示结构化数据 diff --git a/docs/assets/wechat.jpg b/docs/assets/wechat.jpg index f979cf17..ffb2ad70 100644 Binary files a/docs/assets/wechat.jpg and b/docs/assets/wechat.jpg differ diff --git a/requirements/runtime.txt b/requirements/runtime.txt index 3b5dcfac..1dd9b874 100644 --- a/requirements/runtime.txt +++ b/requirements/runtime.txt @@ -9,7 +9,7 @@ huggingface_hub jieba jsonlines langid -openai==1.56.2 +openai>=1.56.2 opencv-python packaging>=24.1 pandas diff --git a/setup.py b/setup.py index 1fef194f..93b84d8a 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_data_files(directory): setup( name="dingo-python", - version="1.11.0", + version="1.11.1", author="Dingo", description="A Comprehensive AI Data Quality Evaluation Tool for Large Models", long_description=long_description,