Skip to content

Commit b9180b1

Browse files
authored
Merge pull request #282 from shijinpjlab/dev_main
feat: merge main
2 parents 3c827bf + 0b67df1 commit b9180b1

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,9 @@ If you find this project useful, please consider citing our tool:
445445

446446
```
447447
@misc{dingo,
448-
title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models},
448+
title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models},
449449
author={Dingo Contributors},
450-
howpublished={\url{https://github.com/DataEval/dingo}},
450+
howpublished={\url{https://github.com/MigoXLab/dingo}},
451451
year={2024}
452452
}
453453
```

README_ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,9 @@ result = executor.execute()
438438

439439
```
440440
@misc{dingo,
441-
title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models},
441+
title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models},
442442
author={Dingo Contributors},
443-
howpublished={\url{https://github.com/DataEval/dingo}},
443+
howpublished={\url{https://github.com/MigoXLab/dingo}},
444444
year={2024}
445445
}
446446
```

README_zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,9 @@ If you find this project useful, please consider citing our tool:
444444

445445
```
446446
@misc{dingo,
447-
title={Dingo: A Comprehensive Data Quality Evaluation Tool for Large Models},
447+
title={Dingo: A Comprehensive AI Data Quality Evaluation Tool for Large Models},
448448
author={Dingo Contributors},
449-
howpublished={\url{https://github.com/DataEval/dingo}},
449+
howpublished={\url{https://github.com/MigoXLab/dingo}},
450450
year={2024}
451451
}
452452
```

app_gradio/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def get_data_column_mapping():
369369
visible=False
370370
)
371371
column_content = gr.Textbox(
372-
value="",
372+
value="content",
373373
placeholder="Column name of content in the input file. If exists multiple levels, use '.' separate",
374374
label="column_content",
375375
visible=False
@@ -388,7 +388,7 @@ def get_data_column_mapping():
388388
# 修改输出组件部分,使用Tabs
389389
with gr.Tabs():
390390
with gr.Tab("Result Summary"):
391-
summary_output = gr.Textbox(label="summary", max_lines=50)
391+
summary_output = gr.JSON(label="summary", max_height=800)
392392
with gr.Tab("Result Detail"):
393393
detail_output = gr.JSON(label="detail", max_height=800) # 使用JSON组件来更好地展示结构化数据
394394

docs/assets/wechat.jpg

5.76 KB
Loading

requirements/runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ huggingface_hub
99
jieba
1010
jsonlines
1111
langid
12-
openai==1.56.2
12+
openai>=1.56.2
1313
opencv-python
1414
packaging>=24.1
1515
pandas

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_data_files(directory):
2626

2727
setup(
2828
name="dingo-python",
29-
version="1.11.0",
29+
version="1.11.1",
3030
author="Dingo",
3131
description="A Comprehensive AI Data Quality Evaluation Tool for Large Models",
3232
long_description=long_description,

0 commit comments

Comments
 (0)