Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -55,14 +55,14 @@ css = """
|
|
55 |
margin-right: 1px;
|
56 |
border-radius: 8px;
|
57 |
padding: 12px;
|
58 |
-
border: 2px
|
59 |
}
|
60 |
|
61 |
.output-text {
|
62 |
flex: 1; /* 1 part of the row */
|
63 |
border-radius: 8px;
|
64 |
padding: 12px;
|
65 |
-
border: 2px
|
66 |
}
|
67 |
|
68 |
/* Set button widths to match the Select Model width */
|
@@ -169,9 +169,9 @@ with gr.Blocks(css=css) as app:
|
|
169 |
with gr.Accordion("Disclaimer", open=False, elem_classes=["accordion"]):
|
170 |
gr.Markdown(
|
171 |
"""
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
)
|
176 |
|
177 |
with gr.Accordion("Citations", open=False, elem_classes=["accordion"]):
|
@@ -181,6 +181,7 @@ with gr.Blocks(css=css) as app:
|
|
181 |
@inproceedings{zhangs2024MMDMP,
|
182 |
title={Detecting Machine-Generated Texts by Multi-Population Aware Optimization for Maximum Mean Discrepancy},
|
183 |
author={Zhang, Shuhai and Song, Yiliao and Yang, Jiahao and Li, Yuanqing and Han, Bo and Tan, Mingkui},
|
|
|
184 |
booktitle = {International Conference on Learning Representations (ICLR)},
|
185 |
year={2024}
|
186 |
}
|
|
|
55 |
margin-right: 1px;
|
56 |
border-radius: 8px;
|
57 |
padding: 12px;
|
58 |
+
border: 2px solid #d1d1d1;
|
59 |
}
|
60 |
|
61 |
.output-text {
|
62 |
flex: 1; /* 1 part of the row */
|
63 |
border-radius: 8px;
|
64 |
padding: 12px;
|
65 |
+
border: 2px solid #d1d1d1;
|
66 |
}
|
67 |
|
68 |
/* Set button widths to match the Select Model width */
|
|
|
169 |
with gr.Accordion("Disclaimer", open=False, elem_classes=["accordion"]):
|
170 |
gr.Markdown(
|
171 |
"""
|
172 |
+
- **Disclaimer**: This tool is for demonstration purposes only. It is not a foolproof AI detector.
|
173 |
+
- **Accuracy**: Results may vary based on input length and quality.
|
174 |
+
"""
|
175 |
)
|
176 |
|
177 |
with gr.Accordion("Citations", open=False, elem_classes=["accordion"]):
|
|
|
181 |
@inproceedings{zhangs2024MMDMP,
|
182 |
title={Detecting Machine-Generated Texts by Multi-Population Aware Optimization for Maximum Mean Discrepancy},
|
183 |
author={Zhang, Shuhai and Song, Yiliao and Yang, Jiahao and Li, Yuanqing and Han, Bo and Tan, Mingkui},
|
184 |
+
acknowledgement ={Coin Wang and Jerry Ye},
|
185 |
booktitle = {International Conference on Learning Representations (ICLR)},
|
186 |
year={2024}
|
187 |
}
|