jer233 commited on
Commit
8e16534
·
verified ·
1 Parent(s): a3067c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -8
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-detect On HuggingFace</div>')
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("Citations", open=True, elem_classes=["accordion"]):
207
  gr.Markdown(
208
  """
209
  ```
210
- @inproceedings{zhangs2024MMDMP,
211
- title={Detecting Machine-Generated Texts by Multi-Population Aware Optimization for Maximum Mean Discrepancy},
212
- author={Zhang, Shuhai and Song, Yiliao and Yang, Jiahao and Li, Yuanqing and Han, Bo and Tan, Mingkui},
213
- acknowledgement ={Coin Wang and Jerry Ye},
214
- booktitle ={International Conference on Learning Representations (ICLR)},
215
- year={2024}
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()