shahxeebhassan
commited on
Commit
•
5134d65
1
Parent(s):
413615d
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,50 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
size_categories:
|
8 |
+
- 100K<n<1M
|
9 |
+
---
|
10 |
+
### Dataset Description
|
11 |
+
This dataset contains 105,000 sentences, each labeled as either human-written (`0`) or AI-generated (`1`). It is designed for text classification tasks, particularly for distinguishing between human and AI-generated text.
|
12 |
+
|
13 |
+
### Dataset Structure
|
14 |
+
- **Number of Instances**: 105,000 sentences
|
15 |
+
- **Labels**:
|
16 |
+
- `0`: Human-written
|
17 |
+
- `1`: AI-generated
|
18 |
+
|
19 |
+
### Usage
|
20 |
+
This dataset can be used to train models for text classification tasks. Below is an example of how to load and use the dataset with the Hugging Face `datasets` library:
|
21 |
+
|
22 |
+
```python
|
23 |
+
from datasets import load_dataset
|
24 |
+
|
25 |
+
dataset = load_dataset("shahxeebhassan/human_vs_ai_sentences")
|
26 |
+
```
|
27 |
+
|
28 |
+
### Data Fields
|
29 |
+
- **text**: The text of the sentence.
|
30 |
+
- **label**: The label indicating whether the sentence is human-written (`0`) or AI-generated (`1`).
|
31 |
+
|
32 |
+
### License
|
33 |
+
This dataset is licensed under the MIT License.
|
34 |
+
|
35 |
+
### Task Categories
|
36 |
+
- Text Classification
|
37 |
+
|
38 |
+
### Languages
|
39 |
+
- English (`en`)
|
40 |
+
|
41 |
+
### Size Categories
|
42 |
+
- 100K < n < 1M
|
43 |
+
|
44 |
+
### Source Data
|
45 |
+
The sentences in this dataset were collected from various sources to ensure a diverse range of topics and writing styles.
|
46 |
+
|
47 |
+
### Acknowledgements
|
48 |
+
This dataset was created to support research and development in the field of AI and text classification.
|
49 |
+
|
50 |
+
---
|