Update README.md
Browse files
README.md
CHANGED
@@ -11,14 +11,39 @@ tags: []
|
|
11 |
|
12 |
## Model Details
|
13 |
|
14 |
-
|
|
|
15 |
|
|
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
Made with ❤️ by Abuzaid
|
21 |
|
|
|
|
|
|
|
22 |
## How to use
|
23 |
|
24 |
```python
|
|
|
11 |
|
12 |
## Model Details
|
13 |
|
14 |
+
## AI-Generated Text Detector
|
15 |
+
This repository contains a RoBERTa-based model trained to distinguish between AI-generated and human-written text. The model can help identify content created by large language models like ChatGPT, Claude, and other AI text generators.
|
16 |
|
17 |
+
## Model Description
|
18 |
|
19 |
+
Architecture: RoBERTa-base fine-tuned for binary classification
|
20 |
+
Task: Detecting whether text is written by a human (0) or generated by AI (1)
|
21 |
+
Training Data: The model was trained on a balanced dataset of human-written and AI-generated texts
|
22 |
+
Input: Text with maximum length of 256 tokens
|
23 |
+
Output: Binary classification with probability score
|
24 |
+
|
25 |
+
## Use Cases
|
26 |
+
Content moderation: Identify AI-generated content in submissions
|
27 |
+
Academic integrity: Help detect AI-generated essays or assignments
|
28 |
+
Research: Study the differences between human and AI writing patterns
|
29 |
+
Media verification: Support efforts to label AI-generated content.
|
30 |
+
|
31 |
+
## Limitations
|
32 |
+
|
33 |
+
The model may not perform as well on:
|
34 |
+
|
35 |
+
*Very short texts
|
36 |
+
*Highly technical or specialized content
|
37 |
+
*Content from newer AI models it wasn't trained on
|
38 |
+
*Text that has been deliberately edited to evade detection
|
39 |
+
|
40 |
+
The model should be used as a tool to assist human judgment, not as the sole decision-maker.
|
41 |
|
42 |
Made with ❤️ by Abuzaid
|
43 |
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
## How to use
|
48 |
|
49 |
```python
|