mihalykiss commited on
Commit
9be0260
Β·
1 Parent(s): fcf78e8

UI - theme

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -50,7 +50,9 @@ def classify_text(text):
50
  title = "Detect AI Generated Texts!"
51
  description = """
52
 
53
- -- πŸ€– - **Identify AI Models:** Reveals which LLM generated the text if detected as AI.
 
 
54
  -- βœ… - **Human Verification:** Marks human-written text with a green checkmark.
55
 
56
  **Note:** The longer the text, the better the detection accuracy.
@@ -68,6 +70,7 @@ iface = gr.Blocks(css="""
68
  width: 70%;
69
  box-sizing: border-box;
70
  margin: auto;
 
71
  }
72
  #result_output_box {
73
  border-radius: 10px;
@@ -140,4 +143,3 @@ with iface:
140
  gr.Markdown(bottom_text, elem_id="bottom_text")
141
 
142
  iface.launch(share=True)
143
-
 
50
  title = "Detect AI Generated Texts!"
51
  description = """
52
 
53
+ Detect AI-generated texts with precision using the new **ModernBERT** model, fine-tuned for machine-generated text detection, and capable of identifying 40 different models.
54
+
55
+ -- πŸ€– - **Identify AI Models:** Reveals which LLM generated the text if detected as AI.
56
  -- βœ… - **Human Verification:** Marks human-written text with a green checkmark.
57
 
58
  **Note:** The longer the text, the better the detection accuracy.
 
70
  width: 70%;
71
  box-sizing: border-box;
72
  margin: auto;
73
+ background-color: #1E1E2F;
74
  }
75
  #result_output_box {
76
  border-radius: 10px;
 
143
  gr.Markdown(bottom_text, elem_id="bottom_text")
144
 
145
  iface.launch(share=True)