Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -142,7 +142,7 @@ css = """
|
|
142 |
# Gradio App
|
143 |
with gr.Blocks(css=css) as app:
|
144 |
with gr.Row():
|
145 |
-
gr.HTML('<div id="header">R-
|
146 |
with gr.Row():
|
147 |
gr.HTML(
|
148 |
"""
|
@@ -203,19 +203,26 @@ with gr.Blocks(css=css) as app:
|
|
203 |
"""
|
204 |
)
|
205 |
|
206 |
-
with gr.Accordion("
|
207 |
gr.Markdown(
|
208 |
"""
|
209 |
```
|
210 |
-
@inproceedings{
|
211 |
-
title={
|
212 |
-
author={
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
}
|
217 |
```
|
218 |
"""
|
219 |
)
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
app.launch()
|
|
|
142 |
# Gradio App
|
143 |
with gr.Blocks(css=css) as app:
|
144 |
with gr.Row():
|
145 |
+
gr.HTML('<div id="header">R-Detect "Human-Rewritten or LLM-Generated"</div>')
|
146 |
with gr.Row():
|
147 |
gr.HTML(
|
148 |
"""
|
|
|
203 |
"""
|
204 |
)
|
205 |
|
206 |
+
with gr.Accordion("Citation", open=True, elem_classes=["accordion"]):
|
207 |
gr.Markdown(
|
208 |
"""
|
209 |
```
|
210 |
+
@inproceedings{song2025deep,
|
211 |
+
title = {Deep Kernel Relative Test for Machine-generated Text Detection},
|
212 |
+
author = {Yiliao Song and Zhenqiao Yuan and Shuhai Zhang and Zhen Fang and Jun Yu and Feng Liu},
|
213 |
+
booktitle = {The Twelfth International Conference on Learning Representations},
|
214 |
+
year = {2025},
|
215 |
+
url = {https://openreview.net/pdf?id=z9j7wctoGV}
|
216 |
}
|
217 |
```
|
218 |
"""
|
219 |
)
|
220 |
|
221 |
+
with gr.Accordion("Acknowledgement", open=True, elem_classes=["accordion"]):
|
222 |
+
gr.Markdown(
|
223 |
+
"""
|
224 |
+
acknowledgement = {Coin Wang and Jerry Ye},
|
225 |
+
"""
|
226 |
+
)
|
227 |
+
|
228 |
app.launch()
|