yfqiu-nlp commited on
Commit
5eef839
·
verified ·
1 Parent(s): 8163775

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. aurora.png +3 -0
  3. data/.DS_Store +0 -0
  4. data/something/extract_frames.py +65 -0
  5. data/something/filter_keywords.py +21 -0
  6. data/something/formatter.py +39 -0
  7. data/something/images/213068/first.jpg +3 -0
  8. data/something/images/213068/last.jpg +3 -0
  9. data/something/images/214198/last.jpg +3 -0
  10. data/something/images/214773/last.jpg +3 -0
  11. data/something/images/215405/first.jpg +3 -0
  12. data/something/images/215668/last.jpg +3 -0
  13. data/something/images/215692/first.jpg +3 -0
  14. data/something/images/215962/last.jpg +3 -0
  15. data/something/images/216970/last.jpg +3 -0
  16. data/something/images/219411/last.jpg +3 -0
  17. data/something/images/219866/first.jpg +3 -0
  18. data/something/images/219866/last.jpg +3 -0
  19. data/something/images/220/first.jpg +3 -0
  20. data/something/images/36/first.jpg +3 -0
  21. data/something/images/36/last.jpg +3 -0
  22. data/something/labels/labels.json +176 -0
  23. data/something/labels/test-answers.csv +0 -0
  24. data/something/labels/test.json +0 -0
  25. data/something/labels/validation.json +0 -0
  26. data/something/sft-action-verbolise-train.jsonl +0 -0
  27. data/something/sft-editing-train.jsonl +0 -0
  28. data/something/train.jsonl +0 -0
  29. data/something/valid.json +0 -0
  30. data/something/videos/102133.webm +3 -0
  31. data/something/videos/102439.webm +3 -0
  32. data/something/videos/102465.webm +3 -0
  33. data/something/videos/10317.webm +3 -0
  34. data/something/videos/104551.webm +3 -0
  35. data/something/videos/107669.webm +3 -0
  36. data/something/videos/108426.webm +3 -0
  37. data/something/videos/113442.webm +3 -0
  38. data/something/videos/114406.webm +3 -0
  39. data/something/videos/116582.webm +3 -0
  40. data/something/videos/117781.webm +3 -0
  41. data/something/videos/119689.webm +3 -0
  42. data/something/videos/120004.webm +3 -0
  43. data/something/videos/121573.webm +3 -0
  44. data/something/videos/124340.webm +3 -0
  45. data/something/videos/127970.webm +3 -0
  46. data/something/videos/128141.webm +3 -0
  47. data/something/videos/128142.webm +3 -0
  48. data/something/videos/128805.webm +3 -0
  49. data/something/videos/129101.webm +3 -0
  50. data/something/videos/132149.webm +3 -0
.gitattributes CHANGED
@@ -57,3 +57,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ stable_diffusion/data/DejaVuSans.ttf filter=lfs diff=lfs merge=lfs -text
61
+ stable_diffusion/data/imagenet_val_hr_indices.p filter=lfs diff=lfs merge=lfs -text
aurora.png ADDED

Git LFS Details

  • SHA256: cee2a236686903edccb652d3a14c9814d7059be2e67f81a1b48a3f43c5a89152
  • Pointer size: 131 Bytes
  • Size of remote file: 358 kB
