chargoddard commited on
Commit
db22ba6
1 Parent(s): 869daa1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -3
README.md CHANGED
@@ -140,8 +140,16 @@ tags:
140
  - not-for-all-audiences
141
  ---
142
 
143
- Data scraped from [roleplayerguild](https://www.roleplayerguild.com/) and parsed into prompts with a conversation history and associated character bio.
144
 
145
- As usernames can be associated with multiple biographies, assignment of characters is a little fuzzy. The `char_confidence` feature reflects how likely this assignment is to be correct. Not all posts in the conversation history necessarily have an associated character name. The column `has_nameless` reflects this.
146
 
147
- Each row should fit into 4096 Llama tokens, depending on your prompt format - there's built in slack of 128 tokens + 8 per message.
 
 
 
 
 
 
 
 
 
140
  - not-for-all-audiences
141
  ---
142
 
143
+ Data scraped from [roleplayerguild](https://www.roleplayerguild.com/) and parsed into prompts with a conversation history and associated character bio. Thanks to an anonymous internet stranger for the original scrape.
144
 
145
+ As usernames can be associated with multiple character biographies, assignment of characters is a little fuzzy. The `char_confidence` feature reflects how likely this assignment is to be correct. Not all posts in the conversation history necessarily have an associated character name. The column `has_nameless` reflects this.
146
 
147
+ Each row should fit into 4096 Llama tokens, depending on your prompt format - there's built in slack of 128 tokens + 8 per message.
148
+
149
+ There are a few configurations available. I *highly* recommend not using the default configuration as it contains a lot of questionable quality data. The options, in order of increasing usefulness:
150
+ * `default` - ocean of garbage with some gems
151
+ * `high_confidence` - only entries with no nameless posts that are highly likely to be assigned a correct `char_name`/`bio`
152
+ * `pruned` - Further filtered from `high_confidence` to remove common types of junk replies
153
+ * `grammar_filtered` - run through a grammar checker to remove rows with too many mistakes
154
+
155
+ The `grammar_filtered` configuration is almost certainly what you want to be using. (Unless you want to do your own processing and filtering.)