Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10M - 100M
Tags:
midjourney
License:
Update README.md
Browse files
README.md
CHANGED
@@ -39,10 +39,28 @@ This is [vivym/midjourney-messages](https://huggingface.co/datasets/vivym/midjou
|
|
39 |
- remove intermediate ID/tag (???) in angle brackets at the end, remove double asterisks `**`
|
40 |
- remove exact duplicate rows
|
41 |
|
42 |
-
A single example looks like this:
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
```
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
```
|
|
|
39 |
- remove intermediate ID/tag (???) in angle brackets at the end, remove double asterisks `**`
|
40 |
- remove exact duplicate rows
|
41 |
|
|
|
42 |
|
43 |
+
|
44 |
+
## dataset structure
|
45 |
+
|
46 |
+
|
47 |
+
overall:
|
48 |
+
|
49 |
+
```python
|
50 |
+
DatasetDict({
|
51 |
+
train: Dataset({
|
52 |
+
features: ['id', 'channel_id', 'text'],
|
53 |
+
num_rows: 20164939
|
54 |
+
})
|
55 |
+
})
|
56 |
```
|
57 |
+
|
58 |
+
A single example looks like this:
|
59 |
+
|
60 |
+
```python
|
61 |
+
random.choice(dataset['train'])
|
62 |
+
|
63 |
+
{'id': '1108635049391308879',
|
64 |
+
'channel_id': '1008571088919343124',
|
65 |
+
'text': 'Warhammer 40k Chaos Space Marine with pink Armor and a guitar'}
|
66 |
```
|