data/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/something/extract_frames.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import cv2
2
+ import json
3
+ import os
4
+ from tqdm import tqdm
5
+
6
+ def extract_first_and_last_frames(video_file):
7
+ # Create base directory path
8
+ base_dir = 'frames/' + os.path.splitext(os.path.basename(video_file))[0]
9
+
10
+ # Check if both 'first.jpg' and 'last.jpg' already exist
11
+ first_frame_path = os.path.join(base_dir, 'first.jpg')
12
+ last_frame_path = os.path.join(base_dir, 'last.jpg')
13
+ if os.path.exists(first_frame_path) and os.path.exists(last_frame_path):
14
+ print(f"Skipping {video_file} as frames already exist.")
15
+ return
16
+
17
+ cap = cv2.VideoCapture(video_file)
18
+ if not cap.isOpened():
19
+ print(f"Error: Could not open video {video_file}.")
20
+ return
21
+
22
+ total_frames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
23
+ if total_frames == 1:
24
+ print(f"Warning: Video {video_file} has only 1 frame.")
25
+
26
+ # Extract and save first frame
27
+ extract_and_save_frame(cap, video_file, 0, 'first', base_dir)
28
+
29
+ # Extract and save last frame
30
+ if total_frames > 1:
31
+ extract_and_save_frame(cap, video_file, total_frames - 1, 'last', base_dir)
32
+
33
+ cap.release()
34
+
35
+ def extract_and_save_frame(cap, video_file, frame_number, frame_type, base_dir):
36
+ cap.set(cv2.CAP_PROP_POS_FRAMES, frame_number)
37
+ ret, frame = cap.read()
38
+
39
+ attempts = 0
40
+ while not ret and attempts < 10:
41
+ frame_number -= 1
42
+ cap.set(cv2.CAP_PROP_POS_FRAMES, frame_number)
43
+ ret, frame = cap.read()
44
+ attempts += 1
45
+
46
+ if not ret:
47
+ print(f"Error: Could not read frame after several attempts at {frame_number} in {video_file}.")
48
+ return
49
+
50
+ if not os.path.exists(base_dir):
51
+ os.makedirs(base_dir)
52
+ frame_file_name = f"{base_dir}/{frame_type}.jpg"
53
+ cv2.imwrite(frame_file_name, frame)
54
+ print(f"Saved {frame_file_name}")
55
+
56
+ # Read JSON file
57
+ json_file = 'valid.json'
58
+ with open(json_file, 'r') as file:
59
+ videos = json.load(file)
60
+
61
+ # Process each video file in the JSON
62
+ for video in tqdm(videos):
63
+ video_file_name = f"{video['id']}.webm" # Assuming webm format; adjust if needed
64
+ video_file_path = os.path.join('./videos', video_file_name)
65
+ extract_first_and_last_frames(video_file_path)
data/something/filter_keywords.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ train = json.load(open('train.json'))
4
+ old_len = len(train)
5
+ new_train = []
6
+
7
+ filter_words = ['pretend', 'holding', 'fail', 'roll', 'then letting it', 'until it falls down', 'spin', 'nothing happens', 'show', 'falling like', 'squeezing', 'throwing', 'slightly']
8
+ # these words should not be in the description
9
+
10
+ for item in train:
11
+ if not any(word in item['instruction'] for word in filter_words):
12
+ if "falls off" in item['instruction']:
13
+ if "but" in item['instruction']:
14
+ new_train.append(item) # Includes "falls off" but also has "but"
15
+ else:
16
+ new_train.append(item) # Does not contain "falls off"
17
+
18
+ json.dump(new_train, open('train_.json', 'w'), indent=4)
19
+ new_len = len(new_train)
20
+
21
+ print(f'Old length: {old_len}, New length: {new_len}')
data/something/formatter.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+
4
+ # Load the input JSON file
5
+ with open("train.json", "r") as f:
6
+ data = json.load(f)
7
+
8
+ jsonl_data = []
9
+ print("Before processing:", len(data))
10
+ # Convert the input JSON to JSONL format
11
+ for key, value in enumerate(data):
12
+
13
+ input_path = '/'.join(value["input"].split('/')[2:])
14
+ output_path = '/'.join(value["output"].split('/')[2:])
15
+ if os.path.exists(input_path) and os.path.exists(output_path):
16
+ entry = {
17
+ "id": f"{int(key):012d}",
18
+ "images": ["AURORA/"+value["input"], "AURORA/"+value["output"]],
19
+ "conversations": [
20
+ {
21
+ "from": "human",
22
+ "value": f"<image>\nEditing the given image according to the following prompt: {value['instruction']}"
23
+ },
24
+ {
25
+ "from": "gpt",
26
+ "value": "<image>"
27
+ }
28
+ ]
29
+ }
30
+ jsonl_data.append(entry)
31
+ else:
32
+ continue
33
+
34
+ # Save to a JSONL file
35
+ with open("train.jsonl", "w") as f:
36
+ for line in jsonl_data:
37
+ f.write(json.dumps(line) + "\n")
38
+
39
+ print("Final data size:", len(jsonl_data))
data/something/images/213068/first.jpg ADDED

