OmniAICreator commited on
Commit
e78498d
1 Parent(s): e14bd21

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -3,8 +3,36 @@ configs:
3
  - config_name: default
4
  data_files:
5
  - split: filtered
6
- path: "Japanese-Roleplay-Dialogues-Filtered.jsonl"
7
  - split: original
8
- path: "Japanese-Roleplay-Dialogues-Original.jsonl"
9
  license: apache-2.0
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  - config_name: default
4
  data_files:
5
  - split: filtered
6
+ path: Japanese-Roleplay-Dialogues-Filtered.jsonl
7
  - split: original
8
+ path: Japanese-Roleplay-Dialogues-Original.jsonl
9
  license: apache-2.0
10
+ task_categories:
11
+ - text-generation
12
+ language:
13
+ - ja
14
+ tags:
15
+ - roleplay
16
+ size_categories:
17
+ - 10K<n<100K
18
+ ---
19
+
20
+ # Japanese-Roleplay-Dialogues
21
+
22
+ This is a dialogue corpus collected from Japanese role-playing forum (commonly known as "なりきりチャット(narikiri chat)"). Each record corresponds to a single thread.
23
+
24
+ For the `original` version, no filtering has been applied.
25
+
26
+ For the `filtered` version, the following filtering and cleaning conditions have been applied:
27
+ - If the number of unique `poster` types in the `posts` of each record is 1 or less, delete the entire record.
28
+ - If the length of the `posts` is 10 or less, delete the entire record.
29
+ - Normalize poster names by removing all whitespace characters (both full-width and half-width spaces).
30
+ - Retain only records where the top two posters account for 90\% or more of the total posts.
31
+ - Among the top two posters, neither should account for more than 60\% of their combined posts. (i.e., each of the top two posters should account for at least 40\% of their combined posts).
32
+ - Remove initial consecutive posts from the same poster until a different poster appears.
33
+ - Remove final consecutive posts from the same poster until a different poster appears.
34
+ - Merge consecutive posts from the same poster into a single post, separated by line breaks.
35
+
36
+ Not all dialogues are purely role-playing. Some records include initial discussions about the settings, or they may continue from other threads.
37
+
38
+ This dataset is intended for use in machine learning applications only.