Spaces:
Running
Running
mihalykiss
commited on
Commit
·
020ecdf
1
Parent(s):
899a753
UI - theme
Browse files
app.py
CHANGED
@@ -52,8 +52,8 @@ 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 |
-
|
56 |
-
|
57 |
|
58 |
**Note:** The longer the text, the better the detection accuracy.
|
59 |
"""
|
@@ -72,6 +72,7 @@ iface = gr.Blocks(css="""
|
|
72 |
margin: auto;
|
73 |
background-color: #1E1E2F;
|
74 |
}
|
|
|
75 |
#result_output_box {
|
76 |
border-radius: 10px;
|
77 |
border: 2px solid #4CAF50;
|
@@ -84,6 +85,13 @@ iface = gr.Blocks(css="""
|
|
84 |
text-align: center;
|
85 |
margin: auto;
|
86 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
body {
|
88 |
background: #1E1E2F;
|
89 |
color: #E1E1E6;
|
|
|
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.
|
59 |
"""
|
|
|
72 |
margin: auto;
|
73 |
background-color: #1E1E2F;
|
74 |
}
|
75 |
+
|
76 |
#result_output_box {
|
77 |
border-radius: 10px;
|
78 |
border: 2px solid #4CAF50;
|
|
|
85 |
text-align: center;
|
86 |
margin: auto;
|
87 |
}
|
88 |
+
|
89 |
+
.form.svelte-633qhp {
|
90 |
+
background: none;
|
91 |
+
border: none;
|
92 |
+
box-shadow: none;
|
93 |
+
}
|
94 |
+
|
95 |
body {
|
96 |
background: #1E1E2F;
|
97 |
color: #E1E1E6;
|