Git LFS Details

  • SHA256: 22ff39062fff499cc3eb2bb3f9c5ffcfa038c77de560e9b9d43f8e7883c56c28
  • Pointer size: 130 Bytes
  • Size of remote file: 16.8 kB
data/something/images/213068/last.jpg ADDED

Git LFS Details

  • SHA256: 87992f3a80a09ca7cdb70118b406217493526a062f54591c0b0777f0a5f03973
  • Pointer size: 130 Bytes
  • Size of remote file: 17.1 kB
data/something/images/214198/last.jpg ADDED

Git LFS Details

  • SHA256: 3b48a61a892e4defbae832694510e2fa57d01b3510aec39700a350a7fd5824ae
  • Pointer size: 130 Bytes
  • Size of remote file: 20.4 kB
data/something/images/214773/last.jpg ADDED

Git LFS Details

  • SHA256: 127d918c302ac5460265d4edd87887c4271399f0acf56ad2d9d0572908f23c77
  • Pointer size: 130 Bytes
  • Size of remote file: 14.7 kB
data/something/images/215405/first.jpg ADDED

Git LFS Details

  • SHA256: 9f7c4224eb49535b9fcdc16f64ee4a6a3816bf22250be7615c53fcd22e9a844d
  • Pointer size: 130 Bytes
  • Size of remote file: 13.5 kB
data/something/images/215668/last.jpg ADDED

Git LFS Details

  • SHA256: c28f57563e32d91dfbf9a5f8274fb8bb752d34b40c71a687e8ca463b16c2a72e
  • Pointer size: 130 Bytes
  • Size of remote file: 11 kB
data/something/images/215692/first.jpg ADDED

Git LFS Details

  • SHA256: 9a7e3aeb3b201e264b459ca873fcf2d6abdaeacc99ee5fc202561cab1999eb48
  • Pointer size: 130 Bytes
  • Size of remote file: 29.2 kB
data/something/images/215962/last.jpg ADDED

Git LFS Details

  • SHA256: 469b57245305a9bf4fd580161c2da7021b61286acf6a6e6cf531d90bdafc871f
  • Pointer size: 130 Bytes
  • Size of remote file: 29.1 kB
data/something/images/216970/last.jpg ADDED

Git LFS Details

  • SHA256: 71aa72b5ecb94a7c855f3e37d486632e0c5f12b0c5eef42c6a22a28c553d76aa
  • Pointer size: 130 Bytes
  • Size of remote file: 24.2 kB
data/something/images/219411/last.jpg ADDED

Git LFS Details

  • SHA256: 11c25c3b869d0434da82a524b1767b11e0d8ea6d0aea2c5f310c7b03ad57915d
  • Pointer size: 130 Bytes
  • Size of remote file: 23.7 kB
data/something/images/219866/first.jpg ADDED

Git LFS Details

  • SHA256: f4ff4a43c9d873cd92ac6421c28592ecc97b3224630e8510cb4377d2d8bbfa76
  • Pointer size: 130 Bytes
  • Size of remote file: 21.9 kB
data/something/images/219866/last.jpg ADDED

Git LFS Details

  • SHA256: cea46addbb1a64aa595be602803d68887af5d9f714ce492e0035314e186e124a
  • Pointer size: 130 Bytes
  • Size of remote file: 27.1 kB
data/something/images/220/first.jpg ADDED

Git LFS Details

  • SHA256: 34bb0305a948c7e53fe62c711e4dc3725e15d03b248d12af94ea7db6f9e551fb
  • Pointer size: 130 Bytes
  • Size of remote file: 22.5 kB
data/something/images/36/first.jpg ADDED

Git LFS Details

  • SHA256: 96657851df01338c03e1ef178a6b4b350a95d0bd2d4827cec11f3d082386a0bc
  • Pointer size: 130 Bytes
  • Size of remote file: 25 kB
data/something/images/36/last.jpg ADDED

Git LFS Details

  • SHA256: 84aa1cec905c50680b4342d6d7905e82c27577c1e43ab2d33c1b5645097cd511
  • Pointer size: 130 Bytes
  • Size of remote file: 20 kB
