Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -45,30 +45,27 @@ The text in the dataset is primarily in English (`en`).
|
|
| 45 |
Each instance in the dataset represents a tutoring session transcript with labeled PII entities and their corresponding surrogate replacements. See an exerpt in the example below.
|
| 46 |
|
| 47 |
```
|
| 48 |
-
{
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
"annotations":[]
|
| 70 |
-
}
|
| 71 |
-
]
|
| 72 |
}
|
| 73 |
```
|
| 74 |
|
|
|
|
| 45 |
Each instance in the dataset represents a tutoring session transcript with labeled PII entities and their corresponding surrogate replacements. See an exerpt in the example below.
|
| 46 |
|
| 47 |
```
|
| 48 |
+
{
|
| 49 |
+
"role":"volunteer",
|
| 50 |
+
"content":"Hi Chloe! What can I help you with today?",
|
| 51 |
+
"session_id":16592,
|
| 52 |
+
"sequence_id":0,
|
| 53 |
+
"annotations":[
|
| 54 |
+
{
|
| 55 |
+
"pii_type":"PERSON",
|
| 56 |
+
"surrogate":"Chloe",
|
| 57 |
+
"start":3,
|
| 58 |
+
"end":8
|
| 59 |
+
}
|
| 60 |
+
]
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
{
|
| 64 |
+
"role":"student",
|
| 65 |
+
"content":"hello!",
|
| 66 |
+
"session_id":16592,
|
| 67 |
+
"sequence_id":1,
|
| 68 |
+
"annotations":[]
|
|
|
|
|
|
|
|
|
|
| 69 |
}
|
| 70 |
```
|
| 71 |
|