pszemraj commited on
Commit
25e4bc4
1 Parent(s): 58c2770

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -4
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
- {'id': '1144508020898922537',
46
- 'channel_id': '989268300473192561',
47
- 'text': 'hyperrealism,In the valley, there lies a lavender garden. The flowers are depicted with close-up shots, magnifying their intricate details. Within the garden stands a tall tower, and at the pinnacle of the tower emerges Dowriq utux rudan. Dowriq utux rudan is a tribal totem fashioned from blue, white, red, and yellow diamonds, resembling the Eye of Sauron from "The Lord of the Rings," positioned above the apex of the tower, 8k'}
 
 
 
 
 
 
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
  ```