radames commited on
Commit
6cfa877
·
1 Parent(s): 4ff57d6

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ To access an image use the following
2
+
3
+ Bucket URL: https://d26smi9133w0oo.cloudfront.net/
4
+
5
+
6
+ **Bucket URL/key**
7
+
8
+
9
+ SQLite
10
+ https://huggingface.co/datasets/huggingface-projects/sd-multiplayer-data/blob/main/rooms_data.db
11
+
12
+ ```bash
13
+ sqlite> PRAGMA table_info(rooms_data);
14
+ 0|id|INTEGER|1||1
15
+ 1|room_id|TEXT|1||0
16
+ 2|uuid|TEXT|1||0
17
+ 3|x|INTEGER|1||0
18
+ 4|y|INTEGER|1||0
19
+ 5|prompt|TEXT|1||0
20
+ 6|time|DATETIME|1||0
21
+ 7|key|TEXT|1||0
22
+
23
+ $: sqlite3 rooms_data.db
24
+
25
+ SELECT * FROM rooms_data WHERE room_id = 'room-40';
26
+
27
+
28
+ ```
29
+
30
+ JSON example
31
+ https://huggingface.co/datasets/huggingface-projects/sd-multiplayer-data/blob/main/room-39.json
32
+
33
+ ```json
34
+ [
35
+ {
36
+ "id": 160103269,
37
+ "room_id": "room-7",
38
+ "uuid": "CZk4C72xBr5wPfTpwDAnG6",
39
+ "x": 7648,
40
+ "y": 7008,
41
+ "prompt": "7648_7008 a chicken breaking through a mirrornnotn webp",
42
+ "time": "2022-12-08T17:28:06+00:00",
43
+ "key": "room-7/1670520485-CZk4C72xBr5wPfTpwDAnG6-7648_7008-a-chicken-breaking-through-a-mirrornnotn.webp"
44
+ }
45
+ ]
46
+