Datasets:
More OOC, whitespace, and edge cases.
Browse files- 20+ additional OOC removals.
- Replaced over 1100 occurrences of <> with *
- Reduced **** to *** (a maximum of 3 consecutive)
- Reduced horizontal whitespace to a maximum of 1 consecutive (previously 3)
- Reduced ..... to ....
- Removed occurrences of `BiC: `, `bic; ` and `ON:\n`
- Removed 5 occurrences of `^.*\^\^;.*\){1}`
- Removed 2 occurrences of "\nthe end?^^"
- Removed 1 occurrences of "\nthe end^^"
- 9 additional edge cases
- bluemoon.json +2 -2
- dataset.yaml +20 -9
bluemoon.json
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7542043e6465661eb8a8899d11f0d2c1c7181565439310190438b43879e95a40
|
3 |
+
size 222823038
|
dataset.yaml
CHANGED
@@ -30,7 +30,7 @@ debug_steps:
|
|
30 |
'\{.*\}', '\[.*?\]', '\(\(.*?(\)|\W)\)+', '^\(.*?\){1}', '\n\n\(.*?\){1}$',
|
31 |
'(OOC|ooc|OoC|OCC|ooc|Ooc)(:| |-|;)\n?.*?(\n|$)',
|
32 |
'(\n\nSee more|See more\n\n)', '^(RE|Re):.*?\n', '^NSFW:.*?\n$',
|
33 |
-
'^Note to everyone.*\)\)\n',
|
34 |
'x{3,}.*TEST?x*', '^- Let me.*-\B\s+',
|
35 |
]
|
36 |
|
@@ -89,7 +89,7 @@ steps:
|
|
89 |
[ '(\n\nSee more|See more\n\n)', "" ], [ '^(RE|Re):.*?\n', "" ], [ '^NSFW:.*?\n$', "" ],
|
90 |
# More author's notes and the like
|
91 |
[ '^Note to everyone.*\)\)\n', "" ], [ '_*Author.*\n*_', "" ],
|
92 |
-
[ 'x{3,}.*TEST?x*', "" ], [ '^- Let me.*-', "" ]
|
93 |
]
|
94 |
|
95 |
- step: &links
|
@@ -107,7 +107,7 @@ steps:
|
|
107 |
config:
|
108 |
recursive: true
|
109 |
replacements: [
|
110 |
-
[ "\t\n", "\n" ], [ "\n\n\n", "\n\n" ], [ '
|
111 |
]
|
112 |
|
113 |
- step: &reduce_separators
|
@@ -115,7 +115,7 @@ steps:
|
|
115 |
description: "Reduce nonsensical separators to a maximum of 3 consecutive."
|
116 |
config:
|
117 |
recursive: true
|
118 |
-
replacements: [ [ "~~~~", "~~~" ], [ "----", "---" ] ]
|
119 |
|
120 |
- step: &trim
|
121 |
type: Trim
|
@@ -185,14 +185,25 @@ steps:
|
|
185 |
replacements: [
|
186 |
[ "TEXT TEXT TEXT TEXT TEXT\nTEXT TEXTTEXTTEXT", "" ],
|
187 |
[ "hvlr\n/\n", "" ],
|
188 |
-
[ "' s ,\ns
|
189 |
[ "I'll post first\n_ _ _ _ _ _ _ _ _ _ _\n", "" ], [ "Moved from PMs to threads", "" ],
|
190 |
[ "I'll start out a with an opening post.", "" ],
|
191 |
[ "\nOOC\n", "" ],
|
192 |
-
[ "NSFW\n\n", "" ], [ "
|
|
|
193 |
[ "Just gonna toss this here so I don't have to hunt for it again.", "" ],
|
194 |
-
[ "If you want to hurry it up and get to the smut, just let me know XD
|
195 |
-
[ "???OCC. I intentionally jumbled it around a bit to make it more of a blur.???\n", "" ]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
]
|
197 |
|
198 |
input:
|
@@ -207,7 +218,7 @@ output:
|
|
207 |
- name: 'Bluemoon'
|
208 |
path: 'out/bluemoon.json'
|
209 |
description: 'Bluemoon 1-1 Fandom RP+ERP cleaned and formatted for Fastchat'
|
210 |
-
sha512:
|
211 |
writer: *fastchat_pretty
|
212 |
steps: [ *strip_unicode, *reduce_whitespace, *trim_nonwords, *edge_cases, *trim, *empty,
|
213 |
*two_alternating_participants, *rename_participants ]
|
|
|
30 |
'\{.*\}', '\[.*?\]', '\(\(.*?(\)|\W)\)+', '^\(.*?\){1}', '\n\n\(.*?\){1}$',
|
31 |
'(OOC|ooc|OoC|OCC|ooc|Ooc)(:| |-|;)\n?.*?(\n|$)',
|
32 |
'(\n\nSee more|See more\n\n)', '^(RE|Re):.*?\n', '^NSFW:.*?\n$',
|
33 |
+
'^Note to everyone.*\)\)\n', '_*Author.*\n*_',
|
34 |
'x{3,}.*TEST?x*', '^- Let me.*-\B\s+',
|
35 |
]
|
36 |
|
|
|
89 |
[ '(\n\nSee more|See more\n\n)', "" ], [ '^(RE|Re):.*?\n', "" ], [ '^NSFW:.*?\n$', "" ],
|
90 |
# More author's notes and the like
|
91 |
[ '^Note to everyone.*\)\)\n', "" ], [ '_*Author.*\n*_', "" ],
|
92 |
+
[ 'x{3,}.*TEST?x*', "" ], [ '^- Let me.*-', "" ], [ '^.*\^\^;.*\){1}', "" ],
|
93 |
]
|
94 |
|
95 |
- step: &links
|
|
|
107 |
config:
|
108 |
recursive: true
|
109 |
replacements: [
|
110 |
+
[ "\t\n", "\n" ], [ "\n\n\n", "\n\n" ], [ ' ', ' ' ], [ " \n", "\n" ]
|
111 |
]
|
112 |
|
113 |
- step: &reduce_separators
|
|
|
115 |
description: "Reduce nonsensical separators to a maximum of 3 consecutive."
|
116 |
config:
|
117 |
recursive: true
|
118 |
+
replacements: [ [ "~~~~", "~~~" ], [ "----", "---" ], [ "<>", "*" ], [ "****", "***" ], [ ".....", "...." ] ]
|
119 |
|
120 |
- step: &trim
|
121 |
type: Trim
|
|
|
185 |
replacements: [
|
186 |
[ "TEXT TEXT TEXT TEXT TEXT\nTEXT TEXTTEXTTEXT", "" ],
|
187 |
[ "hvlr\n/\n", "" ],
|
188 |
+
[ "' s ,\ns s.\ns s, ,\ns.\n", "" ],
|
189 |
[ "I'll post first\n_ _ _ _ _ _ _ _ _ _ _\n", "" ], [ "Moved from PMs to threads", "" ],
|
190 |
[ "I'll start out a with an opening post.", "" ],
|
191 |
[ "\nOOC\n", "" ],
|
192 |
+
[ "NSFW\n\n", "" ], [ "Kinda short -- sorry!", "" ],
|
193 |
+
[ "\nthe end?^^", "" ], [ "\nthe end^^", "" ],
|
194 |
[ "Just gonna toss this here so I don't have to hunt for it again.", "" ],
|
195 |
+
[ "If you want to hurry it up and get to the smut, just let me know XD I'm fine with whatever pace you like best.", "" ],
|
196 |
+
[ "???OCC. I intentionally jumbled it around a bit to make it more of a blur.???\n", "" ],
|
197 |
+
[ "IC: ", "" ], [ "BiC: ", "" ], [ "bic; ", "" ], [ "ON:\n", "" ],
|
198 |
+
[ "nighty night^^ see you in the morning.)", "" ],
|
199 |
+
[ "oh yes, Abandoned is a good one^^ Lets do the Time Warm Again is really funny too!)", "" ],
|
200 |
+
[ "i dunno, lol do you want to?^^ we could always have it that Lucius and Narcissa HAVE to get married or Lucius risks the disinheratance from his family or something like an arranged marraige or something?)", "" ],
|
201 |
+
[ "i thought he was a vampire? oh well. ^^", "" ],
|
202 |
+
[ "don't frget about Love and Lies!^^)", "" ],
|
203 |
+
[ "If I manage to catch your eye, please post. ^^", "" ],
|
204 |
+
[ "(couldn't think of anything else. ^^", "" ],
|
205 |
+
[ "*Edit: Plus a tank top and a spandex/latex pants blend.", "" ],
|
206 |
+
[ "THE END? or maybe THAT'S ALL FOLKS! or even better AND THEY ALL LIVED HAPPILY EVER AFTER! (ok, you may kill me now^^)", "" ]
|
207 |
]
|
208 |
|
209 |
input:
|
|
|
218 |
- name: 'Bluemoon'
|
219 |
path: 'out/bluemoon.json'
|
220 |
description: 'Bluemoon 1-1 Fandom RP+ERP cleaned and formatted for Fastchat'
|
221 |
+
sha512: 03fc8269fce4e598842e1502ac02254ad450b5a36cc03974e7076348b908437356fcd55a05b86bbe2722ccbe7cb7304e8b7587b8b6d1ea9da6c8948160f4806d
|
222 |
writer: *fastchat_pretty
|
223 |
steps: [ *strip_unicode, *reduce_whitespace, *trim_nonwords, *edge_cases, *trim, *empty,
|
224 |
*two_alternating_participants, *rename_participants ]
|