neuralworm
commited on
Commit
·
92f574b
1
Parent(s):
9450a8a
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
stable-diffusion-discord-prompts
|
2 |
+
All messages from dreambot from all dream-[1-50] channels in stable-diffusion discord
|
3 |
+
|
4 |
+
raw-messages: messages in gzipped csv format, with every column
|
5 |
+
|
6 |
+
stripped-content: messages in gzipped csv format, with only the "Content" column stripped, where the "!dream" command is
|
7 |
+
|
8 |
+
prompts-only: gzipped stripped prompts only in line-separation
|
9 |
+
|
10 |
+
bash command to extract the archives:
|
11 |
+
|
12 |
+
cd raw-messages
|
13 |
+
|
14 |
+
IFS=$'\n' ; for file in $(ls *.gz); do gunzip $file; done
|
15 |
+
|
16 |
+
cd stripped-content
|
17 |
+
|
18 |
+
IFS=$'\n' ; for file in $(ls *.gz); do gunzip $file; done
|
19 |
+
|
20 |
+
cd prompts-only
|
21 |
+
|
22 |
+
IFS=$'\n' ; for file in $(ls *.gz); do gunzip $file; done
|