ZhuqianZhou commited on
Commit
22ee654
·
verified ·
1 Parent(s): f1a673d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -24
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
- {"transcript":
49
- [
50
- {
51
- "role":"volunteer",
52
- "content":"Hi Chloe! What can I help you with today?",
53
- "session_id":16592,
54
- "sequence_id":0,
55
- "annotations":[
56
- {
57
- "pii_type":"PERSON",
58
- "surrogate":"Chloe",
59
- "start":3,
60
- "end":8
61
- }
62
- ]
63
- },
64
- {
65
- "role":"student",
66
- "content":"hello!",
67
- "session_id":16592,
68
- "sequence_id":1,
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