data/something/labels/labels.json ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Approaching something with your camera":"0",
3
+ "Attaching something to something":"1",
4
+ "Bending something so that it deforms":"2",
5
+ "Bending something until it breaks":"3",
6
+ "Burying something in something":"4",
7
+ "Closing something":"5",
8
+ "Covering something with something":"6",
9
+ "Digging something out of something":"7",
10
+ "Dropping something behind something":"8",
11
+ "Dropping something in front of something":"9",
12
+ "Dropping something into something":"10",
13
+ "Dropping something next to something":"11",
14
+ "Dropping something onto something":"12",
15
+ "Failing to put something into something because something does not fit":"13",
16
+ "Folding something":"14",
17
+ "Hitting something with something":"15",
18
+ "Holding something":"16",
19
+ "Holding something behind something":"17",
20
+ "Holding something in front of something":"18",
21
+ "Holding something next to something":"19",
22
+ "Holding something over something":"20",
23
+ "Laying something on the table on its side, not upright":"21",
24
+ "Letting something roll along a flat surface":"22",
25
+ "Letting something roll down a slanted surface":"23",
26
+ "Letting something roll up a slanted surface, so it rolls back down":"24",
27
+ "Lifting a surface with something on it but not enough for it to slide down":"25",
28
+ "Lifting a surface with something on it until it starts sliding down":"26",
29
+ "Lifting something up completely without letting it drop down":"27",
30
+ "Lifting something up completely, then letting it drop down":"28",
31
+ "Lifting something with something on it":"29",
32
+ "Lifting up one end of something without letting it drop down":"30",
33
+ "Lifting up one end of something, then letting it drop down":"31",
34
+ "Moving away from something with your camera":"32",
35
+ "Moving part of something":"33",
36
+ "Moving something across a surface until it falls down":"34",
37
+ "Moving something across a surface without it falling down":"35",
38
+ "Moving something and something away from each other":"36",
39
+ "Moving something and something closer to each other":"37",
40
+ "Moving something and something so they collide with each other":"38",
41
+ "Moving something and something so they pass each other":"39",
42
+ "Moving something away from something":"40",
43
+ "Moving something away from the camera":"41",
44
+ "Moving something closer to something":"42",
45
+ "Moving something down":"43",
46
+ "Moving something towards the camera":"44",
47
+ "Moving something up":"45",
48
+ "Opening something":"46",
49
+ "Picking something up":"47",
50
+ "Piling something up":"48",
51
+ "Plugging something into something":"49",
52
+ "Plugging something into something but pulling it right out as you remove your hand":"50",
53
+ "Poking a hole into some substance":"51",
54
+ "Poking a hole into something soft":"52",
55
+ "Poking a stack of something so the stack collapses":"53",
56
+ "Poking a stack of something without the stack collapsing":"54",
57
+ "Poking something so it slightly moves":"55",
58
+ "Poking something so lightly that it doesn't or almost doesn't move":"56",
59
+ "Poking something so that it falls over":"57",
60
+ "Poking something so that it spins around":"58",
61
+ "Pouring something into something":"59",
62
+ "Pouring something into something until it overflows":"60",
63
+ "Pouring something onto something":"61",
64
+ "Pouring something out of something":"62",
65
+ "Pretending or failing to wipe something off of something":"63",
66
+ "Pretending or trying and failing to twist something":"64",
67
+ "Pretending to be tearing something that is not tearable":"65",
68
+ "Pretending to close something without actually closing it":"66",
69
+ "Pretending to open something without actually opening it":"67",
70
+ "Pretending to pick something up":"68",
71
+ "Pretending to poke something":"69",
72
+ "Pretending to pour something out of something, but something is empty":"70",
73
+ "Pretending to put something behind something":"71",
74
+ "Pretending to put something into something":"72",
75
+ "Pretending to put something next to something":"73",
76
+ "Pretending to put something on a surface":"74",
77
+ "Pretending to put something onto something":"75",
78
+ "Pretending to put something underneath something":"76",
79
+ "Pretending to scoop something up with something":"77",
80
+ "Pretending to spread air onto something":"78",
81
+ "Pretending to sprinkle air onto something":"79",
82
+ "Pretending to squeeze something":"80",
83
+ "Pretending to take something from somewhere":"81",
84
+ "Pretending to take something out of something":"82",
85
+ "Pretending to throw something":"83",
86
+ "Pretending to turn something upside down":"84",
87
+ "Pulling something from behind of something":"85",
88
+ "Pulling something from left to right":"86",
89
+ "Pulling something from right to left":"87",
90
+ "Pulling something onto something":"88",
91
+ "Pulling something out of something":"89",
92
+ "Pulling two ends of something but nothing happens":"90",
93
+ "Pulling two ends of something so that it gets stretched":"91",
94
+ "Pulling two ends of something so that it separates into two pieces":"92",
95
+ "Pushing something from left to right":"93",
96
+ "Pushing something from right to left":"94",
97
+ "Pushing something off of something":"95",
98
+ "Pushing something onto something":"96",
99
+ "Pushing something so it spins":"97",
100
+ "Pushing something so that it almost falls off but doesn't":"98",
101
+ "Pushing something so that it falls off the table":"99",
102
+ "Pushing something so that it slightly moves":"100",
103
+ "Pushing something with something":"101",
104
+ "Putting number of something onto something":"102",
105
+ "Putting something and something on the table":"103",
106
+ "Putting something behind something":"104",
107
+ "Putting something in front of something":"105",
108
+ "Putting something into something":"106",
109
+ "Putting something next to something":"107",
110
+ "Putting something on a flat surface without letting it roll":"108",
111
+ "Putting something on a surface":"109",
112
+ "Putting something on the edge of something so it is not supported and falls down":"110",
113
+ "Putting something onto a slanted surface but it doesn't glide down":"111",
114
+ "Putting something onto something":"112",
115
+ "Putting something onto something else that cannot support it so it falls down":"113",
116
+ "Putting something similar to other things that are already on the table":"114",
117
+ "Putting something that can't roll onto a slanted surface, so it slides down":"115",
118
+ "Putting something that can't roll onto a slanted surface, so it stays where it is":"116",
119
+ "Putting something that cannot actually stand upright upright on the table, so it falls on its side":"117",
120
+ "Putting something underneath something":"118",
121
+ "Putting something upright on the table":"119",
122
+ "Putting something, something and something on the table":"120",
123
+ "Removing something, revealing something behind":"121",
124
+ "Rolling something on a flat surface":"122",
125
+ "Scooping something up with something":"123",
126
+ "Showing a photo of something to the camera":"124",
127
+ "Showing something behind something":"125",
128
+ "Showing something next to something":"126",
129
+ "Showing something on top of something":"127",
130
+ "Showing something to the camera":"128",
131
+ "Showing that something is empty":"129",
132
+ "Showing that something is inside something":"130",
133
+ "Something being deflected from something":"131",
134
+ "Something colliding with something and both are being deflected":"132",
135
+ "Something colliding with something and both come to a halt":"133",
136
+ "Something falling like a feather or paper":"134",
137
+ "Something falling like a rock":"135",
138
+ "Spilling something behind something":"136",
139
+ "Spilling something next to something":"137",
140
+ "Spilling something onto something":"138",
141
+ "Spinning something so it continues spinning":"139",
142
+ "Spinning something that quickly stops spinning":"140",
143
+ "Spreading something onto something":"141",
144
+ "Sprinkling something onto something":"142",
145
+ "Squeezing something":"143",
146
+ "Stacking number of something":"144",
147
+ "Stuffing something into something":"145",
148
+ "Taking one of many similar things on the table":"146",
149
+ "Taking something from somewhere":"147",
150
+ "Taking something out of something":"148",
151
+ "Tearing something into two pieces":"149",
152
+ "Tearing something just a little bit":"150",
153
+ "Throwing something":"151",
154
+ "Throwing something against something":"152",
155
+ "Throwing something in the air and catching it":"153",
156
+ "Throwing something in the air and letting it fall":"154",
157
+ "Throwing something onto a surface":"155",
158
+ "Tilting something with something on it slightly so it doesn't fall down":"156",
159
+ "Tilting something with something on it until it falls off":"157",
160
+ "Tipping something over":"158",
161
+ "Tipping something with something in it over, so something in it falls out":"159",
162
+ "Touching (without moving) part of something":"160",
163
+ "Trying but failing to attach something to something because it doesn't stick":"161",
164
+ "Trying to bend something unbendable so nothing happens":"162",
165
+ "Trying to pour something into something, but missing so it spills next to it":"163",
166
+ "Turning something upside down":"164",
167
+ "Turning the camera downwards while filming something":"165",
168
+ "Turning the camera left while filming something":"166",
169
+ "Turning the camera right while filming something":"167",
170
+ "Turning the camera upwards while filming something":"168",
171
+ "Twisting (wringing) something wet until water comes out":"169",
172
+ "Twisting something":"170",
173
+ "Uncovering something":"171",
174
+ "Unfolding something":"172",
175
+ "Wiping something off of something":"173"
176
+ }
data/something/labels/test-answers.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/something/labels/test.json ADDED
The diff for this file is too large to render. See raw diff
 
data/something/labels/validation.json ADDED
The diff for this file is too large to render. See raw diff
 
data/something/sft-action-verbolise-train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/something/sft-editing-train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/something/train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/something/valid.json ADDED
The diff for this file is too large to render. See raw diff
 
data/something/videos/102133.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a50406ba75a473a1e8aebab23740fba8d757ee92cd16871a217938004ecfd93a
3
+ size 68779
data/something/videos/102439.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7535b7bc71ace3a1d4858b8e96b3998429a677cb19d3ad4901c160bc27b1b037
3
+ size 145246
data/something/videos/102465.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9d3b3fbee9f9c5a1a5dce1c33952b7fc7a9af05f1f8a44dcc0d891a8c1a3f47
3
+ size 122780
data/something/videos/10317.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05ab65bf9a51d7eaf6dee6bab2af9923c898f3edf9f098757e2673b09084bb9f
3
+ size 135763
data/something/videos/104551.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5550a02176a195c6131d9ff5356df3b01dc862b4fb4d2ee1683cc852be91ccbc
3
+ size 66530
data/something/videos/107669.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18b2f67eb62a7d802180e8e51992cd625ee56422ef85859a2e1937b42943615b
3
+ size 135408
data/something/videos/108426.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3572824df6f26a4da17e2d4163e1c086e45349380e7b1db7b3f522d5a7e62171
3
+ size 32601
data/something/videos/113442.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fccd18e73166f434d6846463e6a52ca63aa5debaa27b9bf04b9ed1c38f62611
3
+ size 174883
data/something/videos/114406.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7db95bfc81be4686f7f9212f57e522e096439c6a14eccc9720766e31a3741356
3
+ size 56499
data/something/videos/116582.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:220cac7dfec62ba75274cdc74229dd2f4d2ad74bc28fec4a4f0e4d1f4248c977
3
+ size 71174
data/something/videos/117781.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c0ac179afe58b28c00544b2f9be83b1b3c42e8746eeb3340533cf9b322cd69d
3
+ size 165479
data/something/videos/119689.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26862bdeb838b000524a8462d26d0cbf4c34f6eead5c74bbb52526d0cfd846a7
3
+ size 71147
data/something/videos/120004.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c45b2f37db16e3d7ddac1d45348b3db46b72ba580656f9c2aa583db236214421
3
+ size 39100
data/something/videos/121573.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cab02a334aed6566561bf8ca4e49c38770743b64e66cdf2607dfd31d5494ff85
3
+ size 89056
data/something/videos/124340.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77ecd38bee4a81b319b13a00024cee3f9b41f4ba83eee2961df2bb81e61559d9
3
+ size 20613
data/something/videos/127970.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b6dbfdf4213684092526f6e4de2e3c1de1b7214dc7c09e54dd8dfecdfd9adde
3
+ size 69858
data/something/videos/128141.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5834c3768d488b8ffedf7b236e8e82f96bccc47abcea5124c870e5d742b12a5e
3
+ size 64412
data/something/videos/128142.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a3c669a07eb0a0a8280ebbf7cede077c5d74ca64d9ee0bbd0c31c009ff3d200
3
+ size 90871
data/something/videos/128805.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18b57890f7ed6e3452ffae9cdc012c002cc4d8d55e351b98caafe2aca14c00d1
3
+ size 64018
data/something/videos/129101.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efd5bf7e2c6aee83bd37b44e44911261040c2b55fc9a97857b0f8b1ab8d4ce40
3
+ size 83030
data/something/videos/132149.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48a853389246dfdd32ef560e9f55eb0ccc94d048b18435b11bc01231d8183aef
3
+ size 72886